/* ============ Wicklow Granite — TERRAN-inspired ============ */
:root {
  --cream: #ece7df;
  --cream-rgb: 236, 231, 223;
  --cream-2: #f5f2ec;
  --cream-3: #e3ddd2;
  --ink: #221f1a;
  --ink-soft: #57514a;
  --dark: #181511;
  --dark-2: #211d18;
  --bronze: #a8835a;
  --bronze-2: #c2a378;
  --line: rgba(34, 31, 26, 0.14);
  --line-light: rgba(245, 242, 236, 0.16);
  --header-bg: rgba(236, 231, 223, 0.92);
  /* fixed light tone for text on dark surfaces — must NOT flip with the theme */
  --paper: #f5f2ec;
  --radius: 14px;
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Inter", -apple-system, sans-serif;
}

html.dark {
  --cream: #181511;
  --cream-rgb: 24, 21, 17;
  --cream-2: #1e1a15;
  --cream-3: #262019;
  --ink: #ece7df;
  --ink-soft: #b5ada1;
  --dark: #100e0b;
  --dark-2: #191510;
  --line: rgba(236, 231, 223, 0.16);
  --header-bg: rgba(24, 21, 17, 0.92);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: clip; }
body {
  overflow-x: clip;
  font-family: var(--sans);
  font-weight: 300;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { display: block; width: 100%; }
a { color: inherit; text-decoration: none; }

.container { max-width: 1180px; margin: 0 auto; padding: 0 28px; }

h1, h2, h3 { font-family: var(--serif); font-weight: 500; line-height: 1.08; letter-spacing: 0.01em; }
h1 { font-size: clamp(2.6rem, 5.4vw, 4.3rem); }
h1 em { font-style: italic; color: var(--bronze); }
h2 { font-size: clamp(1.9rem, 3.6vw, 2.9rem); }
h3 { font-size: 1.45rem; }

.eyebrow {
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--bronze);
  font-weight: 500;
  margin-bottom: 18px;
}
.eyebrow-light { color: var(--bronze-2); }

.section { padding: 110px 0; }
.section-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 32px;
  margin-bottom: 56px;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--sans);
  font-size: 0.86rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  padding: 14px 28px;
  border-radius: 999px;
  border: 1px solid transparent;
  transition: all 0.25s ease;
  cursor: pointer;
}
.btn .arrow { transition: transform 0.25s ease; }
.btn:hover .arrow { transform: translateX(4px); }
.btn-solid { background: var(--bronze); color: #fff; }
.btn-solid:hover { background: #93714b; }
.btn-outline { border-color: var(--line); color: var(--ink); }
.btn-outline:hover { border-color: var(--ink); }
.btn-wide { justify-content: center; width: 100%; }
.text-link {
  font-size: 0.88rem;
  letter-spacing: 0.03em;
  border-bottom: 1px solid var(--line);
  padding-bottom: 4px;
  white-space: nowrap;
  transition: border-color 0.25s;
}
.text-link:hover { border-color: var(--bronze); }
.text-link .arrow { color: var(--bronze); }

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  padding: 20px 0;
  transition: background 0.3s ease, box-shadow 0.3s ease, padding 0.3s ease;
}
.site-header.scrolled {
  background: var(--header-bg);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 var(--line);
  padding: 12px 0;
}
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.wordmark {
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.main-nav { display: flex; gap: 34px; }
.main-nav a {
  font-size: 0.82rem;
  letter-spacing: 0.05em;
  color: var(--ink-soft);
  transition: color 0.2s;
}
.main-nav a:hover { color: var(--ink); }
.header-actions { display: flex; align-items: center; gap: 16px; }
.theme-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: 0;
  padding: 6px;
  color: var(--bronze);
  font-size: 1.25rem;
  line-height: 1;
  cursor: pointer;
  transition: color 0.25s;
}
.theme-toggle:hover { color: var(--ink); }
.theme-toggle .sun { display: none; }
html.dark .theme-toggle .sun { display: inline; }
html.dark .theme-toggle .moon { display: none; }
.nav-theme-row { display: none; }
.nav-toggle { display: none; background: none; border: 0; cursor: pointer; padding: 6px; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--ink); margin: 6px 0; transition: 0.3s; }

