/* ==========================================================================
   Good Boy Security — styles.css
   One-page site: index.html, plus privacy.html / thanks.html / 404.html.
   No build step, no dependencies. Plain CSS, edited by hand.

   NOTE: this file was rebuilt on 2026-08-17 when the site was cut to one
   page, so it no longer carries the older inline notes. Rules for the
   removed landing pages and the Check Your Street tool are gone.
   ========================================================================== */

/* ---------- Tokens ---------- */
:root {
  --cream: #faf5e9;
  --cream-2: #f3ecd9;
  --card: #fffdf6;
  --yellow: #f3c43c;
  --yellow-deep: #e3b32a;
  --gold-text: #8a6c10;
  --ink: #25241e;
  --ink-2: #3a382f;
  --muted: #5c5849;
  --line: #e6dec9;
  --line-dark: #c9c0a5;
  --dark-text: #f4efe2;
  --dark-muted: #b5af9c;
  --dark-line: #4a483d;
  --error: #a63d1c;
  --error-bg: #f8e9de;
  --error-text: #7c2d12;
  --radius: 20px;
  --radius-sm: 12px;
  --shadow: 0 10px 30px rgba(37, 36, 30, 0.08);
  --header-h: 64px;
  --font: "Archivo", system-ui, -apple-system, "Segoe UI", sans-serif;
}

/* ---------- Reset / base ---------- */
*,
::before,
::after {
  box-sizing: border-box;
  margin: 0;
}

html {
  scroll-padding-top: calc(var(--header-h) + 20px);
}

@media (prefers-reduced-motion: no-preference) {
  html {
    scroll-behavior: smooth;
  }
}

body {
  font-family: var(--font);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  padding-bottom: calc(76px + env(safe-area-inset-bottom));
}

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

[hidden] {
  display: none !important;
}

img {
  height: auto;
}

a {
  color: inherit;
}

button {
  font: inherit;
  color: inherit;
}

h1,
h2,
h3 {
  line-height: 1.1;
  font-weight: 800;
  letter-spacing: -0.015em;
  text-wrap: balance;
}

ul[class],
ol[class] {
  list-style: none;
  padding: 0;
}

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

/* ---------- Utilities ---------- */
.container {
  width: min(1160px, 100% - 2.5rem);
  margin-inline: auto;
}

.section {
  padding-block: clamp(3.5rem, 8vw, 6.25rem);
}

.eyebrow {
  display: block;
  margin-bottom: 0.9rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-text);
}

.marker {
  background: linear-gradient(to top, var(--yellow) 0 40%, transparent 40%);
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
  padding-inline: 0.06em;
}

/* visibly-empty placeholder token — real content goes here later */
.ph {
  color: var(--muted);
  border-bottom: 2px dashed var(--line-dark);
  font-style: normal;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: absolute;
  top: 0;
  left: -9999px;
  z-index: 100;
  padding: 0.8rem 1.2rem;
  background: var(--ink);
  color: var(--cream);
  font-weight: 700;
  text-decoration: none;
  border-radius: 0 0 var(--radius-sm) 0;
}

.skip-link:focus {
  left: 0;
}

.lead {
  max-width: 46ch;
  margin-bottom: 1.7rem;
  font-size: 1.05rem;
  color: var(--muted);
}

.card {
  background: var(--card);
  border: 1px solid rgba(37, 36, 30, 0.06);
  border-radius: var(--radius);
  padding: 1.6rem;
}

.mascot {
  width: min(240px, 70%);
  height: auto;
  margin-top: 2rem;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.6rem;
  border: 2px solid transparent;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.95rem;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: background-color 0.15s, color 0.15s, transform 0.15s;
}

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

.btn-dark {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--cream);
}

.btn-dark:hover {
  background: var(--ink-2);
  border-color: var(--ink-2);
}

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

.btn-outline:hover {
  background: rgba(37, 36, 30, 0.07);
}

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

.btn-yellow:hover {
  background: var(--yellow-deep);
  border-color: var(--yellow-deep);
}

.btn-sm {
  padding: 0.6rem 1.15rem;
  font-size: 0.875rem;
}

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.btn-note {
  margin-top: 0.9rem;
  font-size: 0.85rem;
  color: var(--muted);
}

