:root {
  --black: #080808;
  --charcoal: #181818;
  --asphalt: #292929;
  --white: #ffffff;
  --off-white: #f4f4f1;
  --red: #c8202f;
  --dark-red: #8f111a;
  --steel: #a7a9ac;
  --line: rgba(255, 255, 255, 0.14);
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.2);
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  max-width: 100%;
  color: var(--black);
  background: var(--off-white);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.55;
  overflow-x: clip;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

.hero-grid > *,
.intro-grid > *,
.feature-grid > *,
.service-detail-grid > *,
.prep-grid > *,
.about-story-grid > *,
.contact-layout > *,
.footer-main > * {
  min-width: 0;
}

a {
  color: inherit;
}

.skip-link {
  position: fixed;
  top: 0;
  left: 1rem;
  z-index: 1000;
  padding: 0.8rem 1rem;
  color: var(--white);
  background: var(--red);
  transform: translateY(-120%);
}

.skip-link:focus {
  transform: translateY(0);
}

.preview-banner {
  padding: 0.55rem 1rem;
  color: var(--white);
  background: var(--red);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-align: center;
  text-transform: uppercase;
}

.site-header {
  position: relative;
  z-index: 100;
  color: var(--white);
  background: var(--black);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  width: min(calc(100% - 2rem), var(--max));
  min-height: 84px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  color: var(--white);
  text-decoration: none;
}

.brand-mark {
  position: relative;
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  border: 2px solid var(--white);
  transform: skewX(-8deg);
  overflow: hidden;
}

.brand-mark::before,
.brand-mark::after {
  content: "";
  position: absolute;
  background: var(--red);
}

.brand-mark::before {
  inset: 0 50% 50% 0;
}

.brand-mark::after {
  inset: 50% 0 0 50%;
}

.brand-copy {
  display: grid;
  line-height: 1;
}

.brand-copy strong {
  font-size: 1.05rem;
  font-style: italic;
  letter-spacing: 0.05em;
}

.brand-copy span {
  margin-top: 0.28rem;
  color: var(--steel);
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 42px;
  padding: 0;
  color: var(--white);
  background: transparent;
  border: 1px solid var(--line);
}

