/* ==========================================================================
   RS Photography — rsphotographysg.com
   Design system: dark editorial, Fraunces display + Inter body,
   brand orange accent (#F0862B) drawn from the RS wordmark.
   ========================================================================== */

:root {
  --bg: #0c0c0e;
  --bg-2: #111114;
  --panel: #17171b;
  --panel-2: #1d1d22;
  --line: rgba(244, 241, 236, 0.1);
  --text: #f4f1ec;
  --muted: #a6a199;
  --accent: #f0862b;
  --accent-bright: #ffa24d;
  --accent-soft: rgba(240, 134, 43, 0.12);
  --radius: 16px;
  --radius-sm: 10px;
  --container: 1180px;
  --font-display: "Fraunces", Georgia, serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16.5px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { display: block; max-width: 100%; height: auto; }

a { color: inherit; text-decoration: none; }

::selection { background: var(--accent); color: #14100b; }

.container {
  width: min(var(--container), calc(100% - 48px));
  margin-inline: auto;
}

/* ---------- Typography ---------- */

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 550;
  line-height: 1.12;
  letter-spacing: -0.015em;
  text-wrap: balance;
}

h1 { font-size: clamp(2.5rem, 5.6vw, 4.4rem); }
h2 { font-size: clamp(1.9rem, 3.4vw, 2.9rem); }
h3 { font-size: 1.35rem; line-height: 1.3; }

.lede {
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
  color: var(--muted);
  max-width: 46ch;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 18px;
}

.eyebrow::before {
  content: "";
  width: 26px;
  height: 1px;
  background: var(--accent);
}

.accent-i { font-style: italic; color: var(--accent); }

/* ---------- Header / nav ---------- */

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  transition: background 0.3s ease, border-color 0.3s ease;
  border-bottom: 1px solid transparent;
}

.site-header.scrolled {
  background: rgba(12, 12, 14, 0.82);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  border-bottom-color: var(--line);
}

.nav-wrap {
  display: flex;
  align-items: center;
  gap: 28px;
  height: 76px;
}

.brand {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1.02rem;
  letter-spacing: 0.14em;
  white-space: nowrap;
  margin-right: auto;
}

.brand b { color: var(--accent); font-weight: 700; }

.site-nav { display: flex; align-items: center; gap: 6px; }

.nav-link {
  display: inline-block;
  padding: 9px 13px;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--text);
  background: none;
  border: 0;
  border-radius: 8px;
  font-family: inherit;
  cursor: pointer;
  white-space: nowrap;
}

.nav-link:hover { background: rgba(244, 241, 236, 0.07); }

.nav-item { position: relative; }

.nav-item > .nav-link::after {
  content: "";
  display: inline-block;
  margin-left: 7px;
  width: 7px;
  height: 7px;
  border-right: 1.5px solid var(--muted);
  border-bottom: 1.5px solid var(--muted);
  transform: translateY(-3px) rotate(45deg);
}

.sub {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  min-width: 268px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 8px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: 0.18s ease;
}

.nav-item:hover .sub,
.nav-item:focus-within .sub {
  opacity: 1;
  visibility: visible;
  transform: none;
}

.sub a {
  display: block;
  padding: 10px 12px;
  border-radius: 7px;
  font-size: 0.92rem;
}

.sub a:hover { background: rgba(244, 241, 236, 0.07); color: var(--accent-bright); }

.sub a small {
  display: block;
  color: var(--muted);
  font-size: 0.78rem;
  margin-top: 1px;
}

.nav-cta { margin-left: 8px; }

.nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--line);
  border-radius: 8px;
  width: 44px;
  height: 44px;
  cursor: pointer;
  position: relative;
}

.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  content: "";
  position: absolute;
  left: 11px;
  width: 20px;
  height: 2px;
  background: var(--text);
  transition: 0.2s ease;
}

.nav-toggle span { top: 21px; }
.nav-toggle span::before { left: 0; top: -6px; }
.nav-toggle span::after { left: 0; top: 6px; }

body.nav-open .nav-toggle span { background: transparent; }
body.nav-open .nav-toggle span::before { transform: translateY(6px) rotate(45deg); }
body.nav-open .nav-toggle span::after { transform: translateY(-6px) rotate(-45deg); }

/* ---------- Buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 26px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  font-family: inherit;
  border: 1px solid transparent;
  cursor: pointer;
  transition: 0.2s ease;
  white-space: nowrap;
}

.btn-primary { background: var(--accent); color: #16100a; }
.btn-primary:hover { background: var(--accent-bright); transform: translateY(-1px); }

.btn-ghost { border-color: rgba(244, 241, 236, 0.25); color: var(--text); }
.btn-ghost:hover { border-color: var(--text); background: rgba(244, 241, 236, 0.06); }

.btn-small { padding: 10px 20px; font-size: 0.88rem; }

/* ---------- Hero ---------- */

