:root {
  --ink: #0b1d33;
  --ink-soft: #263850;
  --paper: #f6f3ed;
  --paper-deep: #ebe5db;
  --white: #fffefa;
  --accent: #ad432e;
  --accent-dark: #84301f;
  --line: rgba(11, 29, 51, 0.16);
  --radius: 6px;
  --shadow: 0 24px 70px rgba(11, 29, 51, 0.16);
  --content: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Avenir Next", "Segoe UI", Helvetica, Arial, sans-serif;
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body.nav-open {
  overflow: hidden;
}

a {
  color: inherit;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: -80px;
  z-index: 100;
  padding: 10px 16px;
  color: var(--white);
  background: var(--ink);
  border-radius: var(--radius);
}

.skip-link:focus {
  top: 16px;
}

.preview-bar {
  padding: 7px 20px;
  color: rgba(255, 255, 255, 0.82);
  background: #071526;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-align: center;
  text-transform: uppercase;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(246, 243, 237, 0.96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

.nav-shell {
  width: min(calc(100% - 40px), var(--content));
  min-height: 74px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
}

.brand {
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 12px;
  white-space: nowrap;
}

.brand-mark {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: var(--ink);
  border-radius: var(--radius);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.04em;
}

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

.brand-copy strong {
  font-size: 14px;
  letter-spacing: 0.01em;
}

.brand-copy span {
  margin-top: 4px;
  color: var(--ink-soft);
  font-size: 10px;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 28px;
}

.nav-links a {
  position: relative;
  padding: 24px 0 22px;
  color: var(--ink-soft);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-decoration: none;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 17px;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.nav-links a:hover::after,
.nav-links a:focus-visible::after,
.nav-links a[aria-current="page"]::after {
  transform: scaleX(1);
}

.header-call,
.button {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 11px 18px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 800;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
  transition: transform 220ms cubic-bezier(0.16, 1, 0.3, 1), background-color 160ms ease, border-color 160ms ease, box-shadow 220ms ease;
}

.header-call,
.button-primary {
  color: var(--white);
  background: var(--accent);
}

.header-call:hover,
.button-primary:hover {
  background: var(--accent-dark);
  box-shadow: 0 10px 24px rgba(132, 48, 31, 0.2);
}

.button-secondary {
  color: var(--white);
  background: rgba(7, 21, 38, 0.46);
  border-color: rgba(255, 255, 255, 0.65);
}

.button-secondary:hover {
  background: rgba(7, 21, 38, 0.76);
}

.header-call:active,
.button:active {
  transform: translateY(1px) scale(0.98);
}

.motion-ready .hero .eyebrow,
.motion-ready .hero h1,
.motion-ready .hero .hero-lede,
.motion-ready .hero .hero-actions,
.motion-ready .hero .hero-facts,
.motion-ready .page-hero .eyebrow,
.motion-ready .page-hero h1,
.motion-ready .page-hero .page-intro > p:not(.eyebrow),
.motion-ready .page-hero .fact-strip {
  animation: entrance-rise 720ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

.motion-ready .hero h1,
.motion-ready .page-hero h1 {
  animation-delay: 80ms;
}

.motion-ready .hero .hero-lede,
.motion-ready .page-hero .page-intro > p:not(.eyebrow) {
  animation-delay: 150ms;
}

.motion-ready .hero .hero-actions,
.motion-ready .page-hero .fact-strip {
  animation-delay: 220ms;
}

.motion-ready .hero .hero-facts {
  animation-delay: 290ms;
}

.motion-ready [data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 640ms cubic-bezier(0.16, 1, 0.3, 1) var(--reveal-delay, 0ms), transform 640ms cubic-bezier(0.16, 1, 0.3, 1) var(--reveal-delay, 0ms);
}

.motion-ready [data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes entrance-rise {
  from {
    opacity: 0;
    transform: translateY(22px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.nav-toggle {
  position: relative;
  display: none;
  width: 46px;
  height: 46px;
  padding: 0;
  color: var(--ink);
  background: transparent;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  cursor: pointer;
}

.nav-toggle span,
.nav-toggle::before,
.nav-toggle::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 20px;
  height: 2px;
  display: block;
  margin: 0;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

.nav-toggle span {
  transform: translate(-50%, -50%);
}

.nav-toggle::before {
  transform: translate(-50%, -7px);
}

.nav-toggle::after {
  transform: translate(-50%, 5px);
}

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

.nav-toggle[aria-expanded="true"]::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.nav-toggle[aria-expanded="true"]::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.hero {
  position: relative;
  min-height: calc(100dvh - 105px);
  display: grid;
  align-items: center;
  color: var(--white);
  overflow: hidden;
  background: #0a1a2c;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5, 16, 29, 0.96) 0%, rgba(5, 16, 29, 0.79) 43%, rgba(5, 16, 29, 0.12) 76%),
    url("assets/hero-east-texas-roof.png") center / cover no-repeat;
}

.hero-inner {
  position: relative;
  width: min(calc(100% - 40px), var(--content));
  margin: 0 auto;
  padding: 72px 0 82px;
}

.hero-copy {
  max-width: 670px;
}

.eyebrow {
  margin: 0 0 22px;
  color: #f1b7a7;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  line-height: 1.08;
  letter-spacing: -0.035em;
}

h1 {
  max-width: 660px;
  margin-bottom: 22px;
  font-size: clamp(44px, 6.3vw, 78px);
}

.hero-lede {
  max-width: 590px;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.45;
}

.hero-actions,
.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-facts {
  max-width: 650px;
  margin: 34px 0 0;
  padding: 20px 0 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.26);
}

.hero-facts div {
  color: rgba(255, 255, 255, 0.74);
  font-size: 13px;
}

.hero-facts strong {
  display: block;
  margin-bottom: 2px;
  color: var(--white);
  font-size: 15px;
}

.section {
  padding: 104px 0;
}

.section-tight {
  padding: 74px 0;
}

.section-dark {
  color: var(--white);
  background: var(--ink);
}

.section-white {
  background: var(--white);
}

.shell {
  width: min(calc(100% - 40px), var(--content));
  margin: 0 auto;
}

.section-head {
  max-width: 720px;
  margin-bottom: 48px;
}

.section-head h2,
.split-copy h2,
.page-intro h1 {
  margin-bottom: 18px;
  font-size: clamp(36px, 5vw, 58px);
}

.section-head p,
.split-copy > p,
.page-intro p {
  max-width: 65ch;
  color: var(--ink-soft);
  font-size: 18px;
}

.section-dark .section-head p,
.section-dark .split-copy > p {
  color: rgba(255, 255, 255, 0.72);
}

.service-grid {
  display: grid;
  grid-template-columns: 1.35fr 1fr 1fr;
  gap: 1px;
  overflow: hidden;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.service-card {
  min-height: 260px;
  padding: 34px;
  background: var(--white);
  transition: transform 260ms cubic-bezier(0.16, 1, 0.3, 1), box-shadow 260ms ease;
}

.service-card:first-child {
  grid-row: span 2;
  min-height: 520px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  color: var(--white);
  background:
    linear-gradient(180deg, rgba(11, 29, 51, 0.1), rgba(11, 29, 51, 0.94)),
    url("assets/roofing-crew.png") center / cover no-repeat;
}

.service-card h3 {
  margin-bottom: 14px;
  font-size: 26px;
}

.service-card p {
  margin-bottom: 0;
  color: var(--ink-soft);
}

.service-card:first-child p {
  color: rgba(255, 255, 255, 0.78);
}

.text-link {
  display: inline-block;
  margin-top: 18px;
  color: var(--accent);
  font-weight: 800;
  text-underline-offset: 5px;
}

.section-dark .text-link {
  color: #f1b7a7;
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: clamp(40px, 7vw, 90px);
}

.split-media {
  position: relative;
}

.split-media img {
  width: 100%;
  min-height: 540px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: transform 700ms cubic-bezier(0.16, 1, 0.3, 1);
}

.proof-card {
  position: absolute;
  right: -24px;
  bottom: -24px;
  width: min(310px, 78%);
  padding: 24px;
  color: var(--white);
  background: var(--accent);
  border-radius: var(--radius);
}

.proof-card strong {
  display: block;
  margin-bottom: 8px;
  font-size: 19px;
}

.proof-card p {
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
}

.process-list,
.check-list,
.service-list {
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
}

.process-list li,
.check-list li,
.service-list li {
  position: relative;
  padding: 18px 0 18px 34px;
  border-bottom: 1px solid var(--line);
}

.process-list li::before,
.check-list li::before,
.service-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 26px;
  width: 12px;
  height: 3px;
  background: var(--accent);
}

.section-dark .process-list li,
.section-dark .check-list li,
.section-dark .service-list li {
  border-color: rgba(255, 255, 255, 0.16);
}

.cta-band {
  display: grid;
  grid-template-columns: 1.4fr auto;
  align-items: center;
  gap: 36px;
  padding: 46px;
  color: var(--white);
  background: var(--accent);
  border-radius: var(--radius);
}

.cta-band h2 {
  margin-bottom: 10px;
  font-size: clamp(30px, 4vw, 48px);
}

.cta-band p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.78);
}

.page-hero {
  padding: 98px 0 84px;
  color: var(--white);
  background: var(--ink);
}

.page-intro {
  max-width: 820px;
}

.page-intro p {
  color: rgba(255, 255, 255, 0.74);
}

.fact-strip {
  margin-top: 42px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  overflow: hidden;
}

.fact-strip div {
  padding: 24px;
  background: rgba(255, 255, 255, 0.04);
}

.fact-strip strong {
  display: block;
  font-size: 18px;
}

.fact-strip span {
  color: rgba(255, 255, 255, 0.65);
  font-size: 13px;
}

.detail-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.detail-card {
  padding: 34px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: transform 260ms cubic-bezier(0.16, 1, 0.3, 1), border-color 260ms ease, box-shadow 260ms ease;
}

@media (hover: hover) and (pointer: fine) {
  .header-call:hover,
  .button:hover {
    transform: translateY(-2px);
  }

  .service-card:hover,
  .detail-card:hover {
    transform: translateY(-4px);
    border-color: rgba(173, 67, 46, 0.36);
    box-shadow: 0 18px 42px rgba(11, 29, 51, 0.1);
  }

  .split-media:hover img {
    transform: scale(1.015);
  }
}

.detail-card h2,
.detail-card h3 {
  margin-bottom: 14px;
  font-size: 28px;
}

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

.tips-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 64px;
}

.tips-aside {
  align-self: start;
  padding: 30px;
  color: var(--white);
  background: var(--accent);
  border-radius: var(--radius);
}

.tips-aside h2 {
  margin-bottom: 14px;
  font-size: 28px;
}

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

.tip-item {
  padding: 0 0 30px;
  margin-bottom: 30px;
  border-bottom: 1px solid var(--line);
}

.tip-item:last-child {
  margin-bottom: 0;
}

.tip-item h2 {
  margin-bottom: 10px;
  font-size: 28px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 54px;
}

.contact-card {
  padding: 34px;
  color: var(--white);
  background: var(--ink);
  border-radius: var(--radius);
}

.contact-card h2 {
  font-size: 30px;
}

.contact-lines {
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.contact-lines li {
  padding: 16px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.contact-lines span {
  display: block;
  color: rgba(255, 255, 255, 0.62);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-lines a {
  color: var(--white);
  font-weight: 700;
  text-underline-offset: 4px;
}

.estimate-form {
  padding: 38px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.estimate-form h2 {
  margin-bottom: 10px;
  font-size: 34px;
}

.form-note {
  color: var(--ink-soft);
  font-size: 14px;
}

.field-grid {
  margin-top: 26px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.field {
  display: grid;
  gap: 7px;
}

.field-full {
  grid-column: 1 / -1;
}

.field label {
  color: var(--ink);
  font-size: 14px;
  font-weight: 800;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 13px 14px;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid rgba(11, 29, 51, 0.28);
  border-radius: var(--radius);
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: 3px solid rgba(173, 67, 46, 0.2);
  border-color: var(--accent);
}

.field small {
  color: var(--ink-soft);
}

.form-status {
  min-height: 26px;
  margin: 14px 0 0;
  color: var(--accent-dark);
  font-size: 14px;
  font-weight: 700;
}

.site-footer {
  padding: 68px 0 28px;
  color: var(--white);
  background: #071526;
}

.mobile-actions {
  display: none;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
  gap: 50px;
}

.footer-brand p {
  max-width: 38ch;
  color: rgba(255, 255, 255, 0.66);
}

.footer-heading {
  margin-bottom: 16px;
  color: rgba(255, 255, 255, 0.54);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.footer-links {
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-links li {
  margin-bottom: 9px;
}

.footer-links a {
  color: var(--white);
  text-underline-offset: 4px;
}

.footer-bottom {
  margin-top: 50px;
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: rgba(255, 255, 255, 0.48);
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  font-size: 12px;
}

@media (max-width: 1000px) {
  .site-header {
    background: var(--paper);
    backdrop-filter: none;
  }

  .nav-shell {
    position: relative;
    grid-template-columns: minmax(0, 1fr) auto auto;
  }

  .nav-toggle {
    display: block;
    grid-column: 2;
  }

  .brand {
    min-width: 0;
    overflow: hidden;
  }

  .brand-copy,
  .brand-copy strong {
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .nav-links {
    position: absolute;
    top: 100%;
    right: -20px;
    left: -20px;
    max-height: calc(100dvh - 74px);
    padding: 14px 24px 26px;
    display: grid;
    align-content: start;
    justify-content: stretch;
    gap: 0;
    background: var(--paper);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 22px 50px rgba(11, 29, 51, 0.18);
    overflow-y: auto;
    overscroll-behavior: contain;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity 220ms ease, transform 220ms cubic-bezier(0.16, 1, 0.3, 1), visibility 220ms;
  }

  .nav-links.open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav-links a {
    min-height: 58px;
    padding: 15px 0;
    display: flex;
    align-items: center;
    color: var(--ink);
    font-size: 18px;
    border-bottom: 1px solid var(--line);
  }

  .nav-links a:last-child {
    border-bottom: 0;
  }

  .nav-links a::after {
    display: none;
  }

  .header-call {
    grid-column: 3;
    justify-self: end;
  }

  .hero {
    min-height: 720px;
  }

  .service-grid {
    grid-template-columns: 1fr 1fr;
  }

  .service-card:first-child {
    grid-column: 1 / -1;
    grid-row: auto;
    min-height: 440px;
  }

  .split,
  .tips-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .split-media {
    max-width: 720px;
  }
}

@media (max-width: 720px) {
  body {
    font-size: 16px;
    padding-bottom: 62px;
  }

  .preview-bar {
    min-height: 31px;
    display: grid;
    place-items: center;
    padding-inline: 12px;
    font-size: 9px;
  }

  .nav-shell {
    width: min(calc(100% - 28px), var(--content));
    min-height: 68px;
    gap: 10px;
  }

  .nav-links {
    right: -14px;
    left: -14px;
    max-height: calc(100dvh - 68px);
  }

  .brand-copy strong {
    font-size: 12px;
  }

  .brand-copy span {
    display: none;
  }

  .brand-mark {
    width: 34px;
    height: 34px;
  }

  .brand,
  .text-link,
  .footer-links a,
  .contact-lines a {
    min-height: 44px;
  }

  .text-link,
  .footer-links a,
  .contact-lines a {
    display: inline-flex;
    align-items: center;
  }

  .header-call {
    width: 98px;
    min-height: 40px;
    padding: 10px;
    font-size: 0;
  }

  .header-call::after {
    content: "Call Now";
    font-size: 13px;
  }

  .nav-toggle {
    width: 40px;
    height: 40px;
  }

  .hero {
    min-height: 700px;
  }

  .hero::before {
    background:
      linear-gradient(180deg, rgba(5, 16, 29, 0.78) 0%, rgba(5, 16, 29, 0.92) 78%),
      url("assets/hero-east-texas-roof.png") 66% center / cover no-repeat;
  }

  .hero-inner,
  .shell {
    width: min(calc(100% - 28px), var(--content));
  }

  .hero-inner {
    padding: 70px 0 60px;
  }

  h1 {
    font-size: clamp(42px, 13vw, 58px);
  }

  .hero-lede {
    font-size: 18px;
  }

  .hero-actions,
  .button-row {
    display: grid;
    grid-template-columns: 1fr;
  }

  .button {
    width: 100%;
  }

  .hero-facts,
  .fact-strip,
  .detail-grid,
  .field-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero-facts {
    gap: 10px;
  }

  .section {
    padding: 76px 0;
  }

  .section-tight {
    padding: 56px 0;
  }

  .service-grid {
    grid-template-columns: 1fr;
  }

  .service-card:first-child {
    grid-column: auto;
    min-height: 420px;
  }

  .service-card {
    min-height: 0;
    padding: 28px;
  }

  .split-media img {
    min-height: 400px;
  }

  .proof-card {
    position: static;
    width: 100%;
    margin-top: 12px;
  }

  .cta-band {
    grid-template-columns: 1fr;
    padding: 30px;
  }

  .page-hero {
    padding: 72px 0 64px;
  }

  .contact-card,
  .estimate-form {
    padding: 28px;
  }

  .footer-bottom {
    display: grid;
  }

  .mobile-actions {
    position: fixed;
    z-index: 60;
    right: 0;
    bottom: 0;
    left: 0;
    min-height: 62px;
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    background: var(--ink);
    box-shadow: 0 -10px 30px rgba(7, 21, 38, 0.2);
  }

  .mobile-actions a {
    min-height: 62px;
    display: grid;
    place-items: center;
    color: var(--white);
    font-size: 14px;
    font-weight: 800;
    text-decoration: none;
  }

  .mobile-actions a + a {
    background: var(--accent);
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .motion-ready .hero .eyebrow,
  .motion-ready .hero h1,
  .motion-ready .hero .hero-lede,
  .motion-ready .hero .hero-actions,
  .motion-ready .hero .hero-facts,
  .motion-ready .page-hero .eyebrow,
  .motion-ready .page-hero h1,
  .motion-ready .page-hero .page-intro > p:not(.eyebrow),
  .motion-ready .page-hero .fact-strip,
  .motion-ready [data-reveal] {
    opacity: 1 !important;
    transform: none !important;
    animation: none !important;
  }
}