/* ---------- Hero (full-bleed cinematic) ---------- */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  isolation: isolate;
  padding-top: 120px;
}
.hero-media { position: absolute; inset: 0; z-index: 0; will-change: transform; }
.hero-poster,
.hero-video {
  position: absolute;
  top: -10%; left: 0;
  width: 100%; height: 120%;   /* overscan so scroll parallax never exposes an edge */
  object-fit: cover;
}
.hero-poster {
  background: center / cover no-repeat url("media/hero-poster.jpg");
  filter: saturate(0.9) contrast(1.02) brightness(0.82);
  /* subtle slow drift on the still until/while the video carries the motion */
  animation: heroDrift 26s ease-in-out infinite alternate;
}
.hero-video {
  opacity: 0;
  filter: saturate(0.9) contrast(1.02) brightness(0.82);
  transition: opacity 1.1s ease;
}
.hero-video.is-playing { opacity: 1; }
@keyframes heroDrift {
  from { transform: scale(1.02); }
  to   { transform: scale(1.09); }
}

/* theme-aware warm scrim: lower-left wash for copy, bottom wash for the strip,
   thin top band for header contrast — leaves the upper-right footage breathing */
.hero-scrim {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background:
    /* thin top band so the header reads over the footage */
    linear-gradient(to bottom, rgba(var(--cream-rgb), 0.78) 0%, rgba(var(--cream-rgb), 0) 14%),
    /* soft wash concentrated at the lower-left, behind the whole copy block */
    radial-gradient(135% 125% at 6% 80%,
      rgba(var(--cream-rgb), 0.97) 0%,
      rgba(var(--cream-rgb), 0.82) 26%,
      rgba(var(--cream-rgb), 0.4) 48%,
      rgba(var(--cream-rgb), 0) 66%),
    /* bottom wash anchoring the docked strip */
    linear-gradient(to top, rgba(var(--cream-rgb), 0.95) 0%, rgba(var(--cream-rgb), 0.32) 18%, rgba(var(--cream-rgb), 0) 40%);
}

.hero-inner {
  position: relative;
  z-index: 2;
  flex: 1;
  display: flex;
  align-items: flex-end;
  padding-bottom: 40px;
}
.hero-copy { max-width: 680px; }
/* halo uses the theme bg colour, so it separates text from the footage in either theme */
.hero-copy .eyebrow,
.hero-title,
.hero-copy .lede {
  text-shadow: 0 1px 26px rgba(var(--cream-rgb), 0.62), 0 1px 3px rgba(var(--cream-rgb), 0.5);
}
.hero-title { margin-bottom: 4px; font-weight: 600; }
.hero-title .line { display: block; overflow: hidden; padding-bottom: 0.04em; }
.hero-title .line-in { display: block; }
.hero-copy .lede { font-weight: 400; color: var(--ink); }
.lede { margin: 26px 0 36px; max-width: 46ch; color: var(--ink-soft); }
.hero-cta { display: flex; align-items: center; gap: 28px; flex-wrap: wrap; }
.hero-phone { font-size: 0.92rem; display: inline-flex; align-items: center; gap: 10px; }
.hero-phone .ring {
  display: inline-flex; align-items: center; justify-content: center;
  width: 36px; height: 36px;
  border: 1px solid var(--line); border-radius: 50%;
  font-size: 0.85rem; color: var(--bronze);
}

/* docked frosted stat strip */
.hero-strip-wrap { position: relative; z-index: 2; padding-bottom: 40px; }
.hero-strip {
  background: rgba(16, 14, 11, 0.5);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(245, 242, 236, 0.14);
  color: var(--paper);
  border-radius: var(--radius);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding: 28px 20px;
  box-shadow: 0 24px 50px -30px rgba(0, 0, 0, 0.6);
}
.strip-item { padding: 0 26px; border-left: 1px solid var(--line-light); }
.strip-item:first-child { border-left: 0; }
.strip-num {
  display: block;
  font-family: var(--serif);
  font-size: 1.7rem;
  color: var(--bronze-2);
  margin-bottom: 6px;
  line-height: 1;
}
.strip-label { font-size: 0.78rem; color: rgba(245, 242, 236, 0.7); line-height: 1.5; display: block; }

