/* Mr. Junk — forest green + yellow brand palette (matches flyer artwork) */

:root {
  --bg: #071812;
  --bg-muted: #0c221a;
  --surface: #10261f;
  --text: #f8fafc;
  --text-muted: #9fb5aa;
  --brand-yellow: #ffd52e;
  --brand-yellow-muted: rgba(255, 213, 46, 0.85);
  --brand-yellow-soft: rgba(255, 213, 46, 0.14);
  --accent: #0a5c38;
  --accent-hover: #0d7345;
  --accent-soft: rgba(10, 92, 56, 0.28);
  --accent-ink: #ffffff;
  --wa-green: #25d366;
  --wa-green-hover: #1ebe57;
  --wa-green-soft: rgba(37, 211, 102, 0.16);
  --call-ink: #052818;
  --border: rgba(255, 255, 255, 0.08);
  --header-bar-bg: rgba(7, 24, 18, 0.94);
  --radius: 4px;
  --radius-lg: 8px;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.55);
  --font: "DM Sans", system-ui, -apple-system, sans-serif;
  --font-display: "Oswald", system-ui, sans-serif;
  --wrap: min(1180px, calc(100% - 2rem));
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  overflow-x: hidden;
}

body {
  margin: 0;
  font-family: var(--font);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
}

/* iOS Safari: freeze backdrop scroll when the drawer is open (see main.js lockBodyForNav) */
html.nav-scroll-lock {
  overflow: hidden;
}

html.nav-scroll-lock body {
  position: fixed;
  left: 0;
  right: 0;
  width: 100%;
  overflow: hidden;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: auto;
  padding: 0.75rem 1rem;
  background: var(--brand-yellow);
  color: #052818;
  font-weight: 600;
  border-radius: var(--radius);
  z-index: 200;
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
}

.wrap {
  width: var(--wrap);
  margin-inline: auto;
}

.nowrap {
  white-space: nowrap;
}

/* Fixed header — transparent over hero, solid after scroll */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition:
    background 0.35s ease,
    border-color 0.35s ease,
    backdrop-filter 0.35s ease;
}

.site-header.site-header--solid {
  background: var(--header-bar-bg);
  border-bottom-color: var(--border);
  backdrop-filter: blur(14px);
}

.nav-backdrop {
  display: none;
}

.site-header__inner {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 0;
  position: relative;
  flex-wrap: wrap;
  z-index: 3;
}

.logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  color: var(--text);
  z-index: 2;
}

.logo__wordmark {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.125rem;
  line-height: 1.1;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.logo__name {
  color: var(--text);
}

.logo__accent {
  color: var(--brand-yellow);
}

.logo__tail {
  color: var(--text-muted);
  font-weight: 500;
}

.nav {
  display: flex;
  gap: clamp(1rem, 3vw, 2.25rem);
  flex-wrap: wrap;
  justify-content: center;
  margin: 0;
  padding: 0;
  list-style: none;
}

@media (min-width: 900px) {
  .nav-backdrop {
    display: none !important;
  }

  .nav__book-mobile {
    display: none !important;
  }

  .nav__label {
    display: none !important;
  }

  .btn--nav-cta-desktop {
    display: inline-flex !important;
  }

  .nav {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
  }
}

.nav a {
  font-family: var(--font-display);
  color: rgba(241, 245, 249, 0.82);
  text-decoration: none;
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: color 0.15s ease;
}

.nav a:hover {
  color: var(--text);
}

.site-header__actions {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  flex-shrink: 0;
  margin-left: auto;
  z-index: 2;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 48px;
  height: 48px;
  padding: 0;
  border: none;
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
  cursor: pointer;
  border-radius: var(--radius);
  transition: background 0.15s ease;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}

.nav-toggle:hover {
  background: rgba(255, 255, 255, 0.1);
}

.nav-toggle:focus-visible {
  outline: 2px solid var(--brand-yellow);
  outline-offset: 2px;
}

.nav-toggle__bar {
  display: block;
  width: 20px;
  height: 2px;
  background: currentColor;
  border-radius: 1px;
  transition:
    transform 0.2s ease,
    opacity 0.2s ease;
}

.site-header.nav-open .nav-toggle__bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.site-header.nav-open .nav-toggle__bar:nth-child(2) {
  opacity: 0;
}

.site-header.nav-open .nav-toggle__bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.btn--nav-cta {
  margin-left: 0;
  z-index: 2;
}

/* Buttons — rectangular / industrial */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 0.72rem 1.35rem;
  border-radius: var(--radius);
  font-family: var(--font-display);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  border: 2px solid transparent;
  cursor: pointer;
  transition:
    background 0.15s ease,
    border-color 0.15s ease,
    color 0.15s ease,
    transform 0.1s ease;
}

.btn:active {
  transform: translateY(1px);
}

