:root {
  --bg: #ecebea;
  --bg-soft: #f2f1ef;
  --surface: #f5f4f2;
  --raised: #faf9f7;
  --ink: #272624;
  --text: #33312e;
  --muted: #6f6b65;
  --quiet: #918c84;
  --line: rgba(51, 49, 46, 0.08);
  --accent: #7e6c56;
  --shadow-dark: rgba(169, 165, 157, 0.56);
  --shadow-light: rgba(255, 255, 255, 0.92);
  --shadow:
    18px 18px 38px var(--shadow-dark), -18px -18px 38px var(--shadow-light);
  --shadow-small:
    9px 9px 18px rgba(169, 165, 157, 0.45),
    -9px -9px 18px rgba(255, 255, 255, 0.9);
  --inner:
    inset 8px 8px 16px rgba(169, 165, 157, 0.42),
    inset -8px -8px 16px rgba(255, 255, 255, 0.88);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(
      circle at 18% 0%,
      rgba(255, 255, 255, 0.58),
      transparent 32rem
    ),
    linear-gradient(135deg, #ecebea, #f1f0ee 55%, #e8e6e3);
  color: var(--text);
  font-family:
    Inter,
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  letter-spacing: 0;
}

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

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

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: 2px solid rgba(126, 108, 86, 0.72);
  outline-offset: 4px;
}

.site-header,
main,
.site-footer {
  width: min(1160px, calc(100% - 32px));
  margin-inline: auto;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 24px 0;
}

.brand,
.nav,
.button,
.feature-card,
.work-card,
.soft-panel,
.contact-form,
.contact-card,
.discipline-strip,
.timeline article,
.skills-panel,
.case-study-template,
.editorial-band {
  background: rgba(245, 244, 242, 0.86);
  box-shadow: var(--shadow-small);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-height: 48px;
  padding: 8px 18px 8px 8px;
  border-radius: 999px;
  font-weight: 600;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 999px;
  background: var(--bg);
  box-shadow: var(--inner);
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 600;
}

.nav {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px;
  border-radius: 999px;
}

.nav a {
  min-height: 36px;
  padding: 9px 16px;
  border-radius: 999px;
  color: var(--muted);
  font-size: 0.92rem;
}

.nav a:hover,
.nav a.active {
  color: var(--ink);
  background: var(--bg);
  box-shadow: var(--inner);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(300px, 0.72fr);
  align-items: center;
  gap: 48px;
  min-height: calc(100vh - 132px);
  padding: 34px 0 64px;
}

.hero-copy,
.page-hero {
  max-width: 820px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--accent);
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

h1,
h2 {
  color: var(--ink);
  font-family: Fraunces, Georgia, serif;
  font-weight: 650;
  letter-spacing: 0;
}

h1 {
  margin-bottom: 22px;
  max-width: 880px;
  font-size: clamp(3.4rem, 8vw, 7.2rem);
  line-height: 0.92;
}

h2 {
  margin-bottom: 14px;
  font-size: clamp(1.85rem, 3.5vw, 3.7rem);
  line-height: 1;
}

h3 {
  margin-bottom: 10px;
  color: var(--ink);
  font-size: 1.04rem;
  font-weight: 600;
}

.lead {
  max-width: 680px;
  color: var(--muted);
  font-size: clamp(1.05rem, 2vw, 1.34rem);
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 36px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  border: 0;
  border-radius: 999px;
  color: var(--ink);
  font: inherit;
  font-weight: 600;
  cursor: pointer;
}

.button.primary {
  background: #ebe8e4;
  box-shadow:
    12px 12px 24px rgba(169, 165, 157, 0.55),
    -12px -12px 24px rgba(255, 255, 255, 0.96);
}

.button.secondary {
  color: var(--muted);
}

.button:hover {
  box-shadow: var(--inner);
}

.portrait-shell {
  display: grid;
  place-items: center;
  aspect-ratio: 1;
  border-radius: 32px;
  background: var(--raised);
  box-shadow: var(--shadow);
  padding: 16px;
}

.portrait-shell img {
  width: 100%;
  height: 100%;
  border-radius: 24px;
  object-fit: cover;
  object-position: center 28%;
}