.nav-toggle span,
.nav-toggle::before,
.nav-toggle::after {
  content: "";
  display: block;
  width: 21px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

.nav-toggle[aria-expanded="true"] span {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"]::before {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"]::after {
  transform: translateY(-7px) rotate(-45deg);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 0.2rem;
}

.site-nav a {
  padding: 0.7rem 0.85rem;
  color: #dedede;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-decoration: none;
  text-transform: uppercase;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav a[aria-current="page"] {
  color: var(--white);
}

.site-nav a[aria-current="page"] {
  box-shadow: inset 0 -3px var(--red);
}

.site-nav .nav-cta {
  margin-left: 0.65rem;
  color: var(--white);
  background: var(--red);
  box-shadow: none;
}

.site-nav .nav-cta:hover,
.site-nav .nav-cta:focus-visible {
  background: var(--dark-red);
}

.container {
  width: min(calc(100% - 2rem), var(--max));
  margin-inline: auto;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin: 0 0 1rem;
  color: var(--red);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 30px;
  height: 3px;
  background: currentColor;
  transform: skewX(-18deg);
}

.display {
  max-width: 100%;
  margin: 0;
  font-size: clamp(3.25rem, 8vw, 7.2rem);
  font-weight: 900;
  letter-spacing: -0.065em;
  line-height: 0.86;
  text-wrap: balance;
  text-transform: uppercase;
}

.display .stroke {
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.52);
}

.section-title {
  max-width: 760px;
  margin: 0;
  font-size: clamp(2.25rem, 5vw, 4.7rem);
  font-weight: 900;
  letter-spacing: -0.055em;
  line-height: 0.95;
  text-wrap: balance;
  text-transform: uppercase;
}

.section-copy {
  max-width: 620px;
  margin: 1.3rem 0 0;
  color: #545454;
  font-size: clamp(1rem, 2vw, 1.17rem);
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 2rem;
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  padding: 0.9rem 1.2rem;
  color: var(--white);
  background: var(--red);
  border: 1px solid var(--red);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-decoration: none;
  text-transform: uppercase;
  transition: background 160ms ease, color 160ms ease, transform 160ms ease;
}

.button::after {
  content: "\2192";
  font-size: 1rem;
}

.button:hover,
.button:focus-visible {
  background: var(--dark-red);
  border-color: var(--dark-red);
  transform: translateY(-2px);
}

.button.button-outline {
  color: var(--white);
  background: transparent;
  border-color: rgba(255, 255, 255, 0.55);
}

.button.button-outline:hover,
.button.button-outline:focus-visible {
  color: var(--black);
  background: var(--white);
  border-color: var(--white);
}

.hero {
  position: relative;
  min-height: 680px;
  color: var(--white);
  background: var(--black);
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  right: -12%;
  bottom: -82px;
  width: 55%;
  height: 165px;
  background: repeating-conic-gradient(#fff 0 25%, #111 0 50%) 0 / 54px 54px;
  opacity: 0.09;
  transform: rotate(-5deg);
  transform-origin: center;
}

.hero-grid {
  display: grid;
  min-height: 680px;
  grid-template-columns: minmax(0, 0.88fr) minmax(390px, 1.12fr);
  align-items: stretch;
}

.hero-copy {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 5rem 3.5rem 5rem max(1rem, calc((100vw - var(--max)) / 2));
}

.hero-copy p:not(.eyebrow) {
  max-width: 520px;
  margin: 1.65rem 0 0;
  color: #cbcbcb;
  font-size: 1.08rem;
}

.hero-media {
  position: relative;
  min-height: 590px;
  isolation: isolate;
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(90deg, var(--black) 0, rgba(8, 8, 8, 0.24) 35%, rgba(8, 8, 8, 0) 72%), linear-gradient(0deg, rgba(8, 8, 8, 0.34), transparent 45%);
}

.hero-media img {
  height: 100%;
  object-fit: cover;
  object-position: 54% center;
  filter: saturate(0.86) contrast(1.04);
}

.location-chip {
  position: absolute;
  right: max(1rem, calc((100vw - var(--max)) / 2));
  bottom: 2.3rem;
  z-index: 2;
  min-width: 210px;
  padding: 1rem 1.15rem;
  color: var(--white);
  background: rgba(8, 8, 8, 0.88);
  border-left: 4px solid var(--red);
  backdrop-filter: blur(5px);
}

.location-chip small,
.location-chip strong {
  display: block;
}

.location-chip small {
  color: var(--steel);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.location-chip strong {
  margin-top: 0.2rem;
  font-size: 1.12rem;
}

.signal-strip {
  color: var(--white);
  background: var(--red);
}

.signal-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 2rem;
  min-height: 84px;
}

.signal-inner strong {
  font-size: 1rem;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.signal-inner span {
  width: 9px;
  height: 9px;
  background: var(--white);
  transform: rotate(45deg);
}

.signal-inner p {
  margin: 0;
  text-align: right;
}

.intro-section {
  padding: 7rem 0;
  background: var(--off-white);
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 1.08fr);
  align-items: center;
  gap: clamp(2.5rem, 7vw, 7rem);
}

.editorial-photo {
  position: relative;
  min-height: 560px;
  margin-left: 2.1rem;
  box-shadow: var(--shadow);
}

.editorial-photo::before {
  content: "";
  position: absolute;
  top: -2.1rem;
  left: -2.1rem;
  z-index: 0;
  width: 55%;
  height: 64%;
  border: 1px solid var(--steel);
}

.editorial-photo img {
  position: absolute;
  inset: 0;
  z-index: 1;
  height: 100%;
  object-fit: cover;
}

.service-word {
  margin: 2rem 0 0;
  color: var(--red);
  font-size: clamp(3rem, 8vw, 7rem);
  font-weight: 900;
  letter-spacing: -0.075em;
  line-height: 0.8;
  text-transform: uppercase;
}

.service-word span {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--steel);
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  line-height: 1;
}

.feature-band {
  color: var(--white);
  background: var(--charcoal);
}

.feature-grid {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  min-height: 600px;
}

.feature-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 5.5rem max(2rem, 8vw) 5.5rem max(1rem, calc((100vw - var(--max)) / 2));
}