.btn--call {
  background: var(--brand-yellow);
  color: var(--call-ink);
}

.btn--call:hover {
  background: #ffe066;
}

.btn--outline {
  background: transparent;
  border-color: var(--wa-green);
  color: var(--wa-green);
}

.btn--outline:hover {
  background: var(--wa-green-soft);
  border-color: var(--wa-green-hover);
  color: var(--wa-green);
}

.btn--ghost {
  background: rgba(255, 255, 255, 0.05);
  border-color: var(--border);
  color: var(--text);
}

.btn--ghost:hover {
  background: rgba(255, 255, 255, 0.1);
}

.btn--google {
  background: #fff;
  border-color: rgba(255, 255, 255, 0.15);
  color: #111;
}

.btn--google:hover {
  background: #e2e8f0;
}

.btn--sm {
  padding: 0.55rem 1rem;
  font-size: 0.75rem;
}

/* Hero */
.hero {
  position: relative;
  min-height: min(100vh, 900px);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: clamp(6rem, 14vw, 9rem) 0 clamp(2.5rem, 6vw, 4rem);
  overflow: hidden;
}

.hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-color: var(--bg-muted);
  overflow: hidden;
}

/* Photo lives here — .hero__overlay is only the tint on top */
.hero__media-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 62% 92%;
  display: block;
}

.hero__gridlines {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: 0.4;
  background-image: repeating-linear-gradient(
    90deg,
    transparent,
    transparent calc(100% / 7 - 1px),
    rgba(255, 255, 255, 0.045) calc(100% / 7 - 1px),
    rgba(255, 255, 255, 0.045) calc(100% / 7)
  );
}

.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  /* No image here — photo is .hero__media-img. Bottom stays lighter so the picture shows through. */
  background:
    linear-gradient(
      180deg,
      rgba(7, 24, 18, 0.78) 0%,
      rgba(7, 24, 18, 0.34) 40%,
      rgba(7, 24, 18, 0.52) 72%,
      rgba(7, 24, 18, 0.68) 100%
    ),
    radial-gradient(ellipse 90% 60% at 50% 18%, transparent 0%, rgba(7, 24, 18, 0.52) 100%);
}

.hero__layout {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 6vw, 4rem);
  flex: 1;
  justify-content: center;
  padding-top: clamp(2rem, 8vh, 5rem);
}

.hero__centerpiece {
  text-align: center;
}

.hero__eyebrow {
  margin: 0 0 1rem;
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(241, 245, 249, 0.65);
}

.hero__mega {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2rem, 9.5vw, 6.5rem);
  line-height: 0.95;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--text);
}

.hero__mega-line {
  display: block;
}

.hero__mega-line--accent {
  color: var(--brand-yellow);
  text-shadow: 0 0 52px rgba(255, 213, 46, 0.35);
}

.hero__bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1.35rem;
}

.hero__strap {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(0.9375rem, 2vw, 1.125rem);
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  line-height: 1.45;
  color: rgba(241, 245, 249, 0.88);
  max-width: 36ch;
}

.hero__actions {
  display: flex;
  justify-content: center;
  width: 100%;
}

.hero__actions .btn {
  min-height: 52px;
  padding: 0.88rem 1.85rem;
  font-size: 0.875rem;
  letter-spacing: 0.14em;
  width: auto;
  max-width: min(100%, 22rem);
}

/* Sections */
.section {
  padding: clamp(3.25rem, 10vw, 6rem) 0;
}

.section--muted {
  background: var(--bg-muted);
}

.section__title {
  margin: 0 0 0.85rem;
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  line-height: 1.15;
}

.section__subtitle {
  margin: 0 0 2rem;
  color: var(--text-muted);
  max-width: 54ch;
  font-size: 1.02rem;
}

.intro__text {
  max-width: 65ch;
}

.intro__text p {
  margin: 0 0 1rem;
  font-size: 1.02rem;
}

.intro__text p:last-child {
  margin-bottom: 0;
}

/* Cards */
.cards {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 640px) {
  .cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 900px) {
  .cards {
    grid-template-columns: repeat(3, 1fr);
  }
}

.card {
  background: var(--surface);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.35);
}

.card__img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.card__title {
  margin: 1rem 1.25rem 0.5rem;
  font-family: var(--font-display);
  font-size: 1.0625rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.card p {
  margin: 0 1.25rem 1.25rem;
  font-size: 0.9375rem;
  color: var(--text-muted);
}

/* Why */
.why__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 720px) {
  .why__list {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }
}

.why__list li {
  padding: 1.5rem;
  background: var(--surface);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
}

.why__list strong {
  display: block;
  margin-bottom: 0.55rem;
  font-family: var(--font-display);
  font-size: 0.9375rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--brand-yellow-muted);
}

.why__list span {
  font-size: 0.9375rem;
  color: var(--text-muted);
}