/* ---------- Icons ---------- */
.icon {
  flex: 0 0 auto;
  width: 1em;
  height: 1em;
  stroke-width: 1.8;
}

/* ---------- Brand lockup ---------- */
.brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  line-height: 1;
}

.brand img {
  height: 50px;
  width: auto;
}

/* ---------- Announcement ticker ---------- */
.topbar {
  background: var(--ink);
  color: var(--dark-text);
}

.topbar ul {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  min-height: 40px;
  padding: 0.5rem 0;
  list-style: none;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-align: center;
}

.topbar li {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.topbar li + li::before {
  content: "";
  width: 6px;
  height: 6px;
  background: var(--yellow);
  transform: rotate(45deg);
}

/* only the first two claims fit on a narrow phone */
.topbar li:nth-child(n+3) {
  display: none;
}

@media (min-width: 760px) {
  .topbar li:nth-child(n+3) {
    display: inline-flex;
  }
}

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--cream);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 1rem;
  min-height: var(--header-h);
  position: relative;
}

.site-nav {
  display: none;
}

.site-nav ul {
  display: flex;
  gap: 1.7rem;
  list-style: none;
  padding: 0;
}

.site-nav a {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--ink-2);
  text-decoration: none;
}

.site-nav a:hover {
  text-decoration: underline 3px var(--yellow);
  text-underline-offset: 6px;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  margin-left: auto;
}

/* Tap targets: WCAG 2.2 AA wants >=24x24 CSS px; calls are the main
   conversion here, so the header phone gets a comfortable 44px. */
.header-phone {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  min-height: 44px;
  padding-inline: 0.35rem;
  margin-inline: -0.35rem;
  font-size: 0.95rem;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
}

.header-phone .icon {
  width: 19px;
  height: 19px;
}

.header-phone .num {
  display: none;
}

.header-cta {
  display: none;
}

.nav-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  padding: 0;
  background: none;
  border: 2px solid var(--ink);
  border-radius: 10px;
  cursor: pointer;
}

.nav-toggle .icon {
  width: 20px;
  height: 20px;
}

.nav-toggle .icon-close {
  display: none;
}

/* .nav-open is toggled on .site-header by js/main.js */
.nav-open .site-nav {
  display: block;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  padding: 0.75rem 0.25rem 1.25rem;
  background: var(--cream);
  border-bottom: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.nav-open .site-nav ul {
  flex-direction: column;
  gap: 0.1rem;
}

.nav-open .site-nav a {
  display: block;
  padding: 0.65rem 0.5rem;
  font-size: 1.05rem;
}

.nav-open .nav-toggle .icon-menu {
  display: none;
}

.nav-open .nav-toggle .icon-close {
  display: block;
}

@media (min-width: 560px) {
  .header-phone .num {
    display: inline;
  }
}

@media (min-width: 980px) {
  :root {
    --header-h: 78px;
  }

  .site-nav {
    display: block;
    margin-inline: auto;
  }

  .header-cta {
    display: inline-flex;
  }

  .nav-toggle {
    display: none;
  }

  .header-actions {
    margin-left: 0;
  }

  .brand img {
    height: 62px;
  }
}

/* ---------- Split hero (full-bleed) ---------- */
.hero-split {
  display: grid;
  background: var(--cream);
}

.hero-split-copy {
  padding-block: clamp(2.25rem, 6vw, 4.5rem);
  padding-inline: max(1.25rem, -580px + 50vw) 1.25rem;
}

.hero-split-copy h1 {
  font-size: clamp(2.6rem, 5.8vw, 4.6rem);
  line-height: 1.02;
  letter-spacing: -0.025em;
  margin-bottom: 1.15rem;
  max-width: 15ch;
}

.hero-split-copy .lead {
  margin-bottom: 1.6rem;
}

.hero-split-media {
  display: grid;
  place-items: center;
  padding: 0;
  background: var(--ink);
  min-height: 300px;
  overflow: hidden;
}

.hero-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 42%;
}

