/* TrailHound Motors — production page styles. Layered on top of tokens.css. */

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--bg-page);
  color: var(--fg-1);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
/* <picture> is a layout-neutral wrapper so the inner <img> behaves as a direct child */
picture { display: contents; }

/* ===== Section ===== */
.section { padding: 96px 56px; }
.section--lg { padding: 128px 56px; }
.section--charcoal { background: var(--th-charcoal); color: var(--fg-on-dark-1); }
.section--cream    { background: var(--th-cream); }
.section--rel { position: relative; overflow: hidden; }
/* position-only variant: lets an absolutely-positioned child (e.g. the circular
   logo mark) straddle/overflow the section edge instead of being clipped */
.section--relative { position: relative; }

.container { max-width: 1280px; margin: 0 auto; }

/* ===== Type tokens ===== */
.th-eyebrow {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--th-heritage-gold);
}
.th-display {
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: -0.01em;
  line-height: 1.05;
  margin: 0;
}
.th-h1 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(40px, 4.6vw, 64px);
  line-height: 1.08;
  letter-spacing: -0.01em;
  margin: 0;
}
.th-h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(32px, 3.4vw, 48px);
  line-height: 1.12;
  margin: 0;
}
.th-h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 24px;
  line-height: 1.18;
  margin: 0;
}
.th-script {
  font-family: var(--font-script);
  font-style: normal;
  font-weight: 400;
  color: var(--th-heritage-gold);
  line-height: 0.95;
}
.th-body {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  color: var(--fg-2);
  margin: 0;
}
.th-body--on-dark { color: var(--fg-on-dark-2); }
.th-lede {
  font-family: var(--font-body);
  font-size: 19px;
  line-height: 1.7;
  color: var(--fg-1);
  margin: 0;
}

/* ===== Gold rule ornament ===== */
.gr {
  display: flex; align-items: center; justify-content: center; gap: 14px;
  margin: 24px 0;
  color: var(--th-heritage-gold);
}
.gr::before, .gr::after {
  content: ''; height: 1px; width: 56px; background: var(--th-heritage-gold);
}
.gr svg { color: var(--th-heritage-gold); }
.gr--left { justify-content: flex-start; margin-left: 0; }
.gr--left::before { display: none; }
.gr--center { margin-left: auto; margin-right: auto; }

/* ===== Buttons ===== */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-body); font-size: 12px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.18em;
  padding: 16px 30px; border: 0; cursor: pointer;
  transition: background var(--dur-base) var(--ease-out), color var(--dur-base) var(--ease-out);
  position: relative;
}
.btn-primary { background: var(--th-charcoal); color: var(--th-warm-white); }
.btn-primary:hover { background: var(--th-charcoal-soft); }
.btn-primary::after {
  content:''; position:absolute; left:30px; right:30px; bottom:11px; height:1px;
  background: var(--th-heritage-gold);
  transform: scaleX(0); transform-origin: left;
  transition: transform var(--dur-base) var(--ease-out);
}
.btn-primary:hover::after { transform: scaleX(1); }
.btn-ghost {
  background: transparent; color: var(--th-charcoal);
  border: 1px solid var(--th-charcoal);
  padding: 15px 29px;
}
.btn-ghost:hover { background: var(--th-charcoal); color: var(--th-warm-white); }
.btn-ghost--on-dark { color: var(--th-warm-white); border-color: var(--th-warm-white); }
.btn-ghost--on-dark:hover { background: var(--th-warm-white); color: var(--th-charcoal); }
.btn-gold {
  background: transparent; color: var(--th-heritage-gold);
  border: 1px solid var(--th-heritage-gold);
  padding: 15px 29px;
}
.btn-gold:hover { background: var(--th-heritage-gold); color: var(--th-charcoal); }
.btn-link {
  font-family: var(--font-body); font-size: 12px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.18em;
  border-bottom: 1px solid var(--th-heritage-gold);
  padding-bottom: 4px;
  display: inline-flex; gap: 10px; align-items: center;
  cursor: pointer;
  color: var(--th-charcoal);
  background: none;
}
.btn-link--light { color: var(--th-warm-white); }

/* Focus visibility (accessibility) */
:focus-visible { outline: 2px solid var(--th-heritage-gold); outline-offset: 3px; }

