/* ============================================================
   JDeB's Garage — Vineyard Haven, MA
   Industrial charcoal + safety yellow, from the shop's own logo.
   ============================================================ */

:root {
  --ink: #101216;
  --ink-2: #15181d;
  --panel: #1a1e24;
  --panel-2: #232830;
  --line: #2e343d;
  --paper: #edeee9;
  --muted: #9aa1ab;
  --yellow: #f2a81d;
  --yellow-hot: #ffc93c;
  --tan: #c9ae8c;
  --danger: #d9534f;

  --font-display: "Big Shoulders Display", sans-serif;
  --font-body: "Barlow", sans-serif;
  --font-mono: "IBM Plex Mono", monospace;

  --wrap: 1160px;
  --radius: 10px;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--ink);
  color: var(--paper);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

.wrap { max-width: var(--wrap); margin: 0 auto; padding: 0 28px; }

::selection { background: var(--yellow); color: var(--ink); }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 18px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 13px 24px;
  border: 2px solid transparent;
  border-radius: 6px;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, color 0.18s ease;
}
.btn svg { width: 18px; height: 18px; fill: currentColor; flex: none; }
.btn--yellow { background: var(--yellow); color: var(--ink); }
.btn--yellow:hover { background: var(--yellow-hot); transform: translateY(-2px); box-shadow: 0 10px 28px rgba(242, 168, 29, 0.35); }
.btn--ghost { border-color: rgba(237, 238, 233, 0.55); color: var(--paper); }
.btn--ghost:hover { border-color: var(--paper); background: rgba(237, 238, 233, 0.08); transform: translateY(-2px); }
.btn--dark { background: var(--ink); color: var(--paper); }
.btn--dark:hover { transform: translateY(-2px); box-shadow: 0 12px 30px rgba(16, 18, 22, 0.45); }
.btn--big { font-size: 21px; padding: 16px 30px; }

/* ---------- eyebrow labels ---------- */
.eyebrow {
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--yellow);
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
}
.eyebrow__dot { width: 8px; height: 8px; background: var(--yellow); flex: none; }

/* ---------- brand ---------- */
.brand-mark { width: 34px; height: 34px; color: var(--yellow); flex: none; }
.brand-mark--lg { width: 48px; height: 48px; }
.brand-word {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 24px;
  letter-spacing: 0.02em;
  color: var(--paper);
  text-transform: none;
}
.brand-word em { font-style: normal; color: var(--yellow); }
.brand-word--lg { font-size: 30px; margin-top: 10px; }

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  gap: 34px;
  padding: 16px 30px;
  transition: background 0.3s ease, box-shadow 0.3s ease, padding 0.3s ease;
}
.nav.is-scrolled {
  background: rgba(16, 18, 22, 0.92);
  backdrop-filter: blur(10px);
  box-shadow: 0 1px 0 var(--line);
  padding: 10px 30px;
}
.nav__brand { display: flex; align-items: center; gap: 12px; text-decoration: none; margin-right: auto; }
.nav__links { display: flex; gap: 26px; }
.nav__links a {
  font-family: var(--font-mono);
  font-size: 13.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--paper);
  text-decoration: none;
  padding: 4px 0;
  border-bottom: 2px solid transparent;
  transition: color 0.15s ease, border-color 0.15s ease;
}
.nav__links a:hover { color: var(--yellow); border-color: var(--yellow); }
.nav__phone { font-size: 16px; padding: 10px 18px; }

.nav__burger { display: none; background: none; border: 0; cursor: pointer; padding: 8px; }
.nav__burger span { display: block; width: 24px; height: 2.5px; background: var(--paper); margin: 5px 0; transition: 0.25s; }