.hero {
  position: relative;
  display: flex;
  align-items: flex-end;
  min-height: min(92svh, 880px);
  padding: 150px 0 72px;
  isolation: isolate;
  overflow: hidden;
}

.hero.hero-inner { min-height: min(64svh, 640px); padding-bottom: 56px; }

.hero-img {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-shade {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(12, 12, 14, 0.55) 0%, rgba(12, 12, 14, 0.15) 40%, rgba(12, 12, 14, 0.93) 100%),
    linear-gradient(90deg, rgba(12, 12, 14, 0.6) 0%, rgba(12, 12, 14, 0.05) 65%);
}

.hero-content h1 { margin-bottom: 22px; max-width: 850px; }

.hero-content .lede { margin-bottom: 34px; }

.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }

/* ---------- Proof / stat bar ---------- */

.proof-bar { border-block: 1px solid var(--line); background: var(--bg-2); }

.proof-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
}

.proof-item {
  background: var(--bg-2);
  padding: 30px 26px;
  text-align: left;
}

.proof-item strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 550;
  color: var(--text);
}

.proof-item span { color: var(--muted); font-size: 0.88rem; }

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

/* ---------- Sections ---------- */

.section { padding: 104px 0; }
.section-tight { padding: 72px 0; }
.section-alt { background: var(--bg-2); border-block: 1px solid var(--line); }

.section-head { max-width: 700px; margin-bottom: 56px; }
.section-head h2 { margin-bottom: 16px; }
.section-head p { color: var(--muted); font-size: 1.05rem; }

.split-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}

/* ---------- Cards ---------- */

.grid { display: grid; gap: 26px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }

.card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.25s ease, border-color 0.25s ease;
}

a.card:hover { transform: translateY(-4px); border-color: rgba(240, 134, 43, 0.45); }

.card-media { aspect-ratio: 3 / 2; overflow: hidden; }

.card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

a.card:hover .card-media img { transform: scale(1.045); }

.card-body { padding: 26px; display: flex; flex-direction: column; gap: 10px; flex: 1; }

.card-body h3 { color: var(--text); }

.card-body p { color: var(--muted); font-size: 0.95rem; flex: 1; }

.card-link {
  color: var(--accent);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.02em;
}

.card-link::after { content: " →"; }

/* Plain feature (no image) */
.feature {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 34px 30px;
}

.feature h3 { margin-bottom: 12px; }
.feature p { color: var(--muted); font-size: 0.96rem; }

.feature .num {
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--accent);
  display: block;
  margin-bottom: 18px;
}

/* ---------- Logo wall ---------- */

.logo-wall {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 34px;
  align-items: center;
}

.logo-wall span {
  font-size: 0.98rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--muted);
  opacity: 0.85;
  white-space: nowrap;
}

/* ---------- Media band / editorial split ---------- */

.split {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 64px;
  align-items: center;
}

.split .media {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
}

.split h2 { margin-bottom: 18px; }
.split p { color: var(--muted); margin-bottom: 16px; }

.checklist { list-style: none; margin-top: 10px; }

.checklist li {
  padding: 10px 0 10px 34px;
  position: relative;
  border-bottom: 1px solid var(--line);
  font-size: 0.98rem;
}

.checklist li:last-child { border-bottom: 0; }

.checklist li::before {
  content: "";
  position: absolute;
  left: 4px;
  top: 17px;
  width: 12px;
  height: 7px;
  border-left: 2px solid var(--accent);
  border-bottom: 2px solid var(--accent);
  transform: rotate(-45deg);
}

/* ---------- EXPRESS 24 band ---------- */

.express-band {
  background:
    radial-gradient(1100px 420px at 12% -10%, rgba(240, 134, 43, 0.22), transparent 60%),
    var(--bg-2);
  border-block: 1px solid var(--line);
}

.express-badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: var(--accent-soft);
  border: 1px solid rgba(240, 134, 43, 0.4);
  color: var(--accent-bright);
  border-radius: 999px;
  padding: 7px 16px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 22px;
}

.express-badge::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 12px var(--accent);
}

/* ---------- Timeline / steps ---------- */

.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px; counter-reset: step; }

.step {
  counter-increment: step;
  border-top: 1px solid var(--line);
  padding-top: 22px;
}