/* ===== Wordmark ===== */
.wordmark { display: flex; align-items: center; gap: 12px; }
.wordmark__logo {
  width: 36px; height: 36px; border-radius: 999px;
  object-fit: cover; object-position: center;
}
.wordmark--light .wordmark__logo { mix-blend-mode: screen; filter: contrast(1.1) brightness(1.05); }
.wordmark__text { line-height: 1; }
.wordmark__name {
  font-family: var(--font-display); font-size: 18px; font-weight: 700;
  letter-spacing: 0.04em; color: var(--th-charcoal);
}
.wordmark--light .wordmark__name { color: var(--th-warm-white); }
.wordmark__name em {
  color: var(--th-heritage-gold); font-style: italic; font-weight: 500; letter-spacing: 0.02em;
}
.wordmark__kicker {
  font-family: var(--font-body); font-size: 9px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.32em;
  color: var(--fg-3); margin-top: 2px;
}
.wordmark--light .wordmark__kicker { color: var(--fg-on-dark-2); }

/* ===== Nav ===== */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  background: var(--th-charcoal);
  border-bottom: 1px solid transparent;
  transition: border-color 260ms var(--ease-out);
}
.nav.scrolled { border-bottom-color: rgba(244,242,236,0.18); }
.nav__inner {
  max-width: 1440px; margin: 0 auto;
  padding: 18px 56px;
  display: flex; align-items: center; justify-content: space-between; gap: 32px;
}
.nav__links { display: flex; align-items: center; gap: 36px; }
.nav__link {
  font-family: var(--font-body); font-size: 11px; font-weight: 500;
  text-transform: uppercase; letter-spacing: 0.22em;
  color: var(--fg-on-dark-2);
  position: relative; padding-bottom: 4px;
  border-bottom: 1px solid transparent;
  transition: color 260ms var(--ease-out);
}
.nav__link.active { color: var(--th-warm-white); border-bottom-color: var(--th-heritage-gold); }
/* Mobile-only "Join the Waitlist" entry in the menu (desktop uses the button) */
.nav__link--cta { display: none; color: var(--th-heritage-gold); }
.nav__cta {
  font-family: var(--font-body); font-size: 11px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.18em;
  padding: 11px 22px;
  background: transparent; color: var(--th-heritage-gold);
  border: 1px solid var(--th-heritage-gold);
  cursor: pointer;
  transition: all 260ms var(--ease-out);
}
.nav__cta:hover { background: var(--th-heritage-gold); color: var(--th-charcoal); }
.nav__toggle { display: none; }

/* ===== Hero ===== */
.hero {
  position: relative; height: 100vh; min-height: 720px; max-height: 920px;
  width: 100%; overflow: hidden;
  background: var(--th-charcoal);
}
.hero__video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: center 35%;
}
.hero__scrim {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom,
    rgba(21,22,26,0.55) 0%,
    rgba(21,22,26,0.22) 32%,
    rgba(21,22,26,0.45) 62%,
    rgba(21,22,26,0.78) 82%,
    rgba(21,22,26,0.92) 100%);
}
.hero__scrim--flat { background: rgba(21,22,26,0.12); }
.hero__content {
  position: relative; z-index: 2;
  height: 100%; display: flex; flex-direction: column;
  justify-content: flex-end; align-items: center;
  padding: 0 56px 96px; text-align: center;
}
.hero__eyebrow { color: var(--th-heritage-gold); font-size: 14px; letter-spacing: 0.34em; }
.hero__h1 {
  font-size: clamp(56px, 8vw, 128px);
  color: var(--th-warm-white);
  margin: 22px 0 0;
  text-shadow: 0 2px 24px rgba(0,0,0,0.35);
}
.hero__h1 em { font-style: italic; font-weight: 700; color: var(--th-heritage-gold); }
.hero__sub {
  font-family: var(--font-display); font-style: italic;
  font-size: clamp(18px, 1.6vw, 24px); font-weight: 400;
  color: var(--th-warm-white); max-width: 640px; margin: 0 auto; line-height: 1.5;
}
.hero__buttons { margin-top: 36px; display: flex; gap: 16px; flex-wrap: wrap; justify-content: center; }
.hero__scroll {
  position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%);
  z-index: 3; color: var(--fg-on-dark-2);
  font-family: var(--font-body); font-size: 10px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.32em;
  display: flex; flex-direction: column; align-items: center; gap: 10px;
}
.hero__scroll-bar {
  width: 1px; height: 36px; background: var(--th-heritage-gold);
  animation: pulse-down 2.4s ease-in-out infinite;
}
@keyframes pulse-down {
  0%, 100% { opacity: 0.4; transform: scaleY(0.6); transform-origin: top; }
  50%      { opacity: 1;   transform: scaleY(1);   transform-origin: top; }
}