.feature-content .section-copy {
  color: #c6c6c6;
}

.feature-image {
  min-height: 520px;
  overflow: hidden;
}

.feature-image img {
  height: 100%;
  object-fit: cover;
  filter: saturate(0.83) contrast(1.05);
}

.gallery-section {
  padding: 7rem 0;
  background: var(--white);
}

.gallery-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 2.4rem;
}

.text-link {
  color: var(--red);
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-decoration: none;
  text-transform: uppercase;
}

.text-link:hover,
.text-link:focus-visible {
  text-decoration: underline;
  text-underline-offset: 0.3rem;
}

.photo-grid {
  display: grid;
  grid-template-columns: 1.35fr 0.65fr 1fr;
  grid-template-rows: 255px 255px;
  gap: 0.7rem;
}

.photo-grid figure {
  position: relative;
  margin: 0;
  background: var(--asphalt);
  overflow: hidden;
}

.photo-grid figure:first-child {
  grid-row: 1 / 3;
}

.photo-grid figure:nth-child(2) {
  grid-column: 2 / 4;
}

.photo-grid img {
  height: 100%;
  object-fit: cover;
  transition: transform 500ms ease;
}

.photo-grid figure:hover img {
  transform: scale(1.035);
}

.photo-grid figcaption {
  position: absolute;
  right: 0.7rem;
  bottom: 0.7rem;
  padding: 0.5rem 0.65rem;
  color: var(--white);
  background: rgba(8, 8, 8, 0.84);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.cta-section {
  position: relative;
  padding: 6.5rem 0;
  color: var(--white);
  background: var(--red);
  overflow: hidden;
}

.cta-section::after {
  content: "EXPRESS";
  position: absolute;
  right: -1rem;
  bottom: -0.3em;
  color: rgba(255, 255, 255, 0.08);
  font-size: clamp(6rem, 18vw, 15rem);
  font-weight: 900;
  letter-spacing: -0.08em;
  line-height: 0.65;
}

.cta-inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 3rem;
}

.cta-section .eyebrow {
  color: var(--white);
}

.cta-section .section-title {
  max-width: 760px;
}

.cta-section .button {
  color: var(--black);
  background: var(--white);
  border-color: var(--white);
  white-space: nowrap;
}

.cta-section .button:hover,
.cta-section .button:focus-visible {
  color: var(--white);
  background: var(--black);
  border-color: var(--black);
}

.page-hero {
  position: relative;
  padding: 6rem 0 5.5rem;
  color: var(--white);
  background: var(--black);
  overflow: hidden;
}

.page-hero::after {
  content: "";
  position: absolute;
  right: -4rem;
  bottom: -5rem;
  width: 340px;
  height: 220px;
  background: repeating-conic-gradient(rgba(255,255,255,.14) 0 25%, transparent 0 50%) 0 / 48px 48px;
  transform: rotate(-7deg);
}

.page-hero .display {
  max-width: 900px;
}

.page-hero .lede {
  max-width: 650px;
  margin: 1.5rem 0 0;
  color: #c9c9c9;
  font-size: 1.15rem;
}

.service-detail {
  padding: 7rem 0;
}

.service-detail-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: start;
  gap: clamp(3rem, 7vw, 7rem);
}

.service-index {
  position: sticky;
  top: 2rem;
  padding-top: 0.8rem;
  border-top: 5px solid var(--red);
}

.service-index span {
  color: var(--steel);
  font-size: clamp(5rem, 12vw, 9rem);
  font-weight: 900;
  letter-spacing: -0.08em;
  line-height: 0.8;
}