/* scroll cue — thin track on the right with a travelling bronze segment */
.scroll-cue {
  position: absolute; right: 30px; top: 44%;
  z-index: 3; height: 58px; width: 12px;
  display: flex; justify-content: center;
}
.scroll-cue-line {
  width: 1px; height: 100%;
  background: rgba(168, 131, 90, 0.28);
  position: relative; overflow: hidden;
}
.scroll-cue-line::after {
  content: ""; position: absolute; inset: 0;
  background: var(--bronze-2);
  transform: translateY(-100%);
  animation: scrollcue 2.2s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}
@keyframes scrollcue {
  0% { transform: translateY(-100%); }
  55%, 100% { transform: translateY(100%); }
}

/* hero entrance — fires when <body class="loaded"> is set on load */
.hero-line {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: calc(var(--d, 0) * 1ms);
}
.hero-title .line-in {
  transform: translateY(112%);
  transition: transform 0.85s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: calc(var(--d, 0) * 1ms);
}
body.loaded .hero-line { opacity: 1; transform: none; }
body.loaded .hero-title .line-in { transform: none; }
.hero .eyebrow { --d: 80; }
.hero-title .line:nth-child(1) .line-in { --d: 180; }
.hero-title .line:nth-child(2) .line-in { --d: 300; }
.hero .lede { --d: 440; }
.hero .hero-cta { --d: 560; }
.hero-strip-wrap { --d: 700; }

/* ---------- Stone ---------- */
.stone { background: var(--cream-2); }
.stone-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 72px; align-items: center; }
.stone-copy p { margin-bottom: 18px; color: var(--ink-soft); max-width: 52ch; }
.stone-copy h2 { margin-bottom: 26px; }
.stone-copy strong { color: var(--ink); font-weight: 500; }
.props { display: flex; gap: 18px; margin-top: 36px; }
.prop {
  flex: 1;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px 20px;
}
.prop-num { font-family: var(--serif); font-size: 2rem; line-height: 1; color: var(--ink); }
.prop-unit { font-size: 0.74rem; color: var(--bronze); margin-left: 4px; }
.prop-label { display: block; font-size: 0.74rem; letter-spacing: 0.06em; text-transform: uppercase; color: var(--ink-soft); margin-top: 10px; }
.stone-media img { border-radius: var(--radius); aspect-ratio: 4 / 4.4; object-fit: cover; }
.media-caption { font-size: 0.78rem; color: var(--ink-soft); margin-top: 14px; letter-spacing: 0.04em; }

/* ---------- Advantages ---------- */
.advantages { padding: 70px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.adv-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 28px; }
.adv { text-align: center; }
.adv p { font-size: 0.8rem; color: var(--ink-soft); line-height: 1.55; }
.adv-icon {
  width: 52px; height: 52px;
  margin: 0 auto 16px;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--bronze);
  font-size: 0.95rem;
}

/* ---------- Products ---------- */
.product-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px 26px; }
.card-media { overflow: hidden; border-radius: var(--radius); margin-bottom: 22px; }
.card-media img { aspect-ratio: 4 / 3; object-fit: cover; transition: transform 0.6s ease; }
.card:hover .card-media img { transform: scale(1.045); }
.card h3 { margin-bottom: 10px; }
.card p { font-size: 0.88rem; color: var(--ink-soft); }

/* ---------- Heritage ---------- */
.heritage { background: var(--dark); color: var(--paper); }
.heritage-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 72px; align-items: center; }
.heritage-copy h2 { margin-bottom: 24px; }
.heritage-copy > p { color: rgba(245, 242, 236, 0.72); max-width: 50ch; }
.landmarks {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 32px;
  margin: 32px 0;
}
.landmarks li {
  font-family: var(--serif);
  font-size: 1.18rem;
  padding-left: 22px;
  position: relative;
}
.landmarks li::before {
  content: "";
  position: absolute;
  left: 0; top: 0.62em;
  width: 8px; height: 8px;
  background: var(--bronze);
  transform: rotate(45deg);
}
.heritage-note {
  font-size: 0.84rem;
  color: rgba(245, 242, 236, 0.55);
  border-left: 2px solid var(--bronze);
  padding-left: 18px;
  max-width: 54ch;
}
.heritage-media { display: grid; gap: 22px; }
.heritage-media img { border-radius: var(--radius); aspect-ratio: 16 / 10; object-fit: cover; filter: sepia(0.18); }
.heritage-media figcaption {
  font-size: 0.76rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(245, 242, 236, 0.5);
  margin-top: 10px;
}