/* ===== Manifesto ===== */
.manifesto__bg {
  position: absolute; left: 0; right: 0; bottom: 0;
  width: 100%; height: auto;
  opacity: 0.32; mix-blend-mode: multiply;
  user-select: none; pointer-events: none; z-index: 0;
}
.manifesto__grid {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1fr 1.2fr; gap: 96px; align-items: start;
}
.manifesto__welcome {
  display: inline-block; margin-top: 8px;
  color: var(--th-heritage-gold); font-size: 35px; font-weight: 300;
}

/* ===== Fleet ===== */
.fleet__head { text-align: center; margin-bottom: 72px; }
.fleet__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.fleet__cta { text-align: center; margin-top: 56px; }

.card {
  background: var(--bg-page);
  border: 1px solid var(--border-hairline);
  display: flex; flex-direction: column;
}
.tile {
  position: relative; overflow: hidden;
  background: var(--th-bone);
  cursor: pointer;
  aspect-ratio: 2 / 3;
  width: 100%; border: 0; padding: 0; display: block;
}
.tile-img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 900ms var(--ease-out);
}
.tile:hover .tile-img { transform: scale(1.04); }
.tile-scrim {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(30,31,34,0.78) 0%, rgba(30,31,34,0.3) 35%, rgba(30,31,34,0) 60%);
  transition: background var(--dur-slow) var(--ease-out);
}
.tile:hover .tile-scrim { background: linear-gradient(to top, rgba(30,31,34,0.88), rgba(30,31,34,0.4) 50%, rgba(30,31,34,0.05) 80%); }
.card__badge {
  position: absolute; top: 18px; left: 18px; z-index: 2;
  font-family: var(--font-body); font-size: 10px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.18em;
  padding: 6px 12px;
  background: var(--th-heritage-gold); color: var(--th-charcoal);
}
.card__badge--reserved { background: rgba(30,31,34,0.85); color: var(--th-warm-white); }
.card__body { padding: 24px 26px 26px; }
.card__series { color: var(--th-heritage-gold); }
.card__name { margin-top: 8px; }
.card__blurb { font-size: 14px; margin-top: 8px; }
.card__foot {
  display: flex; justify-content: space-between; align-items: baseline;
  margin-top: 22px; padding-top: 14px; border-top: 1px solid var(--border-hairline);
}
.card__note {
  font-family: var(--font-body); font-size: 10px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.18em; color: var(--th-heritage-gold);
}

/* ===== Values ===== */
.values__mark {
  position: absolute; top: 0; left: 50%;
  transform: translate(-50%, -50%);
  width: 180px; height: auto; z-index: 5;
  user-select: none; pointer-events: none;
  box-shadow: 0 0 0 6px var(--th-warm-white), 0 0 0 7px rgba(200,155,60,0.45);
  border-radius: 50%;
}
.values__head { text-align: center; margin-bottom: 72px; }
.values__head .th-h2 { color: var(--th-warm-white); }
.values__grid { display: grid; grid-template-columns: repeat(3, 1fr); column-gap: 48px; row-gap: 56px; }
.value { display: flex; flex-direction: column; gap: 12px; align-items: flex-start; }
.value__name {
  font-family: var(--font-body); font-size: 12px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.24em; color: var(--th-warm-white);
}
.value__line {
  font-family: var(--font-display); font-style: italic; font-weight: 400;
  font-size: 18px; line-height: 1.5; color: var(--th-warm-white);
}
.value__sub {
  font-family: var(--font-body); font-weight: 300;
  font-size: 14px; line-height: 1.6; color: var(--fg-on-dark-2);
}

/* ===== Story ===== */
.story__grid { display: grid; grid-template-columns: 1.3fr 1fr; gap: 80px; align-items: center; }
.story__media { position: relative; }
.story__frame { overflow: hidden; aspect-ratio: 5 / 4; }
.story__frame img {
  width: 100%; height: 100%; object-fit: cover;
  transform: scale(1.08) translate(-23%, 9%); transform-origin: center;
}
.story__plate {
  position: absolute; bottom: -28px; left: -28px;
  background: var(--th-warm-white);
  padding: 22px 28px;
  font-family: var(--font-display); font-size: 18px; font-style: italic;
  border: 1px solid var(--border-hairline);
  max-width: 260px;
}
.story__plate-label {
  font-family: var(--font-body); font-size: 9px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.32em;
  color: var(--th-heritage-gold); font-style: normal; margin-bottom: 8px;
}
.story__h2 { margin-top: 8px; font-size: clamp(36px, 3.8vw, 52px); }
.story__steps { margin-top: 32px; display: flex; flex-direction: column; gap: 22px; }
.story__step { display: grid; grid-template-columns: 48px 1fr; gap: 18px; align-items: baseline; }
.story__num {
  font-family: var(--font-display); font-size: 28px; font-weight: 700;
  color: var(--th-heritage-gold); font-style: italic;
}
.story__step-title {
  font-family: var(--font-body); font-size: 11px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.22em;
  color: var(--fg-1); margin-bottom: 4px;
}
.story__step-body { font-size: 15px; }