.mobile-menu[hidden] { display: none; }
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 99;
  background: rgba(16, 18, 22, 0.98);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 28px;
}
.mobile-menu a {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--paper);
  text-decoration: none;
}
.mobile-menu a:hover { color: var(--yellow); }
.mobile-menu .btn { font-size: 20px; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.hero__media { position: absolute; inset: 0; }
.hero__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  animation: kenburns 26s ease-in-out infinite alternate;
  transform-origin: 65% 40%;
}
@keyframes kenburns {
  from { transform: scale(1); }
  to   { transform: scale(1.12); }
}
.hero__scrim {
  position: absolute; inset: 0;
  background:
    linear-gradient(to top, rgba(16,18,22,0.96) 0%, rgba(16,18,22,0.55) 34%, rgba(16,18,22,0.18) 60%, rgba(16,18,22,0.35) 100%);
}
.hero__content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 0 28px 11vh;
}
.hero__eyebrow { margin-bottom: 14px; }
.hero__title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(56px, 10.5vw, 138px);
  line-height: 0.92;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  margin-bottom: 22px;
}
.hero__title .line { display: block; overflow: hidden; }
.hero__title .w { display: inline-block; }
.w--yellow { color: var(--yellow); position: relative; }
.hero__sub {
  max-width: 560px;
  font-size: 19px;
  color: rgba(237, 238, 233, 0.92);
  margin-bottom: 32px;
}
.hero__cta { display: flex; gap: 16px; flex-wrap: wrap; }
.hero__scrollcue {
  position: absolute;
  right: 34px;
  bottom: 34px;
  z-index: 2;
  width: 46px; height: 46px;
  border: 1.5px solid rgba(237,238,233,0.5);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--paper);
  animation: cue 2.2s ease-in-out infinite;
}
.hero__scrollcue svg { width: 20px; height: 20px; }
@keyframes cue {
  0%, 100% { transform: translateY(0); opacity: 0.75; }
  50%      { transform: translateY(7px); opacity: 1; }
}

/* ============================================================
   TICKER
   ============================================================ */
.ticker {
  background: var(--yellow);
  color: var(--ink);
  overflow: hidden;
  padding: 13px 0;
  border-top: 3px solid var(--ink);
  border-bottom: 3px solid var(--ink);
}
.ticker__track {
  display: flex;
  align-items: center;
  gap: 28px;
  width: max-content;
  animation: ticker 34s linear infinite;
  font-family: var(--font-mono);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  white-space: nowrap;
}
.ticker__track i { font-style: normal; font-size: 10px; }
@keyframes ticker {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ============================================================
   SECTIONS (shared)
   ============================================================ */
.section { padding: 110px 0; position: relative; }
.section__title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(40px, 5.6vw, 68px);
  line-height: 0.98;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.section__title em { font-style: normal; color: var(--yellow); }
.section__lede { max-width: 640px; font-size: 19px; color: var(--muted); }

/* ============================================================
   REPAIRS
   ============================================================ */
#services { background: var(--ink-2); }
.svc-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 54px;
}
.svc {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px 22px 24px;
  transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}
.svc:hover {
  transform: translateY(-6px);
  border-color: var(--yellow);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.45), 0 0 0 1px var(--yellow);
}
.svc__icon { width: 34px; height: 34px; color: var(--yellow); margin-bottom: 16px; }
.svc h3 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 23px;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin-bottom: 8px;
}
.svc p { font-size: 15.5px; color: var(--muted); line-height: 1.5; }

.scope {
  margin-top: 44px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-left: 5px solid var(--yellow);
  border-radius: var(--radius);
  padding: 28px 30px;
}
.scope__head { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
.scope__head svg { width: 24px; height: 24px; color: var(--yellow); flex: none; }
.scope__head h3 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 24px;
  text-transform: uppercase;
}
.scope__cols { display: grid; grid-template-columns: 1fr 1fr; gap: 26px; }
.scope__cols p { font-size: 15.5px; color: var(--muted); }
.scope__cols strong { color: var(--paper); }
.scope__cols em { color: var(--yellow); font-style: normal; }

