:root {
  --ink: #12251f;
  --forest: #17332b;
  --forest-2: #21483d;
  --paper: #f5f0e7;
  --paper-2: #ebe3d5;
  --white: #fffdf8;
  --clay: #d76d3c;
  --clay-dark: #b94f27;
  --gold: #e7b35f;
  --muted: #657069;
  --line: rgba(18, 37, 31, 0.16);
  --shadow: 0 24px 80px rgba(18, 37, 31, 0.13);
  --radius-sm: 14px;
  --radius: 22px;
  --radius-lg: 34px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

a {
  color: inherit;
  text-decoration: none;
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 1000;
  padding: 10px 14px;
  border-radius: 8px;
  background: var(--white);
  color: var(--ink);
  transform: translateY(-150%);
}

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

.container {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}

.concept-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 40px;
  padding: 7px 20px;
  background: #f8db73;
  color: #352b10;
  text-align: center;
  font-size: 12px;
  font-weight: 650;
  letter-spacing: 0.01em;
}

.concept-bar p {
  margin: 0;
}

.concept-pill {
  flex: 0 0 auto;
  padding: 3px 7px;
  border: 1px solid rgba(53, 43, 16, 0.42);
  border-radius: 999px;
  font-size: 10px;
  font-weight: 850;
  letter-spacing: 0.12em;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 28px;
  min-height: 82px;
  padding: 12px max(24px, calc((100vw - var(--container)) / 2));
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(18, 37, 31, 0.96);
  color: var(--white);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  width: fit-content;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 43px;
  height: 43px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 50%;
  color: var(--gold);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  gap: 1px;
  line-height: 1.2;
}

.brand-copy strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.brand-copy small {
  color: rgba(255, 253, 248, 0.64);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 26px;
  font-size: 13px;
  font-weight: 650;
}

.desktop-nav a,
.footer-links a {
  color: rgba(255, 253, 248, 0.78);
  transition: color 160ms ease;
}

.desktop-nav a:hover,
.desktop-nav a:focus-visible,
.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--gold);
}

.header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 18px;
}

.language-switcher {
  display: flex;
  align-items: center;
  gap: 5px;
  color: rgba(255, 253, 248, 0.4);
  font-size: 11px;
  font-weight: 800;
}

.language-button {
  padding: 7px 4px;
  border: 0;
  background: transparent;
  color: rgba(255, 253, 248, 0.48);
  cursor: pointer;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.language-button.is-active {
  color: var(--gold);
}

.language-button:focus-visible,
.button:focus-visible,
a:focus-visible,
summary:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 13px 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.015em;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-small {
  min-height: 42px;
  padding: 10px 17px;
  font-size: 12px;
}

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

.button-primary {
  background: var(--clay);
  color: var(--white);
  box-shadow: 0 10px 32px rgba(215, 109, 60, 0.28);
}

.button-primary:hover {
  background: var(--clay-dark);
}

.button-ghost {
  border-color: rgba(255, 255, 255, 0.44);
  background: rgba(255, 255, 255, 0.06);
  color: var(--white);
  backdrop-filter: blur(8px);
}

.button-ghost:hover {
  background: rgba(255, 255, 255, 0.14);
}

.button-full {
  width: 100%;
}

.button:disabled {
  opacity: 0.8;
  cursor: not-allowed;
  transform: none;
}

.hero {
  position: relative;
  isolation: isolate;
  min-height: 720px;
  overflow: hidden;
  background: var(--forest);
  color: var(--white);
}

.hero-image,
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero-image {
  background-image: url("assets/hero-concept.png");
  background-position: center;
  background-size: cover;
}

.hero-overlay {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(11, 27, 22, 0.98) 0%, rgba(11, 27, 22, 0.90) 31%, rgba(11, 27, 22, 0.34) 63%, rgba(11, 27, 22, 0.18) 100%),
    linear-gradient(0deg, rgba(11, 27, 22, 0.38), transparent 45%);
}

.hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 720px;
  padding-block: 90px 115px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--clay-dark);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow.light {
  color: var(--gold);
}

.hero h1,
.section h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  letter-spacing: -0.048em;
  line-height: 1.03;
}

.hero h1 {
  max-width: 720px;
  font-size: clamp(48px, 6.3vw, 84px);
}