/* ===== Visit ===== */
.visit {
  position: relative; min-height: 580px;
  background-color: var(--th-charcoal);
  background-position: center; background-size: cover; background-repeat: no-repeat;
  background-image: url('assets/photos/photo-campfire-hound.png'); /* fallback */
  background-image: -webkit-image-set(url('assets/photos/photo-campfire-hound.webp') type('image/webp'), url('assets/photos/photo-campfire-hound.png') type('image/png'));
  background-image: image-set(url('assets/photos/photo-campfire-hound.webp') type('image/webp'), url('assets/photos/photo-campfire-hound.png') type('image/png'));
  overflow: hidden;
}
.visit__scrim {
  position: absolute; inset: 0;
  background: linear-gradient(to right, rgba(21,22,26,0.85) 0%, rgba(21,22,26,0.55) 50%, rgba(21,22,26,0.15) 100%);
}
.visit__inner { position: relative; z-index: 2; max-width: 1280px; margin: 0 auto; padding: 128px 56px; }
.visit__block { max-width: 560px; }
.visit__h2 { color: var(--th-warm-white); margin-top: 14px; }
.visit__copy {
  font-size: 17px; margin-top: 16px; margin-bottom: 32px; max-width: 480px;
  font-weight: 300; color: rgb(223, 222, 214);
}
.visit__actions { display: flex; gap: 16px; align-items: center; flex-wrap: wrap; }
.visit__details {
  margin-top: 56px; display: flex; gap: 48px;
  font-family: var(--font-body); color: var(--fg-on-dark-2); font-size: 13px;
}
.visit__details a { color: inherit; }
.visit__detail-label { color: var(--th-heritage-gold); font-size: 10px; margin-bottom: 6px; }

/* ===== Footer ===== */
.footer {
  background: var(--th-charcoal-ink);
  color: var(--fg-on-dark-2);
  padding: 80px 56px 36px;
}
.footer__inner { max-width: 1280px; margin: 0 auto; }
.footer__grid {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 56px;
  padding-bottom: 56px; border-bottom: 1px solid rgba(244,242,236,0.12);
}
.footer__tagline { margin-top: 24px; font-size: 14px; max-width: 320px; }
.footer__social { display: flex; gap: 16px; margin-top: 24px; }
.footer__social a {
  font-family: var(--font-body); font-size: 10px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.22em;
  color: var(--fg-on-dark-2); border-bottom: 1px solid rgba(200,155,60,0.5); padding-bottom: 3px;
}
.footer__col-h { color: var(--th-heritage-gold); font-size: 11px; }
.footer__list { list-style: none; padding: 0; margin: 20px 0 0; display: flex; flex-direction: column; gap: 12px; }
.footer__list a { font-family: var(--font-body); font-size: 13px; color: var(--fg-on-dark-2); }
.footer__list a:hover { color: var(--th-warm-white); }
.footer__bar {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 28px; gap: 24px; flex-wrap: wrap;
  font-family: var(--font-body); font-size: 11px; color: var(--fg-3);
  text-transform: uppercase; letter-spacing: 0.22em;
}
.footer__motto {
  font-family: var(--font-display); font-style: italic;
  font-size: 14px; color: var(--th-heritage-gold);
  text-transform: none; letter-spacing: normal;
}
.footer__legal { display: flex; gap: 24px; }