.discipline-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-bottom: 72px;
  padding: 20px;
  border-radius: 28px;
}

.proof-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin-bottom: 72px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: var(--line);
  box-shadow: var(--shadow-small);
}

.proof-strip article {
  min-height: 150px;
  padding: 24px;
  background: rgba(245, 244, 242, 0.94);
}

.proof-strip strong {
  display: block;
  margin-bottom: 28px;
  color: var(--ink);
  font-family: Fraunces, Georgia, serif;
  font-size: clamp(1.2rem, 2vw, 1.6rem);
  font-weight: 650;
  line-height: 1.08;
}

.proof-strip p,
.additional-capabilities p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.55;
}

.discipline-strip article {
  min-height: 138px;
  padding: 22px;
  border-radius: 20px;
  background: var(--bg);
  box-shadow: var(--inner);
}

.discipline-strip span {
  display: block;
  margin-bottom: 28px;
  color: var(--ink);
  font-family: Fraunces, Georgia, serif;
  font-size: 1.6rem;
}

.discipline-strip p,
.feature-card p,
.work-card p,
.text-stack p,
.timeline p,
.contact-card p,
.skills-panel p,
.case-study-template li,
.editorial-band p {
  color: var(--muted);
  line-height: 1.65;
}

.editorial-band {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.55fr);
  gap: 32px;
  align-items: end;
  margin-bottom: 28px;
  padding: 32px;
  border-radius: 28px;
}

.editorial-band .eyebrow {
  grid-column: 1 / -1;
}

.editorial-band h2 {
  margin-bottom: 0;
}

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

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 84px;
}

.discipline-section {
  margin-bottom: 84px;
}

.discipline-section .feature-grid {
  margin-bottom: 24px;
}

.additional-capabilities {
  display: flex;
  align-items: baseline;
  gap: 22px;
  padding: 18px 24px;
  border-top: 1px solid var(--line);
}

.additional-capabilities .eyebrow {
  flex: 0 0 auto;
  margin: 0;
}

.feature-card {
  min-height: 250px;
  padding: 28px;
  border-radius: 28px;
}

.icon-dot {
  display: block;
  width: 44px;
  height: 44px;
  margin-bottom: 40px;
  border-radius: 999px;
  background: var(--bg);
  box-shadow: var(--inner);
}

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

.page-hero.compact h1 {
  font-size: clamp(3rem, 6vw, 5.8rem);
}

.split-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.75fr) minmax(0, 1fr);
  align-items: center;
  gap: 40px;
  margin-bottom: 72px;
}

.soft-panel {
  display: grid;
  place-items: center;
  min-height: 420px;
  padding: 36px;
  border-radius: 32px;
}

.about-photo {
  padding: 16px;
}

.about-photo img {
  width: 100%;
  height: 420px;
  border-radius: 24px;
  filter: grayscale(100%);
  object-fit: cover;
  object-position: center 58%;
}

.text-stack {
  max-width: 700px;
}