.hero-copy {
  max-width: 610px;
  margin: 27px 0 0;
  color: rgba(255, 253, 248, 0.78);
  font-size: clamp(17px, 1.6vw, 20px);
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.microcopy {
  margin: 15px 0 0;
  color: rgba(255, 253, 248, 0.58);
  font-size: 11px;
  font-weight: 650;
  letter-spacing: 0.04em;
}

.hero-caption {
  position: absolute;
  right: 20px;
  bottom: 18px;
  padding: 6px 9px;
  border-radius: 6px;
  background: rgba(11, 27, 22, 0.62);
  color: rgba(255, 255, 255, 0.68);
  font-size: 10px;
  font-weight: 650;
  backdrop-filter: blur(8px);
}

.commitment-strip {
  padding: 27px 0 30px;
  background: var(--clay);
  color: var(--white);
}

.strip-label {
  margin: 0 0 17px;
  color: rgba(255, 255, 255, 0.65);
  font-size: 10px;
  font-weight: 850;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.commitment-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.commitment {
  display: flex;
  align-items: center;
  gap: 13px;
  min-height: 48px;
  padding-right: 20px;
  border-right: 1px solid rgba(255, 255, 255, 0.26);
}

.commitment + .commitment {
  padding-left: 24px;
}

.commitment:last-child {
  border-right: 0;
}

.commitment span {
  color: rgba(255, 255, 255, 0.58);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 22px;
}

.commitment strong {
  font-size: 13px;
  line-height: 1.35;
}

.section {
  padding: 110px 0;
}

.section-heading {
  display: grid;
  grid-template-columns: 1.45fr 0.75fr;
  align-items: end;
  gap: 70px;
  margin-bottom: 48px;
}

.section h2 {
  max-width: 760px;
  font-size: clamp(40px, 5vw, 64px);
}

.section-heading > p,
.gallery-heading > p {
  margin: 0 0 5px;
  color: var(--muted);
  font-size: 16px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.service-card {
  display: flex;
  flex-direction: column;
  min-height: 380px;
  padding: 25px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 253, 248, 0.54);
  box-shadow: 0 10px 40px rgba(18, 37, 31, 0.03);
}

.service-card-featured {
  background: var(--forest);
  color: var(--white);
}

.service-icon {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--clay-dark);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 15px;
}

.service-card-featured .service-icon {
  border-color: rgba(255, 255, 255, 0.24);
  color: var(--gold);
}

.service-card h3 {
  margin: 70px 0 12px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 28px;
  font-weight: 500;
  line-height: 1.1;
}

.service-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.service-card-featured p {
  color: rgba(255, 253, 248, 0.68);
}

.service-tag {
  margin-top: auto;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  color: var(--clay-dark);
  font-size: 10px;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.service-card-featured .service-tag {
  border-color: rgba(255, 255, 255, 0.16);
  color: var(--gold);
}

.process {
  background: var(--forest);
  color: var(--white);
}

.process-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 110px;
}

.process-intro {
  position: sticky;
  top: 130px;
  align-self: start;
}

.process-intro h2 {
  font-size: clamp(42px, 5vw, 66px);
}

.process-intro > p:not(.eyebrow) {
  max-width: 490px;
  margin: 26px 0;
  color: rgba(255, 253, 248, 0.66);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  border-bottom: 1px solid rgba(231, 179, 95, 0.5);
  color: var(--gold);
  font-size: 13px;
  font-weight: 800;
}

.process-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.process-steps li {
  display: grid;
  grid-template-columns: 62px 1fr;
  gap: 25px;
  padding: 40px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.process-steps li:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.process-steps > li > span {
  color: var(--gold);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 31px;
}

.process-steps h3 {
  margin: 0 0 8px;
  font-size: 23px;
}

.process-steps p {
  margin: 0;
  color: rgba(255, 253, 248, 0.62);
  font-size: 14px;
}

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

.gallery-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  grid-template-rows: repeat(2, 290px);
  gap: 16px;
}

.gallery-card {
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: 0 8px 36px rgba(18, 37, 31, 0.06);
}

.gallery-card-large {
  grid-row: span 2;
}

.gallery-art {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-around;
  height: calc(100% - 78px);
  overflow: hidden;
  isolation: isolate;
}

.gallery-art::before,
.gallery-art::after {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
}

.gallery-art::after {
  background: linear-gradient(180deg, transparent 40%, rgba(18, 37, 31, 0.36));
}

.gallery-art-one::before {
  background:
    linear-gradient(90deg, #aa8a70 0 50%, #e8d5b9 50%),
    linear-gradient(#193a31, #193a31);
}

.gallery-art-two::before {
  background: radial-gradient(circle at 72% 28%, #efe3d2 0 17%, transparent 18%), linear-gradient(135deg, #c8af94, #7d624c);
}

.gallery-art-three::before {
  background: repeating-linear-gradient(90deg, #82654a 0 45px, #6e513a 45px 51px);
}

.gallery-art span {
  padding: 8px 11px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 999px;
  background: rgba(18, 37, 31, 0.32);
  color: var(--white);
  font-size: 9px;
  font-weight: 850;
  letter-spacing: 0.14em;
  backdrop-filter: blur(5px);
}

.gallery-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  height: 78px;
  padding: 14px 20px;
}

.gallery-meta strong {
  font-size: 14px;
}

.gallery-meta span {
  color: var(--muted);
  font-size: 9px;
  font-weight: 750;
  letter-spacing: 0.03em;
  text-align: right;
  text-transform: uppercase;
}

.clarity {
  background: var(--paper-2);
}

.clarity-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 100px;
}

.clarity-copy p:not(.eyebrow) {
  max-width: 560px;
  margin: 25px 0 0;
  color: var(--muted);
}

.language-sample {
  padding: 16px;
  border-radius: var(--radius-lg);
  background: var(--forest);
  box-shadow: var(--shadow);
}

.language-sample > div {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 20px;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  color: var(--white);
}

.language-sample > div + div {
  margin-top: 10px;
}

.language-sample span {
  color: var(--gold);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.12em;
}

.language-sample p {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 22px;
  line-height: 1.45;
}

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

.testimonials h2 {
  max-width: 780px;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 48px;
}

.testimonial-grid article {
  min-height: 270px;
  padding: 25px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
}

.demo-tag {
  display: block;
  color: var(--clay-dark);
  font-size: 8px;
  font-weight: 900;
  letter-spacing: 0.1em;
}

.testimonial-grid blockquote {
  margin: 48px 0 25px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 23px;
  line-height: 1.4;
}

.testimonial-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 11px;
}

.faq {
  background: var(--paper);
}

.faq-layout {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 100px;
}

.faq-heading p:not(.eyebrow) {
  margin: 25px 0 0;
  color: var(--muted);
}

.faq-list {
  border-top: 1px solid var(--line);
}

.faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  position: relative;
  padding: 24px 44px 24px 0;
  cursor: pointer;
  font-weight: 750;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  position: absolute;
  top: 23px;
  right: 3px;
  color: var(--clay-dark);
  content: "+";
  font-family: Georgia, "Times New Roman", serif;
  font-size: 24px;
  line-height: 1;
}

.faq-list details[open] summary::after {
  content: "−";
}

.faq-list details p {
  max-width: 650px;
  margin: -5px 0 24px;
  color: var(--muted);
  font-size: 14px;
}

.estimate {
  background: var(--forest);
  color: var(--white);
}

.estimate-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: start;
  gap: 90px;
}