/* ============================================================
   INSPECTIONS + BOOKING
   ============================================================ */
.section--inspect {
  background:
    repeating-linear-gradient(-45deg, transparent 0 34px, rgba(242,168,29,0.045) 34px 68px),
    var(--ink);
}
.inspect__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 70px;
}
.parallax-frame {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 16 / 10.5;
  position: relative;
  border: 1px solid var(--line);
}
.parallax-frame--tall { aspect-ratio: 4 / 3.4; }
.parallax-frame img {
  width: 100%;
  height: 118%;
  object-fit: cover;
  will-change: transform;
}
.inspect__photo { position: relative; }
.station-badge {
  position: absolute;
  bottom: -22px;
  right: -14px;
  background: var(--yellow);
  color: var(--ink);
  border-radius: 8px;
  padding: 14px 18px;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.5);
  transform: rotate(-2deg);
}
.station-badge__no {
  display: block;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 26px;
  line-height: 1;
}
.station-badge__label {
  display: block;
  font-family: var(--font-mono);
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-top: 4px;
  line-height: 1.35;
}
.inspect__facts { list-style: none; margin-top: 26px; display: grid; gap: 12px; }
.inspect__facts li {
  padding-left: 26px;
  position: relative;
  color: var(--muted);
  font-size: 16.5px;
}
.inspect__facts li::before {
  content: "";
  position: absolute;
  left: 0; top: 8px;
  width: 12px; height: 12px;
  background: var(--yellow);
  clip-path: polygon(0 0, 100% 50%, 0 100%);
}
.inspect__facts strong { color: var(--paper); }

/* booking module */
.booking {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 40px;
  position: relative;
  overflow: hidden;
}
.booking::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 8px;
  background: repeating-linear-gradient(-45deg, var(--yellow) 0 16px, var(--ink) 16px 32px);
}
.booking__head { margin-bottom: 26px; }
.booking__head h3 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 34px;
  text-transform: uppercase;
}
.booking__head p { color: var(--muted); }
.booking__types {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}
.type {
  background: var(--panel-2);
  border: 2px solid var(--line);
  border-radius: var(--radius);
  padding: 18px 16px;
  text-align: left;
  cursor: pointer;
  color: var(--paper);
  font-family: var(--font-body);
  display: flex;
  flex-direction: column;
  gap: 6px;
  transition: transform 0.18s ease, border-color 0.18s ease, background 0.18s ease;
}
.type:hover { transform: translateY(-4px); border-color: rgba(242, 168, 29, 0.55); }
.type.is-active { border-color: var(--yellow); background: rgba(242, 168, 29, 0.09); }
.type__name { font-weight: 600; font-size: 15.5px; line-height: 1.3; }
.type__name small { display: block; color: var(--muted); font-size: 12.5px; font-weight: 500; }
.type__price {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 34px;
  color: var(--yellow);
  line-height: 1;
  margin-top: auto;
}
.type__mins { font-family: var(--font-mono); font-size: 12px; color: var(--muted); letter-spacing: 0.08em; text-transform: uppercase; }