/* ---------- Recent work carousel ---------- */
.projects { background: var(--cream-2); }
.carousel-track {
  display: flex;
  gap: 26px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  overscroll-behavior-x: contain;
  scrollbar-width: none;
  cursor: grab;
}
.carousel-track::-webkit-scrollbar { display: none; }
.carousel-track:focus-visible { outline: 1px solid var(--bronze); outline-offset: 6px; }
.carousel-track.dragging {
  scroll-snap-type: none;
  cursor: grabbing;
  user-select: none;
}
.slide {
  flex: 0 0 calc((100% - 52px) / 3);
  scroll-snap-align: start;
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
}
.slide img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
  -webkit-user-drag: none;
  user-select: none;
}
.slide figcaption {
  position: absolute;
  inset: auto 0 0 0;
  padding: 36px 18px 14px;
  font-size: 0.78rem;
  letter-spacing: 0.05em;
  color: #fff;
  background: linear-gradient(to top, rgba(24, 21, 17, 0.72), transparent);
}
.car-nav { display: flex; gap: 10px; }
.car-btn {
  width: 44px; height: 44px;
  display: inline-flex; align-items: center; justify-content: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: none;
  color: var(--ink);
  font-size: 1rem;
  cursor: pointer;
  transition: border-color 0.25s, color 0.25s, opacity 0.25s;
}
.car-btn:hover:not(:disabled) { border-color: var(--bronze); color: var(--bronze); }
.car-btn:disabled { opacity: 0.35; cursor: default; }
.car-dots { display: flex; justify-content: center; gap: 8px; margin-top: 28px; }
.car-dot {
  width: 8px; height: 8px;
  padding: 0; border: 0; border-radius: 999px;
  background: var(--cream-3);
  cursor: pointer;
  transition: width 0.3s ease, background 0.3s ease;
}
.car-dot.active { width: 26px; background: var(--bronze); }

/* ---------- Contact ---------- */
.contact { background: var(--dark); color: var(--paper); padding-bottom: 0; }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; padding-bottom: 100px; }
.contact-copy h2 { margin-bottom: 22px; }
.contact-copy > p { color: rgba(245, 242, 236, 0.7); max-width: 46ch; }
.contact-list { list-style: none; margin-top: 36px; display: grid; gap: 20px; }
.contact-list li { display: flex; gap: 16px; align-items: baseline; font-size: 0.95rem; }
.contact-list a:hover { color: var(--bronze-2); }
.ci {
  display: inline-flex; align-items: center; justify-content: center;
  width: 34px; height: 34px; flex: 0 0 34px;
  border: 1px solid var(--line-light);
  border-radius: 50%;
  color: var(--bronze-2);
  font-size: 0.8rem;
  transform: translateY(8px);
}
.contact-form { display: grid; gap: 14px; align-content: start; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.contact-form input,
.contact-form textarea {
  width: 100%;
  background: var(--dark-2);
  border: 1px solid var(--line-light);
  border-radius: 10px;
  padding: 15px 18px;
  font-family: var(--sans);
  font-size: 0.88rem;
  font-weight: 300;
  color: var(--paper);
  resize: vertical;
  transition: border-color 0.25s;
}
.contact-form input::placeholder,
.contact-form textarea::placeholder { color: rgba(245, 242, 236, 0.38); }
.contact-form input:focus,
.contact-form textarea:focus { outline: none; border-color: var(--bronze); }
.form-note { font-size: 0.74rem; color: rgba(245, 242, 236, 0.4); text-align: center; }

/* ---------- Footer bar ---------- */
.footer-bar {
  border-top: 1px solid var(--line-light);
  padding-top: 28px; padding-bottom: 28px;
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
  flex-wrap: wrap;
}
.wordmark-light { font-size: 1.05rem; }
.footer-nav { display: flex; gap: 26px; }
.footer-nav a { font-size: 0.78rem; color: rgba(245, 242, 236, 0.55); transition: color 0.2s; }
.footer-nav a:hover { color: var(--paper); }
.copyright { font-size: 0.78rem; color: rgba(245, 242, 236, 0.4); }

/* ---------- Reveal animation ---------- */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: calc(var(--i, 0) * 80ms);
}
.reveal.visible { opacity: 1; transform: none; }