.service-panel h2 {
  margin: 0;
  font-size: clamp(2.5rem, 5vw, 4.8rem);
  letter-spacing: -0.055em;
  line-height: 0.95;
  text-transform: uppercase;
}

.service-panel > p {
  max-width: 620px;
  color: #555;
  font-size: 1.1rem;
}

.service-photo-pair {
  display: grid;
  grid-template-columns: 1fr 0.72fr;
  grid-template-rows: 390px;
  gap: 0.8rem;
  margin-top: 2.4rem;
}

.service-photo-pair img {
  height: 100%;
  object-fit: cover;
}

.service-photo-pair img:last-child {
  object-position: center 25%;
}

.prep-section {
  padding: 6rem 0;
  color: var(--white);
  background: var(--charcoal);
}

.prep-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: clamp(3rem, 8vw, 8rem);
}

.prep-list {
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: prep;
}

.prep-list li {
  position: relative;
  padding: 1.35rem 0 1.35rem 4rem;
  color: #d0d0d0;
  border-top: 1px solid var(--line);
  counter-increment: prep;
}

.prep-list li::before {
  content: "0" counter(prep);
  position: absolute;
  left: 0;
  color: var(--red);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.1em;
}

.about-intro {
  padding: 7rem 0;
}

.wide-photo {
  position: relative;
  height: clamp(340px, 50vw, 620px);
  margin-top: 3.5rem;
  background: var(--black);
  overflow: hidden;
}

.wide-photo img {
  height: 100%;
  object-fit: cover;
}

.wide-photo::after {
  content: "Crossville, Tennessee";
  position: absolute;
  left: 0;
  bottom: 0;
  padding: 0.9rem 1.1rem;
  color: var(--white);
  background: var(--red);
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.about-story {
  padding: 6rem 0;
  color: var(--white);
  background: var(--charcoal);
}

.about-story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: clamp(3rem, 8vw, 8rem);
}

.about-story img {
  min-height: 440px;
  object-fit: cover;
}

.about-story .section-copy {
  color: #c7c7c7;
}

.contact-section {
  padding: 7rem 0;
}

.contact-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: start;
  gap: clamp(3rem, 8vw, 8rem);
}

.contact-panel {
  padding: clamp(2rem, 5vw, 4rem);
  color: var(--white);
  background: var(--charcoal);
  border-top: 6px solid var(--red);
  box-shadow: var(--shadow);
}

.contact-panel h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.5rem);
  letter-spacing: -0.04em;
  line-height: 1;
  text-transform: uppercase;
}

.contact-panel p {
  color: #c8c8c8;
}

.contact-detail {
  margin-top: 2rem;
  padding-top: 1.3rem;
  border-top: 1px solid var(--line);
}

.contact-detail span,
.contact-detail strong {
  display: block;
}