/* ===== Reserve / Waitlist modal ===== */
.modal-backdrop {
  position: fixed; inset: 0; background: rgba(21,22,26,0.7);
  display: flex; align-items: center; justify-content: center;
  z-index: 100;
  opacity: 0; pointer-events: none;
  transition: opacity 360ms var(--ease-out);
}
.modal-backdrop.open { opacity: 1; pointer-events: auto; }
.modal {
  background: var(--th-warm-white);
  width: 520px; max-width: calc(100vw - 48px);
  max-height: calc(100vh - 48px); overflow-y: auto;
  padding: 48px 44px;
  position: relative;
  transform: translateY(20px);
  transition: transform 420ms var(--ease-out);
}
.modal-backdrop.open .modal { transform: none; }
.modal-x {
  position: absolute; top: 16px; right: 16px;
  width: 32px; height: 32px; border: 0; background: transparent;
  cursor: pointer; color: var(--fg-1);
  display: flex; align-items: center; justify-content: center;
}
.modal__copy { margin-bottom: 28px; }
.modal__fields { display: flex; flex-direction: column; gap: 18px; margin-bottom: 28px; }
.modal__foot { display: flex; gap: 14px; justify-content: space-between; align-items: center; }
.modal__foot-note { font-size: 12px; color: var(--fg-3); }
.modal__step--confirm { text-align: center; padding-top: 8px; }
.modal__star { color: var(--th-heritage-gold); }
.modal__error {
  font-family: var(--font-body); font-size: 13px; line-height: 1.5;
  color: #8a3b2e; background: rgba(138,59,46,0.08);
  border: 1px solid rgba(138,59,46,0.25);
  padding: 10px 14px; margin-bottom: 20px;
}
.field { display: flex; flex-direction: column; gap: 6px; }
.field-label {
  font-family: var(--font-body); font-size: 10px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.22em; color: var(--fg-2);
}
.field-input {
  background: transparent;
  border: 0; border-bottom: 1px solid var(--border-strong);
  padding: 10px 0;
  font-family: var(--font-body); font-size: 15px; color: var(--fg-1);
  outline: none;
  transition: border-color var(--dur-base) var(--ease-out);
}
.field-input:focus { border-bottom-color: var(--th-heritage-gold); }
.field-input:focus-visible { outline: none; }
.field-input[aria-invalid="true"] { border-bottom-color: #8a3b2e; }
/* Textarea + select share the hairline input look */
textarea.field-input { resize: vertical; min-height: 64px; line-height: 1.5; }
select.field-input {
  appearance: none; -webkit-appearance: none; -moz-appearance: none;
  cursor: pointer; padding-right: 24px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' fill='none' stroke='%237A7568' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 2px center;
}
/* Slightly tighter field stack now that there are six fields */
.modal__fields { gap: 14px; }
/* Honeypot — hidden from real users */
.hp-field {
  position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden;
}

/* ===== On-scroll reveal (only hides when JS is active) ===== */
.js .reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity var(--dur-slow) var(--ease-out), transform var(--dur-slow) var(--ease-out);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}
.js .reveal.in { opacity: 1; transform: none; }

/* ===== Responsive ===== */
@media (max-width: 1024px) {
  .manifesto__grid { grid-template-columns: 1fr; gap: 48px; }
  .story__grid { grid-template-columns: 1fr; gap: 56px; }
  .story__plate { left: 0; }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 40px; }
}
@media (max-width: 820px) {
  .section, .section--lg { padding: 80px 28px; }
  .nav__inner { padding: 14px 28px; }
  .nav__links { display: none; }
  .nav__links.open {
    display: flex; flex-direction: column; align-items: flex-start; gap: 20px;
    position: absolute; top: 100%; left: 0; right: 0;
    background: var(--th-charcoal); padding: 24px 28px;
    border-top: 1px solid rgba(244,242,236,0.18);
  }
  .nav__toggle {
    display: inline-flex; align-items: center; justify-content: center;
    width: 40px; height: 40px; background: transparent; border: 0;
    color: var(--th-warm-white); cursor: pointer;
  }
  .nav__cta { display: none; }
  .nav__links.open .nav__link--cta { display: inline-flex; padding-top: 4px; }
  .fleet__grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
  .values__grid { grid-template-columns: 1fr; row-gap: 40px; }
  .hero__content { padding: 0 28px 72px; }
  .visit__inner { padding: 96px 28px; }
  .visit__details { flex-direction: column; gap: 24px; }
}
@media (max-width: 560px) {
  .footer__grid { grid-template-columns: 1fr; }
  .hero__buttons { flex-direction: column; align-items: center; }
}

/* ===== Reduced motion ===== */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .js .reveal { opacity: 1; transform: none; transition: none; }
  .hero__scroll-bar { animation: none; }
  .tile-img { transition: none; }
  * { scroll-behavior: auto !important; }
}