.step::before {
  content: "0" counter(step);
  font-family: var(--font-display);
  color: var(--accent);
  font-size: 1.05rem;
  display: block;
  margin-bottom: 12px;
}

.step h3 { font-size: 1.12rem; margin-bottom: 8px; }
.step p { color: var(--muted); font-size: 0.92rem; }

/* ---------- Tables ---------- */

.spec-table { width: 100%; border-collapse: collapse; font-size: 0.97rem; }

.spec-table th,
.spec-table td { text-align: left; padding: 16px 18px; border-bottom: 1px solid var(--line); vertical-align: top; }

.spec-table th { color: var(--muted); font-weight: 500; width: 34%; }

.spec-table tr:last-child th,
.spec-table tr:last-child td { border-bottom: 0; }

.table-card { background: var(--panel); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }

.tag {
  display: inline-block;
  background: var(--accent-soft);
  color: var(--accent-bright);
  border-radius: 6px;
  padding: 2px 9px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}

/* ---------- Testimonials ---------- */

.quote-card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 34px 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.quote-card blockquote {
  font-family: var(--font-display);
  font-size: 1.28rem;
  line-height: 1.45;
  font-weight: 450;
}

.quote-card blockquote::before { content: "“"; color: var(--accent); }
.quote-card blockquote::after { content: "”"; color: var(--accent); }

.quote-card figcaption { color: var(--muted); font-size: 0.9rem; margin-top: auto; }
.quote-card figcaption strong { color: var(--text); display: block; font-size: 0.95rem; }

/* ---------- FAQ ---------- */

.faq { max-width: 820px; }

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

.faq summary {
  cursor: pointer;
  list-style: none;
  padding: 22px 44px 22px 0;
  font-weight: 600;
  font-size: 1.05rem;
  position: relative;
}

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

.faq summary::after {
  content: "+";
  position: absolute;
  right: 4px;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--accent);
  transition: transform 0.2s ease;
}

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

.faq details p { color: var(--muted); padding: 0 0 24px; max-width: 68ch; }

/* ---------- CTA band ---------- */

.cta-band {
  background:
    radial-gradient(900px 400px at 85% 120%, rgba(240, 134, 43, 0.18), transparent 60%),
    var(--bg-2);
  border-top: 1px solid var(--line);
  text-align: center;
  padding: 110px 0;
}

.cta-band h2 { max-width: 620px; margin: 0 auto 18px; }
.cta-band p { color: var(--muted); max-width: 52ch; margin: 0 auto 36px; }

/* ---------- Forms ---------- */

.form-card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 40px;
}

.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }

.field { display: flex; flex-direction: column; gap: 7px; }

.field-full { grid-column: 1 / -1; }

.field label { font-size: 0.86rem; font-weight: 600; color: var(--muted); }

.field input,
.field select,
.field textarea {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  color: var(--text);
  font-family: inherit;
  font-size: 0.97rem;
  padding: 13px 15px;
}

.field textarea { min-height: 130px; resize: vertical; }

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-soft);
}

.contact-line {
  display: flex;
  align-items: baseline;
  gap: 14px;
  padding: 15px 0;
  border-bottom: 1px solid var(--line);
  font-size: 1rem;
}

.contact-line span { color: var(--muted); font-size: 0.85rem; min-width: 86px; }
.contact-line a:hover { color: var(--accent-bright); }

/* ---------- Footer ---------- */

.site-footer { border-top: 1px solid var(--line); background: var(--bg-2); padding: 72px 0 36px; }

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.3fr;
  gap: 44px;
  margin-bottom: 56px;
}

.footer-grid h4 {
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 18px;
  font-weight: 600;
}

.footer-grid ul { list-style: none; }
.footer-grid li { margin-bottom: 11px; }
.footer-grid a { color: var(--text); font-size: 0.94rem; opacity: 0.85; }
.footer-grid a:hover { color: var(--accent-bright); opacity: 1; }

.footer-blurb { color: var(--muted); font-size: 0.93rem; margin: 16px 0 20px; max-width: 34ch; }

.social-row { display: flex; gap: 10px; }

.social-row a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid var(--line);
  border-radius: 50%;
  transition: 0.2s ease;
}

.social-row a:hover { border-color: var(--accent); color: var(--accent-bright); }

.social-row svg { width: 17px; height: 17px; fill: currentColor; }

.footer-bottom {
  border-top: 1px solid var(--line);
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
  color: var(--muted);
  font-size: 0.84rem;
}

/* ---------- Utility ---------- */