.booking__action[hidden], .booking__fallback[hidden] { display: none; }
.booking__action {
  margin-top: 26px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.booking__summary { font-size: 17px; }
.booking__picked strong { color: var(--yellow); }

.booking__fallback { margin-top: 26px; }
.booking__fallback-inner {
  background: var(--ink);
  border: 1px dashed rgba(242, 168, 29, 0.5);
  border-radius: var(--radius);
  padding: 30px;
  text-align: center;
}
.booking__fallback-head {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 26px;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 10px;
}
.booking__fallback-inner > p { max-width: 560px; margin: 0 auto 20px; color: var(--muted); }
.booking__fallback-inner > p strong { color: var(--paper); }
.booking__fallback-note {
  font-family: var(--font-mono);
  font-size: 13px !important;
  margin-top: 18px !important;
  margin-bottom: 0 !important;
  color: var(--muted);
}

/* ============================================================
   SHOP BAND (parallax full-bleed)
   ============================================================ */
.band {
  position: relative;
  min-height: 78vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.band__media { position: absolute; inset: -18% 0; }
.band__media img { width: 100%; height: 100%; object-fit: cover; will-change: transform; }
.band__scrim {
  position: absolute; inset: 0;
  background: linear-gradient(100deg, rgba(16,18,22,0.93) 8%, rgba(16,18,22,0.65) 46%, rgba(16,18,22,0.25) 100%);
}
.band__content { position: relative; z-index: 2; padding-top: 90px; padding-bottom: 90px; }
.band__content .section__lede { color: rgba(237,238,233,0.85); }

/* ============================================================
   OFFICE
   ============================================================ */
.section--office { background: var(--ink-2); }
.office__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

/* ============================================================
   REVIEWS
   ============================================================ */
.section--reviews { background: var(--ink); }
.reviews__meta {
  font-family: var(--font-mono);
  font-size: 14px;
  letter-spacing: 0.06em;
  color: var(--muted);
  margin-top: 4px;
}
.reviews__score { color: var(--yellow); font-weight: 600; }
.reviews__meta a { color: var(--paper); }
.reviews__meta a:hover { color: var(--yellow); }
.reviews__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 50px;
}
.review {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 26px;
  position: relative;
}
.review__stars { color: var(--yellow); font-size: 20px; letter-spacing: 4px; margin-bottom: 14px; }
.review blockquote { font-size: 16.5px; color: var(--paper); margin-bottom: 16px; }
.review figcaption { font-family: var(--font-mono); font-size: 13px; color: var(--muted); letter-spacing: 0.06em; }
.review--placeholder { border-style: dashed; border-color: rgba(242, 168, 29, 0.45); }
.review--placeholder blockquote { color: var(--muted); font-style: italic; }
.review__tag {
  position: absolute;
  top: 14px; right: 14px;
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.14em;
  color: var(--ink);
  background: var(--yellow);
  padding: 3px 8px;
  border-radius: 3px;
}

/* ============================================================
   CALL
   ============================================================ */
.call {
  background: var(--yellow);
  color: var(--ink);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}
.call::after {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 10px;
  background: repeating-linear-gradient(-45deg, var(--ink) 0 18px, transparent 18px 36px);
  opacity: 0.9;
}
.call__grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
}
.call__title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(52px, 7vw, 92px);
  line-height: 0.92;
  text-transform: uppercase;
  margin-bottom: 22px;
}
.call__title em { font-style: normal; -webkit-text-stroke: 2.5px var(--ink); color: transparent; }
.call__copy { font-size: 19px; max-width: 540px; margin-bottom: 30px; }
.call__phone { position: relative; }
.call__phone::before {
  content: "";
  position: absolute;
  inset: -7px;
  border: 2px solid rgba(16, 18, 22, 0.55);
  border-radius: 10px;
  animation: ring 2.4s ease-out infinite;
  pointer-events: none;
}
@keyframes ring {
  0%   { transform: scale(0.98); opacity: 1; }
  70%  { transform: scale(1.12); opacity: 0; }
  100% { transform: scale(1.12); opacity: 0; }
}
.call__side { display: grid; gap: 18px; }
.call__card {
  background: rgba(16, 18, 22, 0.09);
  border: 1.5px solid rgba(16, 18, 22, 0.35);
  border-radius: var(--radius);
  padding: 24px 26px;
}
.call__card h3 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 24px;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.call__card p { font-size: 16px; }
.call__card a { color: var(--ink); font-weight: 700; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--ink); border-top: 1px solid var(--line); padding-top: 70px; }
.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 50px;
}
.footer__tag { color: var(--muted); font-size: 14.5px; margin-top: 6px; }
.footer__col h4 {
  font-family: var(--font-mono);
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 14px;
}
.footer__col p { color: var(--muted); font-size: 15.5px; margin-bottom: 12px; }
.footer__col a { color: var(--paper); text-decoration: none; border-bottom: 1px solid var(--line); }
.footer__col a:hover { color: var(--yellow); border-color: var(--yellow); }
.footer__base {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  padding-top: 22px;
  padding-bottom: 26px;
  border-top: 1px solid var(--line);
}
.footer__base p { font-family: var(--font-mono); font-size: 12.5px; color: var(--muted); }
.footer__base a { color: var(--paper); }
.footer__base a:hover { color: var(--yellow); }