.human-notes {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.human-notes span,
.placeholder-note {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  background: var(--bg);
  box-shadow: var(--inner);
  color: var(--muted);
  font-size: 0.84rem;
}

.timeline {
  display: flex;
  gap: 18px;
  margin-bottom: 72px;
  padding: 8px 4px 24px;
  overflow-x: auto;
  align-items: start;
  background: transparent;
  scrollbar-width: none;
}

.timeline::-webkit-scrollbar {
  display: none;
}

.timeline-item {
  flex: 1 0 180px;
  min-height: 0;
  padding: 24px;
  border: 0;
  border-radius: 26px;
  background: rgba(245, 244, 242, 0.96);
  box-shadow: var(--shadow-small);
  transition:
    flex-basis 220ms ease,
    background-color 220ms ease;
}

.timeline-item[open] {
  flex-basis: 360px;
  background: var(--raised);
}

.timeline-item:not([open]) {
  height: 300px;
}

.timeline-item:not([open]) summary {
  height: 100%;
  min-height: 0;
}

.timeline-item summary {
  position: relative;
  min-height: 190px;
  padding-bottom: 46px;
  cursor: pointer;
  list-style: none;
}

.timeline-item summary:focus {
  outline: none;
}

.timeline-item:has(summary:focus-visible) {
  box-shadow: var(--shadow-small);
}

.timeline-item[open] summary {
  min-height: 0;
  padding-bottom: 0;
}

.timeline-item summary::-webkit-details-marker {
  display: none;
}

.timeline-item summary::after {
  content: "+";
  position: absolute;
  top: 1px;
  right: 1px;
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 999px;
  color: var(--accent);
  background: var(--bg);
  box-shadow: var(--shadow-small);
}

.timeline-item[open] summary::after {
  content: "−";
}

.timeline-organization {
  margin-top: 0;
  margin-bottom: 0;
  font-weight: 600;
}

.timeline-item h3 {
  margin-bottom: 0;
}

.timeline-details {
  display: grid;
  gap: 10px;
  margin: 0;
  padding-left: 20px;
  color: var(--muted);
  line-height: 1.55;
}

.timeline-details li::marker {
  color: var(--accent);
}

.timeline-item summary > span {
  display: inline-grid;
  place-items: center;
  min-width: 86px;
  min-height: 38px;
  margin-bottom: 34px;
  padding: 0 12px;
  border-radius: 999px;
  color: var(--accent);
  background: var(--bg);
  box-shadow: var(--inner);
  font-size: 0.78rem;
  font-weight: 600;
}

.skills-panel,
.case-study-template {
  display: grid;
  grid-template-columns: minmax(260px, 0.65fr) minmax(0, 1fr);
  gap: 32px;
  margin-bottom: 84px;
  padding: 32px;
  border-radius: 28px;
}

.skill-groups {
  display: grid;
  gap: 16px;
}

.skill-groups article {
  padding: 20px;
  border-radius: 20px;
  background: var(--bg);
  box-shadow: var(--inner);
}

.work-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  margin-bottom: 36px;
}

.work-card {
  display: grid;
  gap: 24px;
  padding: 22px;
  border-radius: 28px;
}

.work-card img {
  width: 100%;
  aspect-ratio: 1.3;
  object-fit: cover;
  border-radius: 20px;
  background: var(--bg);
  box-shadow: none;
}

.work-card div {
  padding: 0 6px 6px;
}

.work-card h2 {
  font-size: clamp(1.65rem, 2.8vw, 2.7rem);
}

.case-study-template ol {
  margin: 0;
  padding-left: 22px;
}

.case-study-template li + li {
  margin-top: 10px;
}

.project-list {
  display: grid;
  gap: 36px;
  margin-bottom: 84px;
}

.project-index {
  display: flex;
  gap: 10px;
  margin-bottom: 36px;
  padding: 12px;
  overflow-x: auto;
  border-radius: 999px;
  background: rgba(245, 244, 242, 0.86);
  box-shadow: var(--shadow-small);
  scrollbar-width: thin;
}

.project-index a {
  flex: 0 0 auto;
  min-height: 40px;
  padding: 11px 16px;
  border-radius: 999px;
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 500;
}

.project-index a:hover,
.project-index a:focus-visible {
  color: var(--ink);
  background: var(--bg);
  box-shadow: var(--inner);
}

.project-feature {
  scroll-margin-top: 24px;
}

.project-feature {
  display: grid;
  grid-template-columns: minmax(260px, 0.42fr) minmax(0, 1fr);
  gap: 28px;
  align-items: start;
  padding: 28px;
  border-radius: 30px;
  background: rgba(245, 244, 242, 0.86);
  box-shadow: var(--shadow-small);
}

.project-copy {
  position: sticky;
  top: 24px;
}

.project-copy p {
  color: var(--muted);
  line-height: 1.65;
}

.project-copy .project-proof {
  display: inline-flex;
  margin: 2px 0 16px;
  padding: 9px 12px;
  border-radius: 999px;
  color: var(--accent);
  background: var(--bg);
  box-shadow: var(--inner);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.03em;
}

.project-meta {
  display: grid;
  gap: 12px;
  margin: 28px 0 0;
}