/* section media settles from a slight scale as it reveals */
.stone-media img,
.heritage-media figure img {
  transform: scale(1.05);
  transition: transform 1s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: calc(var(--i, 0) * 80ms);
}
.stone-media.visible img,
.heritage-media.visible figure img { transform: none; }

/* ---------- Micro-interactions ---------- */
.main-nav a { position: relative; }
.main-nav a::after {
  content: "";
  position: absolute; left: 0; right: 0; bottom: -4px;
  height: 1px; background: var(--bronze);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}
.main-nav a:hover::after { transform: scaleX(1); }
.btn-solid { box-shadow: 0 10px 22px -14px rgba(168, 131, 90, 0.9); }
.btn-solid:hover { transform: translateY(-2px); box-shadow: 0 16px 30px -16px rgba(168, 131, 90, 1); }
.card { transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1); }
.card:hover { transform: translateY(-5px); }

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
  .section { padding: 80px 0; }
  .hero { padding-top: 110px; }
  .hero-inner { padding-bottom: 28px; }
  .hero-copy { max-width: none; }
  .scroll-cue { display: none; }
  .stone-grid, .heritage-grid, .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .hero-strip { grid-template-columns: 1fr 1fr; gap: 28px 0; }
  .strip-item:nth-child(3) { border-left: 0; }
  .product-grid { grid-template-columns: 1fr 1fr; }
  .slide { flex-basis: calc((100% - 26px) / 2); }
  .adv-grid { grid-template-columns: repeat(3, 1fr); gap: 36px 20px; }
  .main-nav {
    position: fixed;
    top: 0; right: 0;
    height: 100vh; width: min(78vw, 320px);
    background: var(--cream-2);
    flex-direction: column;
    padding: 110px 40px;
    gap: 26px;
    transform: translateX(100%);
    visibility: hidden;
    transition: transform 0.35s ease, visibility 0.35s;
    box-shadow: -20px 0 50px rgba(24, 21, 17, 0.18);
  }
  .main-nav.open { transform: none; visibility: visible; }
  .main-nav a { font-size: 1.05rem; }
  .header-actions > .theme-toggle { display: none; }
  .nav-theme-row {
    display: flex;
    align-items: center;
    margin-top: 14px;
    padding-top: 26px;
    border-top: 1px solid var(--line);
  }
  .nav-toggle { display: block; z-index: 110; }
  .nav-toggle.open span:first-child { transform: translateY(4px) rotate(45deg); }
  .nav-toggle.open span:last-child { transform: translateY(-4px) rotate(-45deg); }
  .btn-outline { display: none; }
}
@media (max-width: 580px) {
  .product-grid, .form-row { grid-template-columns: 1fr; }
  .slide { flex-basis: 85%; }
  .car-dots { gap: 6px; }
  .car-nav { display: none; }
  .adv-grid { grid-template-columns: 1fr 1fr; }
  .hero-strip { grid-template-columns: 1fr; padding: 28px 24px; }
  .strip-item { border-left: 0; border-top: 1px solid var(--line-light); padding: 18px 0 0; margin-top: 18px; }
  .strip-item:first-child { border-top: 0; margin-top: 0; padding-top: 0; }
  .props { flex-direction: column; }
  .landmarks { grid-template-columns: 1fr; }
  .section-head { flex-direction: column; align-items: flex-start; }
  /* phones use the portrait poster + portrait video encode */
  .hero-poster { background-image: url("media/hero-poster-mobile.jpg"); }
  /* strengthen the wash for legibility over the footage */
  .hero-scrim {
    background:
      linear-gradient(to bottom, rgba(var(--cream-rgb), 0.7) 0%, rgba(var(--cream-rgb), 0) 14%),
      linear-gradient(125deg, rgba(var(--cream-rgb), 0.92) 18%, rgba(var(--cream-rgb), 0.55) 52%, rgba(var(--cream-rgb), 0) 88%),
      linear-gradient(to top, rgba(var(--cream-rgb), 0.97) 0%, rgba(var(--cream-rgb), 0.6) 22%, rgba(var(--cream-rgb), 0) 46%);
  }
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal,
  .hero-line,
  .hero-title .line-in,
  .stone-media img,
  .heritage-media figure img {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
  .hero-poster { animation: none; transform: scale(1.03); }
  .hero-video { transition: none; }
  .scroll-cue-line::after { animation: none; opacity: 0; }
  .btn-solid:hover, .card:hover { transform: none; }
}