.estimate-layout > * {
  min-width: 0;
}

.estimate-copy > p:not(.eyebrow) {
  max-width: 520px;
  margin: 24px 0 0;
  color: rgba(255, 253, 248, 0.64);
}

.contact-demo {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-top: 48px;
  padding-left: 18px;
  border-left: 3px solid var(--clay);
}

.contact-demo span,
.contact-demo small {
  color: rgba(255, 253, 248, 0.5);
  font-size: 10px;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-demo strong {
  color: var(--gold);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(18px, 5vw, 28px);
  font-weight: 500;
  overflow-wrap: anywhere;
}

.estimate-form {
  display: grid;
  gap: 15px;
  padding: 30px;
  border-radius: var(--radius-lg);
  background: var(--white);
  color: var(--ink);
  box-shadow: var(--shadow);
}

.form-warning {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 12px 14px;
  border: 1px solid #e7c257;
  border-radius: 12px;
  background: #fff5ce;
  color: #4b3b12;
  font-size: 11px;
}

.form-warning strong {
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
}

.estimate-form label {
  display: flex;
  flex-direction: column;
  gap: 7px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.estimate-form input,
.estimate-form select,
.estimate-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 11px;
  background: #f8f4ed;
  color: var(--ink);
  padding: 12px 13px;
}

.estimate-form input:disabled,
.estimate-form select:disabled,
.estimate-form textarea:disabled {
  opacity: 0.85;
}

.site-footer {
  padding: 60px 0;
  background: #0d1c18;
  color: var(--white);
}

.footer-layout {
  display: grid;
  grid-template-columns: 1.2fr 0.6fr 0.8fr;
  gap: 60px;
  align-items: start;
}

.footer-brand {
  color: var(--white);
}

.footer-layout > div:first-child > p {
  max-width: 420px;
  margin: 18px 0 0;
  color: rgba(255, 253, 248, 0.52);
  font-size: 12px;
}

.footer-layout > div:first-child > .creator-credit {
  color: rgba(255, 253, 248, 0.72);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 9px;
  font-size: 12px;
  font-weight: 650;
}

.copyright {
  margin: 0;
  color: rgba(255, 253, 248, 0.48);
  font-size: 11px;
  line-height: 1.8;
  text-align: right;
}

@media (max-width: 1000px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .desktop-nav {
    display: none;
  }

  .service-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .process-layout,
  .faq-layout,
  .estimate-layout {
    gap: 55px;
  }

  .gallery-grid {
    grid-template-rows: repeat(2, 250px);
  }
}

@media (max-width: 780px) {
  .concept-bar {
    align-items: flex-start;
    gap: 8px;
    text-align: left;
  }

  .site-header {
    min-height: 70px;
    padding-inline: 18px;
  }

  .brand-copy small,
  .header-actions .button {
    display: none;
  }

  .hero,
  .hero-content {
    min-height: 690px;
  }

  .hero-image {
    background-position: 61% center;
  }

  .hero-overlay {
    background: linear-gradient(90deg, rgba(11, 27, 22, 0.98) 0%, rgba(11, 27, 22, 0.82) 68%, rgba(11, 27, 22, 0.46) 100%);
  }

  .hero-content {
    padding-block: 90px 110px;
  }

  .hero h1 {
    max-width: 590px;
    font-size: clamp(43px, 11.5vw, 66px);
  }

  .hero-copy {
    max-width: 520px;
    font-size: 16px;
  }

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

  .commitment:nth-child(2) {
    border-right: 0;
  }

  .commitment:nth-child(3) {
    padding-left: 0;
  }

  .section {
    padding: 80px 0;
  }

  .section-heading,
  .process-layout,
  .clarity-layout,
  .faq-layout,
  .estimate-layout {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .section-heading {
    margin-bottom: 35px;
  }

  .process-intro {
    position: static;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    grid-template-rows: 420px 280px 280px;
  }

  .gallery-card-large {
    grid-row: span 1;
  }

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

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

  .copyright {
    grid-column: 1 / -1;
    text-align: left;
  }
}

@media (max-width: 540px) {
  .container {
    width: min(calc(100% - 28px), var(--container));
  }

  .concept-bar {
    font-size: 10px;
  }

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

  .hero,
  .hero-content {
    min-height: 650px;
  }

  .hero h1 {
    font-size: 43px;
  }

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

  .hero-caption {
    right: 12px;
    bottom: 10px;
  }

  .commitment-grid,
  .service-grid,
  .form-row,
  .footer-layout {
    grid-template-columns: 1fr;
  }

  .commitment,
  .commitment + .commitment {
    min-height: 38px;
    padding: 0;
    border-right: 0;
  }

  .section h2 {
    font-size: 39px;
  }

  .service-card {
    min-height: 315px;
  }

  .service-card h3 {
    margin-top: 44px;
  }

  .process-steps li {
    grid-template-columns: 48px 1fr;
    gap: 14px;
  }

  .gallery-grid {
    grid-template-rows: 340px 260px 260px;
  }

  .gallery-meta {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    gap: 2px;
  }

  .gallery-meta span {
    text-align: left;
  }

  .language-sample {
    padding: 9px;
  }

  .language-sample > div {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 22px;
  }

  .estimate-form {
    padding: 20px;
  }
}

@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;
  }
}