.project-meta div {
  padding: 16px;
  border-radius: 18px;
  background: var(--bg);
  box-shadow: var(--inner);
}

.project-meta div:nth-child(n + 3) {
  padding: 14px 16px;
}

.project-meta dt {
  margin-bottom: 6px;
  color: var(--accent);
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.project-meta dd {
  margin: 0;
  color: var(--muted);
  line-height: 1.45;
}

.project-gallery {
  display: grid;
  gap: 14px;
}

.project-gallery img {
  width: 100%;
  height: 100%;
  min-height: 0;
  border-radius: 18px;
  background: var(--bg);
  box-shadow: none;
  object-fit: cover;
}

.zoomable-artwork {
  cursor: zoom-in;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease;
}

.zoomable-artwork:hover {
  transform: translateY(-3px);
  box-shadow:
    12px 12px 24px rgba(169, 165, 157, 0.54),
    -12px -12px 24px rgba(255, 255, 255, 0.94);
}

.zoomable-artwork:focus-visible {
  outline: 3px solid rgba(126, 108, 86, 0.78);
  outline-offset: 4px;
}

.folder-groups {
  display: grid;
  gap: 16px;
}

.folder-group {
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--bg);
  box-shadow: none;
}

.folder-group summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 58px;
  padding: 14px 18px;
  color: var(--ink);
  font-weight: 600;
  cursor: pointer;
  list-style: none;
}

.folder-group summary::-webkit-details-marker {
  display: none;
}

.folder-group summary::after {
  content: "+";
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  width: 30px;
  height: 30px;
  margin-left: auto;
  border-radius: 999px;
  background: var(--surface);
  box-shadow: var(--shadow-small);
  color: var(--accent);
}

.folder-group[open] summary::after {
  content: "−";
}

.folder-group summary span:last-of-type {
  color: var(--quiet);
  font-size: 0.78rem;
  font-weight: 500;
}

.folder-group .project-gallery {
  padding: 0 16px 16px;
}

.folder-group .project-gallery img {
  background: #fff;
  box-shadow: none;
  object-fit: contain;
  padding: 18px;
}

.folder-group .project-gallery img.artwork-on-black {
  background: #111;
}

.gallery-two,
.gallery-typefaces {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.gallery-two img {
  aspect-ratio: 1;
}

.gallery-posters img {
  aspect-ratio: 0.72;
}

.gallery-typefaces img {
  aspect-ratio: 1.8;
}

.artwork-lightbox {
  width: min(1180px, calc(100% - 32px));
  height: calc(100vh - 32px);
  max-width: none;
  max-height: calc(100vh - 32px);
  padding: 18px;
  overflow: hidden;
  border: 0;
  border-radius: 28px;
  background: rgba(245, 244, 242, 0.98);
  box-shadow: var(--shadow);
  color: var(--text);
}

.artwork-lightbox[open] {
  display: flex;
  flex-direction: column;
}

.artwork-lightbox::backdrop {
  background: rgba(31, 30, 28, 0.78);
  backdrop-filter: blur(8px);
}

.lightbox-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 14px;
}

.lightbox-toolbar p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.lightbox-close,
.lightbox-nav {
  min-height: 44px;
  padding: 0 18px;
  border: 0;
  border-radius: 999px;
  background: var(--bg);
  box-shadow: var(--shadow-small);
  color: var(--ink);
  font: inherit;
  font-weight: 600;
  cursor: pointer;
}

.lightbox-stage {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  flex: 1;
  gap: 18px;
  min-height: 0;
}

.lightbox-stage img {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: contain;
  border-radius: 18px;
}

.lightbox-stage img.artwork-on-black {
  background: #111;
}

.gallery-mosaic {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.gallery-mosaic img {
  aspect-ratio: 1;
}

.gallery-mosaic img:nth-child(1),
.gallery-mosaic img:nth-child(4) {
  grid-row: span 2;
  aspect-ratio: 0.72;
}

#illustration .gallery-mosaic {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

#illustration .project-gallery img,
#illustration .gallery-mosaic img:nth-child(1),
#illustration .gallery-mosaic img:nth-child(4) {
  grid-row: auto;
  aspect-ratio: 1;
  background: #fff;
  object-fit: contain;
  padding: 14px;
}