/* ============================================================
   REVEAL (JS adds .is-in)
   ============================================================ */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.is-in { opacity: 1; transform: none; }

/* hero load-in */
.hero__title .w { transform: translateY(110%); }
.hero__eyebrow, .hero__sub, .hero__cta { opacity: 0; transform: translateY(18px); }
body.is-loaded .hero__title .w { transform: none; transition: transform 0.9s cubic-bezier(0.16, 1, 0.3, 1); }
body.is-loaded .line:nth-child(1) .w:nth-child(1) { transition-delay: 0.05s; }
body.is-loaded .line:nth-child(1) .w:nth-child(2) { transition-delay: 0.13s; }
body.is-loaded .line:nth-child(2) .w:nth-child(1) { transition-delay: 0.21s; }
body.is-loaded .line:nth-child(2) .w:nth-child(2) { transition-delay: 0.29s; }
body.is-loaded .hero__eyebrow,
body.is-loaded .hero__sub,
body.is-loaded .hero__cta {
  opacity: 1; transform: none;
  transition: opacity 0.8s ease, transform 0.8s ease;
}
body.is-loaded .hero__eyebrow { transition-delay: 0.5s; }
body.is-loaded .hero__sub    { transition-delay: 0.62s; }
body.is-loaded .hero__cta    { transition-delay: 0.74s; }

/* underline draw on "working" */
.w--yellow::after {
  content: "";
  position: absolute;
  left: 2px; right: 4px; bottom: 4px;
  height: 6px;
  background: var(--yellow);
  transform: scaleX(0);
  transform-origin: left;
}
body.is-loaded .w--yellow::after {
  transform: scaleX(1);
  transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1) 1s;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1020px) {
  .svc-grid { grid-template-columns: repeat(2, 1fr); }
  .booking__types { grid-template-columns: repeat(2, 1fr); }
  .inspect__grid, .office__grid, .call__grid { grid-template-columns: 1fr; gap: 44px; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .office__grid .office__photo { order: -1; }
}

@media (max-width: 760px) {
  body { font-size: 16px; }
  .nav { gap: 16px; padding: 12px 18px; }
  .nav__links { display: none; }
  .nav__phone { display: none; }
  .nav__burger { display: block; margin-left: auto; }
  .section { padding: 76px 0; }
  .wrap { padding-left: 20px; padding-right: 20px; }
  .svc-grid { grid-template-columns: 1fr; }
  .booking { padding: 26px 20px; }
  .booking__types { grid-template-columns: 1fr; }
  .scope__cols { grid-template-columns: 1fr; gap: 14px; }
  .reviews__grid { grid-template-columns: 1fr; }
  .hero__scrollcue { display: none; }
  .eyebrow { font-size: 11px; letter-spacing: 0.16em; }
  .station-badge { right: 8px; bottom: -18px; }
  .hero__content { padding-bottom: 14vh; }
}

/* ============================================================
   REDUCED MOTION
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .hero__media img { animation: none; }
  .ticker__track { animation: none; flex-wrap: wrap; white-space: normal; width: auto; }
  .hero__scrollcue, .call__phone::before { animation: none; }
  .reveal, .hero__title .w, .hero__eyebrow, .hero__sub, .hero__cta { opacity: 1; transform: none; transition: none; }
  .w--yellow::after { transform: scaleX(1); transition: none; }
}