@media (min-width: 940px) {
  .hero-split {
    grid-template-columns: 1.04fr 0.96fr;
    align-items: stretch;
  }

  .hero-split-media {
    min-height: 520px;
  }
}

/* ---------- Card stack / panels ---------- */
.stack {
  display: grid;
  gap: clamp(0.9rem, 2vw, 1.4rem);
  padding-block: clamp(1.25rem, 3vw, 2rem) clamp(3rem, 7vw, 5rem);
}

.panel {
  padding: clamp(1.6rem, 4.5vw, 3.25rem);
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: clamp(20px, 2.6vw, 30px);
  box-shadow: 0 6px 20px rgba(37, 36, 30, 0.05);
}

.panel-dark {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--dark-text);
}

.panel-dark .eyebrow {
  color: var(--yellow);
}

.panel > .eyebrow {
  margin-bottom: 0.7rem;
}

.panel-title {
  font-size: clamp(1.6rem, 3.2vw, 2.3rem);
  margin-bottom: 0.8rem;
}

.panel-intro {
  max-width: 52ch;
  color: var(--muted);
}

.panel-dark .panel-intro {
  color: var(--dark-muted);
}

.panel-head {
  margin-bottom: clamp(1.75rem, 4vw, 2.75rem);
}

/* sections that sit on the page background rather than in a card */
.open-section {
  padding-block: clamp(2.5rem, 6vw, 4.5rem);
  border-top: 1px solid var(--line);
}

.open-section > .panel-head {
  margin-bottom: clamp(2rem, 4.5vw, 3rem);
}

.open-section .panel-title {
  font-size: clamp(2rem, 4vw, 3rem);
  letter-spacing: -0.02em;
  max-width: 18ch;
}

.open-section .panel-intro {
  font-size: 1.02rem;
}

/* ---------- Package cards (photo + overlapping panel) ---------- */
.pkg-grid {
  display: grid;
  gap: clamp(1rem, 2.2vw, 1.5rem);
}

.pkg-card {
  position: relative;
  display: grid;
  border-radius: 22px;
  overflow: hidden;
  background: var(--ink);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.pkg-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 34px rgba(37, 36, 30, 0.18);
}

.pkg-card:focus-within {
  outline: 3px solid var(--ink);
  outline-offset: 3px;
}

/* photo and body share one grid cell — the body sits at the bottom,
   overlapping the photo */
.pkg-media,
.pkg-body {
  grid-area: 1 / 1;
}

.pkg-media {
  display: grid;
  place-items: center;
  aspect-ratio: 4 / 3;
  background: var(--ink);
}

.pkg-media .icon {
  width: clamp(64px, 12vw, 92px);
  height: clamp(64px, 12vw, 92px);
  color: var(--yellow);
  stroke-width: 1.3;
}

.pkg-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pkg-body {
  align-self: end;
  margin: clamp(0.85rem, 2vw, 1.35rem);
  padding: clamp(1.1rem, 2.4vw, 1.6rem);
  background: var(--card);
  border-radius: 15px;
}

.pkg-body h3 {
  font-size: clamp(1.2rem, 2.4vw, 1.5rem);
  margin-bottom: 0.45rem;
}

.pkg-body h3 a {
  text-decoration: none;
}

/* stretched link: the whole card is the hit area */
.pkg-body h3 a::after {
  content: "";
  position: absolute;
  inset: 0;
}

.pkg-body h3 a:focus-visible {
  outline: none;
}

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

.pkg-more {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 0.9rem;
  font-size: 0.88rem;
  font-weight: 700;
}

.pkg-more .icon {
  width: 15px;
  height: 15px;
  transition: transform 0.15s ease;
}

.pkg-card:hover .pkg-more .icon {
  transform: translateX(3px);
}

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

/* ---------- Bento: how it works ---------- */
.bento {
  display: grid;
  gap: clamp(0.9rem, 2vw, 1.4rem);
}

.bento-cell {
  padding: clamp(1.5rem, 3.2vw, 2.25rem);
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: clamp(18px, 2.2vw, 24px);
}

.bento-intro {
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: none;
  border: none;
  padding-inline: 0;
}

.bento-intro .panel-title {
  font-size: clamp(2rem, 4vw, 3rem);
  letter-spacing: -0.02em;
  margin-bottom: 0;
}