#gacha-bakehouse .project-gallery img {
  background: #fff;
  object-fit: contain;
  padding: 14px;
}

.gallery-four {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.gallery-four img {
  aspect-ratio: 1.08;
}

.gallery-poster {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.gallery-poster img {
  aspect-ratio: 0.72;
}

.gallery-poster img:nth-child(n + 5) {
  aspect-ratio: 1.8;
}

.emote-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.emote-grid img {
  aspect-ratio: 1;
  object-fit: contain;
  padding: 18px;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.58fr);
  gap: 28px;
  margin-bottom: 84px;
}

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

.contact-form {
  display: grid;
  gap: 18px;
}

label {
  display: grid;
  gap: 10px;
  color: var(--muted);
  font-size: 0.9rem;
}

input,
select,
textarea {
  width: 100%;
  min-height: 52px;
  border: 0;
  border-radius: 18px;
  outline: 0;
  background: var(--bg);
  box-shadow: var(--inner);
  color: var(--text);
  font: inherit;
  padding: 15px 18px;
}

textarea {
  resize: vertical;
}

.contact-card {
  align-self: start;
}

.contact-card img {
  width: 100%;
  margin-bottom: 28px;
  border-radius: 22px;
  background: var(--bg);
  box-shadow: none;
}

.contact-list {
  display: grid;
  gap: 12px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.contact-list a,
.site-footer a {
  color: var(--ink);
  font-weight: 600;
}

.contact-list a:hover,
.site-footer a:hover {
  color: var(--accent);
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 28px 0 40px;
  color: var(--muted);
}

@media (max-width: 860px) {
  .site-header {
    align-items: stretch;
    flex-direction: column;
  }

  .brand {
    width: max-content;
  }

  .nav {
    justify-content: space-between;
    overflow-x: auto;
  }

  .hero,
  .split-section,
  .contact-layout,
  .editorial-band,
  .skills-panel,
  .case-study-template,
  .project-feature {
    grid-template-columns: 1fr;
  }

  .project-copy {
    position: static;
  }

  .hero {
    min-height: auto;
    padding-top: 28px;
  }

  .portrait-shell {
    order: -1;
    max-width: 440px;
  }

  .discipline-strip,
  .proof-strip,
  .feature-grid,
  .work-grid {
    grid-template-columns: 1fr;
  }

  .proof-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 620px) {
  .site-header,
  main,
  .site-footer {
    width: min(100% - 24px, 1160px);
  }

  .nav a {
    padding-inline: 13px;
  }

  h1 {
    font-size: clamp(2.75rem, 15vw, 4.1rem);
  }

  .page-hero.compact h1 {
    font-size: clamp(2.55rem, 13vw, 3.9rem);
  }

  .discipline-strip,
  .proof-strip,
  .editorial-band,
  .feature-card,
  .timeline-item,
  .work-card,
  .project-feature,
  .contact-form,
  .contact-card,
  .skills-panel,
  .case-study-template {
    border-radius: 22px;
  }

  .gallery-mosaic,
  .gallery-four,
  .gallery-poster,
  .gallery-two,
  .gallery-typefaces {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  #illustration .gallery-mosaic {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .emote-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .project-index {
    margin-inline: -4px;
  }

  .folder-group .project-gallery img {
    padding: 12px;
  }

  .artwork-lightbox {
    width: calc(100% - 16px);
    height: calc(100vh - 16px);
    max-height: calc(100vh - 16px);
    padding: 12px;
    border-radius: 20px;
  }

  .lightbox-stage {
    grid-template-columns: 1fr 1fr;
  }

  .lightbox-stage img {
    grid-column: 1 / -1;
    grid-row: 1;
    min-height: 0;
  }

  .lightbox-nav {
    grid-row: 2;
  }

  .site-footer {
    flex-direction: column;
  }

  .additional-capabilities {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }

  .proof-strip {
    grid-template-columns: 1fr;
  }
}

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