.contact-detail span {
  color: var(--steel);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.contact-detail strong {
  margin-top: 0.35rem;
  font-size: 1.4rem;
}

.contact-photo {
  height: 540px;
  margin-top: 2rem;
}

.contact-photo img {
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
}

.site-footer {
  color: var(--white);
  background: var(--black);
}

.footer-main {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr 0.7fr;
  gap: 3rem;
  padding: 4.5rem 0 3.5rem;
}

.footer-brand p {
  max-width: 420px;
  margin: 1.2rem 0 0;
  color: #a9a9a9;
}

.footer-col h2 {
  margin: 0 0 1rem;
  color: var(--steel);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.footer-col a,
.footer-col span {
  display: block;
  width: fit-content;
  margin: 0.55rem 0;
  color: #dedede;
  text-decoration: none;
}

.footer-col a:hover,
.footer-col a:focus-visible {
  color: var(--red);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.3rem 0;
  color: #8e8e8e;
  border-top: 1px solid var(--line);
  font-size: 0.74rem;
}

.footer-bottom p {
  margin: 0;
}

@media (max-width: 900px) {
  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    display: none;
    align-items: stretch;
    flex-direction: column;
    gap: 0;
    padding: 1rem;
    background: var(--black);
    border-top: 1px solid var(--line);
    box-shadow: 0 20px 30px rgba(0,0,0,.3);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    padding: 1rem;
  }

  .site-nav .nav-cta {
    margin: 0.5rem 0 0;
    text-align: center;
  }

  .hero-grid,
  .intro-grid,
  .feature-grid,
  .service-detail-grid,
  .prep-grid,
  .about-story-grid,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    min-height: 520px;
    padding: 4rem max(1rem, calc((100vw - var(--max)) / 2));
  }

  .hero-media {
    min-height: 460px;
  }

  .hero-media::after {
    background: linear-gradient(0deg, rgba(8,8,8,.5), transparent 45%);
  }

  .editorial-photo {
    min-height: 470px;
  }

  .feature-content {
    padding: 5rem max(1rem, calc((100vw - var(--max)) / 2));
  }

  .feature-image {
    min-height: 460px;
  }

  .footer-main {
    grid-template-columns: 1fr 1fr;
  }

  .footer-brand {
    grid-column: 1 / 3;
  }

  .service-index {
    position: static;
  }
}

@media (max-width: 640px) {
  .header-inner {
    min-height: 72px;
  }

  .brand-copy strong {
    font-size: 0.9rem;
  }

  .brand-mark {
    width: 36px;
    height: 36px;
    flex-basis: 36px;
  }

  .display {
    font-size: clamp(2.9rem, 15vw, 4.9rem);
  }

  .page-hero .display {
    font-size: clamp(2.65rem, 12.5vw, 3.55rem);
    letter-spacing: -0.055em;
    line-height: 0.9;
  }

  .section-title {
    font-size: clamp(2rem, 8.5vw, 2.35rem);
    letter-spacing: -0.045em;
  }

  .page-about .about-intro .section-title {
    font-size: clamp(1.9rem, 8vw, 2.25rem);
  }

  .hero,
  .hero-grid {
    min-height: 0;
  }

  .hero-copy {
    min-height: 500px;
    padding-top: 3.5rem;
    padding-bottom: 3.5rem;
  }

  .hero-media {
    min-height: 430px;
  }

  .location-chip {
    right: 1rem;
    bottom: 1rem;
  }

  .signal-inner {
    grid-template-columns: 1fr;
    gap: 0.3rem;
    padding: 1.2rem 0;
  }

  .signal-inner span {
    display: none;
  }

  .signal-inner p {
    text-align: left;
  }

  .intro-section,
  .gallery-section,
  .service-detail,
  .about-intro,
  .contact-section {
    padding: 5rem 0;
  }

  .editorial-photo {
    min-height: 420px;
    margin: 1.2rem 0 0 1.2rem;
  }

  .editorial-photo::before {
    top: -1.2rem;
    left: -1.2rem;
  }

  .feature-content,
  .prep-section,
  .about-story,
  .cta-section {
    padding-top: 4.5rem;
    padding-bottom: 4.5rem;
  }

  .gallery-head,
  .cta-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .photo-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 300px 210px;
  }

  .photo-grid figure:first-child {
    grid-column: 1 / 3;
    grid-row: auto;
  }

  .photo-grid figure:nth-child(2) {
    grid-column: auto;
  }

  .photo-grid figure:nth-child(4) {
    display: none;
  }

  .page-hero {
    padding: 4.5rem 0;
  }

  .service-photo-pair {
    grid-template-columns: 1fr;
    grid-template-rows: 300px 300px;
  }

  .contact-photo {
    height: 430px;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 1.75rem;
    padding: 3.25rem 0 2.5rem;
  }

  .footer-brand {
    grid-column: auto;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 0.35rem;
  }

  .footer-brand p {
    margin-top: 0.85rem;
  }

  .footer-col h2 {
    margin-bottom: 0.65rem;
  }

  .footer-col a,
  .footer-col span {
    margin: 0.35rem 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