.bento-intro .eyebrow::after {
  content: "";
  display: block;
  width: 44px;
  height: 4px;
  margin-top: 0.85rem;
  background: var(--yellow);
  border-radius: 2px;
}

.bento-step {
  display: flex;
  flex-direction: column;
  min-height: 230px;
}

.bento-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: auto;
}

.bento-badge {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  background: var(--yellow);
  border-radius: 50%;
}

.bento-badge .icon {
  width: 26px;
  height: 26px;
  color: var(--ink);
}

.bento-num {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}

.bento-step h3 {
  margin-top: 1.75rem;
  margin-bottom: 0.45rem;
  font-size: 1.15rem;
}

.bento-step p {
  color: var(--muted);
}

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

@media (min-width: 1060px) {
  .bento {
    grid-template-columns: repeat(4, 1fr);
  }

  .bento-intro {
    grid-column: span 1;
  }
}

/* ---------- The Good Boy Standard (dark panel) ---------- */
.why-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 2.25rem 1.5rem;
  text-align: center;
}

.why-grid .icon {
  width: 40px;
  height: 40px;
  margin: 0 auto 0.9rem;
  color: var(--yellow);
}

.why-grid h3 {
  font-size: 1.05rem;
  margin-bottom: 0.45rem;
}

.why-grid p {
  font-size: 0.92rem;
  color: var(--dark-muted);
}

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

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

@media (min-width: 1100px) {
  .why-grid {
    grid-template-columns: repeat(5, 1fr);
  }
}

/* ---------- Booking + quote form ---------- */
.panel-book {
  display: grid;
  gap: 2.25rem;
  align-items: center;
}

/* inside the booking panel the form is already on a card, so drop the chrome */
.panel-book .quote-card {
  padding: 0;
  background: none;
  border: none;
  box-shadow: none;
}

.panel-book .mascot {
  margin-top: 1.5rem;
}

@media (min-width: 940px) {
  .panel-book {
    grid-template-columns: 0.95fr 1.05fr;
    gap: 3.5rem;
  }
}

/* the standalone booking section used by privacy.html */
.booking-grid {
  display: grid;
  gap: 2.75rem;
  align-items: center;
}

.booking-intro h2 {
  font-size: clamp(1.75rem, 3.6vw, 2.4rem);
  margin-bottom: 0.9rem;
}

.booking-intro p {
  color: var(--muted);
  max-width: 40ch;
}

.booking-intro p + p {
  margin-top: 0.65rem;
}

.booking-intro .mascot {
  margin-top: 1.75rem;
}

@media (min-width: 980px) {
  .booking-grid {
    grid-template-columns: 0.9fr 1.1fr;
    gap: 4rem;
  }
}

.quote-card {
  padding: clamp(1.5rem, 3.5vw, 2.25rem);
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
}

.field {
  margin-bottom: 1.05rem;
}

.field label {
  display: block;
  margin-bottom: 0.4rem;
  font-size: 0.88rem;
  font-weight: 700;
}

.field input {
  width: 100%;
  padding: 0.8rem 0.95rem;
  background: #fff;
  border: 1.5px solid var(--line-dark);
  border-radius: var(--radius-sm);
  font: inherit;
  font-size: 1rem;
  color: var(--ink);
}

.field input::placeholder {
  color: #a49e8b;
}

.field input:focus-visible {
  border-color: var(--ink);
}

.quote-form .btn {
  width: 100%;
  margin-top: 0.35rem;
}

/* set by js/main.js while the form is posting */
.quote-form button[aria-busy="true"] {
  opacity: 0.75;
  cursor: progress;
}

.form-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  margin-top: 0.95rem;
  font-size: 0.82rem;
  color: var(--muted);
}

.form-note .icon {
  width: 14px;
  height: 14px;
}

.form-privacy {
  margin-top: 0.55rem;
  font-size: 0.78rem;
  color: var(--muted);
  text-align: center;
}

/* ---------- Simple page hero (privacy / thanks / 404) ---------- */
.page-hero {
  padding-block: clamp(2.5rem, 6vw, 4.25rem) 0.5rem;
  text-align: center;
}