.reveal { opacity: 0; transform: translateY(22px); transition: opacity 0.65s ease, transform 0.65s ease; }
.reveal.in { opacity: 1; transform: none; }

.mt-1 { margin-top: 14px; }
.mt-2 { margin-top: 28px; }
.mt-3 { margin-top: 48px; }
.center { text-align: center; }

.breadcrumb { font-size: 0.85rem; color: var(--muted); margin-bottom: 20px; }
.breadcrumb a:hover { color: var(--accent-bright); }

/* ---------- WhatsApp float ---------- */

.wa-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 90;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25d366;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.45);
  transition: transform 0.2s ease;
}

.wa-float:hover { transform: scale(1.07); }
.wa-float svg { width: 28px; height: 28px; fill: #fff; }

/* ---------- Responsive ---------- */

@media (max-width: 1020px) {
  .nav-cta { display: none; }

  .nav-toggle { display: block; }

  .site-nav {
    position: fixed;
    top: 76px;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--bg);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 18px 24px 40px;
    overflow-y: auto;
    display: none;
    border-top: 1px solid var(--line);
  }

  body.nav-open .site-nav { display: flex; }
  body.nav-open { overflow: hidden; }

  .nav-link { padding: 15px 4px; font-size: 1.05rem; border-radius: 0; border-bottom: 1px solid var(--line); width: 100%; text-align: left; }

  .nav-item > .nav-link::after { float: right; margin-top: 9px; }

  .sub {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: 0;
    background: transparent;
    min-width: 0;
    padding: 0 0 6px 14px;
    display: none;
  }

  .nav-item.open .sub { display: block; }

  .grid-3 { grid-template-columns: 1fr 1fr; }
  .split { grid-template-columns: 1fr; gap: 36px; }
  .steps { grid-template-columns: 1fr 1fr; gap: 34px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
  .section { padding: 72px 0; }
  .grid-2, .grid-3 { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .proof-grid { grid-template-columns: 1fr 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .hero { padding-top: 120px; }
  .form-card { padding: 26px 20px; }
}

/* ---------- Article prose ---------- */

.prose {
  max-width: 760px;
}

.prose > p { margin-bottom: 20px; color: #cfcac2; }

.prose h2 {
  font-size: clamp(1.5rem, 2.4vw, 2rem);
  margin: 52px 0 18px;
}

.prose h3 { margin: 36px 0 12px; }

.prose ul, .prose ol { margin: 0 0 20px 22px; color: #cfcac2; }
.prose li { margin-bottom: 8px; }

.prose a { color: var(--accent-bright); }
.prose a:hover { text-decoration: underline; }

.prose .table-card { margin: 28px 0; }

.article-head { padding: 170px 0 56px; border-bottom: 1px solid var(--line); }
.article-head h1 { font-size: clamp(2.2rem, 4.2vw, 3.4rem); max-width: 820px; margin-bottom: 18px; }
.article-meta { color: var(--muted); font-size: 0.88rem; }

/* ---------- Cinematic motion ---------- */

@keyframes heroDrift {
  from { transform: scale(1); }
  to { transform: scale(1.09); }
}

.hero-img {
  animation: heroDrift 22s ease-in-out infinite alternate;
  will-change: transform;
}

.hero-video {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1.4s ease;
}

.hero-video.on { opacity: 1; }

.grid > .reveal:nth-child(2) { transition-delay: 0.07s; }
.grid > .reveal:nth-child(3) { transition-delay: 0.14s; }
.grid > .reveal:nth-child(4) { transition-delay: 0.21s; }
.grid > .reveal:nth-child(5) { transition-delay: 0.28s; }
.grid > .reveal:nth-child(6) { transition-delay: 0.35s; }

/* ---------- Click-to-play film cards ---------- */

.video-facade {
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: #000;
  cursor: pointer;
  font-family: inherit;
  text-align: left;
}

.video-facade > img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  opacity: 0.85;
  transition: opacity 0.3s ease, transform 0.5s ease;
}

.video-facade:hover > img { opacity: 1; transform: scale(1.03); }

.video-facade .play {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 74px;
  height: 74px;
  border-radius: 50%;
  background: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.55);
  transition: 0.2s ease;
}

.video-facade:hover .play { transform: scale(1.1); background: var(--accent-bright); }

.video-facade .vf-label {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 14px;
  color: var(--text);
  font-size: 0.92rem;
  font-weight: 600;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.8);
}

.video-facade iframe {
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 0;
  display: block;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero-img { animation: none; }
  .hero-video { display: none; }
  * { transition-duration: 0.01ms !important; animation-duration: 0.01ms !important; }
}