.reviews-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 2rem;
  justify-content: center;
}

@media (min-width: 640px) {
  .reviews-cta {
    justify-content: flex-start;
  }
}

/* Google reviews layout */
.google-reviews-layout {
  display: grid;
  gap: 1.5rem;
  align-items: stretch;
}

@media (min-width: 900px) {
  .google-reviews-layout {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
}

.google-reviews-map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  aspect-ratio: 4 / 3;
  background: var(--surface);
}

.google-reviews-map iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

@media (min-width: 900px) {
  .google-reviews-map {
    aspect-ratio: unset;
    min-height: 340px;
    height: 100%;
    display: flex;
    flex-direction: column;
  }

  .google-reviews-map iframe {
    flex: 1 1 auto;
    min-height: 280px;
    height: auto;
  }
}

.google-reviews-stack {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.google-reviews-feed {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.g-review-card {
  margin: 0;
  padding: 1.25rem;
  background: var(--surface);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
}

.g-review-card__stars {
  margin: 0 0 0.75rem;
  font-size: 0.9375rem;
  letter-spacing: 0.06em;
  color: var(--brand-yellow);
}

.g-review-card__quote {
  margin: 0;
}

.g-review-card__quote p {
  margin: 0 0 0.65rem;
  font-style: italic;
  color: var(--text-muted);
  font-size: 0.9375rem;
  overflow-wrap: anywhere;
}

.g-review-card__quote cite {
  font-size: 0.8125rem;
  font-style: normal;
  color: var(--text);
  font-weight: 600;
}

/* Area */
.split__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.hours {
  list-style: none;
  margin: 1.5rem 0 0;
  padding: 0;
  max-width: 400px;
}

.hours li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.65rem 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.9375rem;
}

.hours li span:last-child {
  color: var(--text-muted);
}

.footer {
  padding: 3rem 0;
  border-top: 1px solid var(--border);
  background: var(--bg-muted);
}

.footer__inner {
  display: grid;
  gap: 1.25rem;
  text-align: center;
}

@media (min-width: 640px) {
  .footer__inner {
    text-align: left;
    grid-template-columns: 1fr auto;
    align-items: start;
  }

  .footer__copy {
    grid-column: 1 / -1;
  }
}

.footer__brand {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer__tag {
  margin: 0.45rem 0 0;
  color: var(--text-muted);
  font-size: 0.9375rem;
}

.footer__links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

@media (min-width: 640px) {
  .footer__links {
    justify-content: flex-end;
  }
}

.footer__links a {
  font-family: var(--font-display);
  font-size: 0.8125rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--brand-yellow);
  font-weight: 600;
  text-decoration: none;
}

.footer__links a:hover {
  color: #ffe066;
  text-decoration: underline;
}

.footer__copy {
  margin: 0;
  font-size: 0.8125rem;
  color: var(--text-muted);
}

/* WhatsApp FAB */
.wa-fab {
  position: fixed;
  right: max(1rem, env(safe-area-inset-right));
  bottom: max(1rem, env(safe-area-inset-bottom));
  z-index: 120;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 28px rgba(37, 211, 102, 0.45);
  text-decoration: none;
  transition:
    transform 0.15s ease,
    box-shadow 0.15s ease;
  animation: wa-pulse 2.5s ease-in-out infinite;
}

.wa-fab:hover {
  transform: scale(1.06);
  box-shadow: 0 10px 32px rgba(37, 211, 102, 0.55);
}

.wa-fab:active {
  transform: scale(0.96);
}

.wa-fab__icon {
  width: 28px;
  height: 28px;
}

@keyframes wa-pulse {
  0%,
  100% {
    box-shadow: 0 8px 28px rgba(37, 211, 102, 0.45);
  }
  50% {
    box-shadow: 0 8px 36px rgba(37, 211, 102, 0.65);
  }
}

/* ——— Mobile & touch-friendly ——— */
@media (max-width: 899px) {
  :root {
    --wrap: min(1180px, calc(100% - 1.25rem));
  }

  .wrap {
    padding-left: max(0px, env(safe-area-inset-left, 0px));
    padding-right: max(0px, env(safe-area-inset-right, 0px));
  }

  .btn--nav-cta-desktop {
    display: none !important;
  }

  .nav-backdrop {
    display: block;
    position: fixed;
    inset: 0;
    z-index: 1;
    margin: 0;
    padding: 0;
    border: none;
    background: rgba(5, 8, 12, 0.62);
    backdrop-filter: blur(5px);
    opacity: 0;
    visibility: hidden;
    transition:
      opacity 0.28s ease,
      visibility 0.28s ease;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
  }

  .site-header.nav-open .nav-backdrop {
    opacity: 1;
    visibility: visible;
  }

  .site-header.nav-open {
    background: transparent;
    border-bottom-color: transparent;
    backdrop-filter: none;
  }

  .site-header__inner {
    flex-wrap: nowrap;
    align-items: center;
    padding: 0.75rem 0;
  }

  .site-header.nav-open .site-header__inner {
    background: rgba(7, 24, 18, 0.97);
    border-radius: var(--radius-lg);
    padding: 0.65rem max(0.85rem, env(safe-area-inset-right, 0px)) 0.65rem
      max(0.85rem, env(safe-area-inset-left, 0px));
  }

  .site-header__actions {
    flex-shrink: 0;
    gap: 0;
  }

  .logo {
    flex: 1;
    min-width: 0;
    padding-right: 0.25rem;
  }

  .logo__wordmark {
    font-size: clamp(0.75rem, 3.6vw, 1.125rem);
    line-height: 1.15;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .site-header .nav {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: min(19rem, calc(100vw - 2rem));
    max-width: 100vw;
    margin: 0;
    padding: max(5.25rem, calc(env(safe-area-inset-top, 0px) + 4.75rem))
      max(1.25rem, env(safe-area-inset-right, 0px)) max(1.25rem, env(safe-area-inset-bottom, 0px)) 1.25rem;
    background: var(--surface);
    border-left: 1px solid var(--border);
    box-shadow: -16px 0 48px rgba(0, 0, 0, 0.55);
    gap: 0.5rem;
    overflow-x: hidden;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior-y: contain;
    z-index: 2;
    transform: translateX(100%);
    visibility: hidden;
    pointer-events: none;
    transition:
      transform 0.32s cubic-bezier(0.32, 0.72, 0, 1),
      visibility 0.32s;
  }

  .site-header.nav-open .nav {
    transform: translateX(0);
    visibility: visible;
    pointer-events: auto;
  }

  .nav__book-mobile {
    order: -2;
    width: 100%;
    min-height: 52px;
    margin-bottom: 0.25rem;
    font-size: 0.875rem;
    letter-spacing: 0.14em;
    box-shadow: 0 6px 28px rgba(255, 213, 46, 0.12);
  }

  .nav__label {
    order: -1;
    display: block;
    font-family: var(--font-display);
    font-size: 0.6875rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin: 0.35rem 0 0.25rem;
    padding-left: 0.2rem;
  }

  .site-header .nav > a:not(.nav__book) {
    display: flex;
    align-items: center;
    min-height: 52px;
    padding: 0.65rem 1rem;
    margin: 0;
    font-size: 0.9375rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.06);
    transition:
      background 0.15s ease,
      border-color 0.15s ease;
  }

  .site-header .nav > a:not(.nav__book):hover,
  .site-header .nav > a:not(.nav__book):focus-visible {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.12);
    outline: none;
  }

  .hero {
    min-height: min(100vh, 920px);
    min-height: min(-webkit-fill-available, 920px);
    min-height: min(100dvh, 920px);
    padding-top: clamp(5rem, 18vw, 8rem);
    padding-bottom: clamp(1.75rem, 5vw, 3rem);
  }

  .hero__layout {
    padding-top: 1rem;
    gap: clamp(1.5rem, 5vw, 3rem);
  }

  .hero__eyebrow {
    font-size: 0.6875rem;
    letter-spacing: 0.14em;
    line-height: 1.5;
    padding: 0 0.25rem;
  }

  .hero__strap {
    max-width: min(36ch, 100%);
    letter-spacing: 0.1em;
  }

  .section__subtitle {
    font-size: 0.98rem;
  }

  .split__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .split__actions .btn {
    width: 100%;
    min-height: 48px;
  }

  .reviews-cta {
    justify-content: stretch;
  }

  .reviews-cta .btn {
    width: 100%;
    max-width: none;
    min-height: 48px;
  }

  .hours li {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.25rem;
    padding: 0.85rem 0;
  }

  .footer__links {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
  }

  .footer__links a {
    justify-content: center;
    min-height: 48px;
    padding: 0.75rem 1rem;
    border-bottom: 1px solid var(--border);
  }

  .footer__links a:last-child {
    border-bottom: none;
  }

  .google-reviews-map {
    aspect-ratio: 16 / 11;
    min-height: 200px;
  }
}

@media (max-width: 380px) {
  .hero .nowrap {
    white-space: normal;
  }

  .btn--sm {
    padding: 0.5rem 0.65rem;
    font-size: 0.6875rem;
    letter-spacing: 0.08em;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .wa-fab {
    animation: none;
  }

  .btn:active {
    transform: none;
  }

  .site-header .nav,
  .nav-backdrop {
    transition: none !important;
  }

  .site-header.nav-open .nav-toggle__bar:nth-child(1),
  .site-header.nav-open .nav-toggle__bar:nth-child(3) {
    transition: none;
  }
}