.page-hero .container {
  max-width: 780px;
}

.page-hero h1 {
  font-size: clamp(2.1rem, 4.6vw, 3.2rem);
  margin-bottom: 1rem;
}

.page-hero .lead {
  margin-inline: auto;
  margin-bottom: 0;
}

.page-hero .btn-row {
  justify-content: center;
  margin-top: 1.6rem;
}

/* ---------- Prose (privacy policy) ---------- */
.prose {
  max-width: 68ch;
  margin-inline: auto;
}

.prose h2 {
  margin: 2.25rem 0 0.6rem;
  font-size: 1.25rem;
}

.prose p {
  margin-bottom: 1rem;
  color: var(--ink-2);
}

.prose .updated {
  margin: 0.25rem 0 1.5rem;
  font-size: 0.9rem;
  color: var(--muted);
}

/* ---------- Footer ---------- */
.site-footer {
  padding: clamp(2.75rem, 6vw, 4rem) 0 1.75rem;
  border-top: 1px solid var(--line);
}

.footer-grid {
  display: grid;
  gap: 2.25rem;
}

.footer-brand .brand {
  margin-bottom: 0.9rem;
}

.footer-brand .brand img {
  width: 92px;
  height: 92px;
}

.footer-brand p {
  max-width: 30ch;
  margin-bottom: 1.1rem;
  font-size: 0.9rem;
  color: var(--muted);
}

.footer-brand strong {
  display: block;
  margin-bottom: 0.2rem;
  color: var(--ink);
}

.footer-col h3 {
  margin-bottom: 0.9rem;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

/* Footer links measured 15-18px tall — too small to hit on a phone.
   Padding grows the target; the reduced row gap keeps spacing as designed. */
.footer-col ul {
  display: grid;
  gap: 0.15rem;
  list-style: none;
  padding: 0;
}

.footer-col a {
  font-size: 0.93rem;
  color: var(--muted);
  text-decoration: none;
}

.footer-col a:hover {
  color: var(--ink);
  text-decoration: underline 2px var(--yellow);
  text-underline-offset: 4px;
}

.footer-col li {
  font-size: 0.93rem;
  color: var(--muted);
}

.footer-col li a,
.footer-bottom a {
  display: inline-block;
  padding-block: 0.4rem;
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem 1.75rem;
  justify-content: space-between;
  margin-top: 2.5rem;
  padding-top: 1.4rem;
  border-top: 1px solid var(--line);
  font-size: 0.82rem;
  color: var(--muted);
}

.footer-bottom a {
  color: inherit;
}

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

@media (min-width: 1000px) {
  .footer-grid {
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 2rem;
  }
}

/* ---------- Fixed tap-to-call bar (mobile only) ---------- */
.callbar {
  position: fixed;
  inset: auto 0 0;
  z-index: 60;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.6rem;
  padding: 0.65rem 0.9rem calc(0.65rem + env(safe-area-inset-bottom));
  background: var(--cream);
  border-top: 1px solid var(--line);
  box-shadow: 0 -8px 24px rgba(37, 36, 30, 0.12);
}

.callbar .btn {
  width: 100%;
  padding: 0.8rem 0.5rem;
  font-size: 0.92rem;
}

@media (min-width: 768px) {
  .callbar {
    display: none;
  }

  body {
    padding-bottom: 0;
  }
}

/* ---------- Focus visibility ---------- */
:focus-visible {
  outline: 3px solid var(--ink);
  outline-offset: 3px;
  border-radius: 4px;
}

.btn-dark:focus-visible,
.callbar .btn-dark:focus-visible {
  outline-color: var(--yellow);
}

/* ---------- Mobile type sizes ----------
   Body copy measured 14.7-15.7px on mobile; 16px is the readability floor.
   Desktop keeps the denser sizes the mockup was drawn at. */
@media (max-width: 767px) {
  .why-grid p,
  .footer-col a,
  .footer-col li {
    font-size: 1rem;
  }

  .form-note {
    font-size: 0.88rem;
  }
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  *,
  ::before,
  ::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  html {
    scroll-behavior: auto;
  }
}
