:root {
  color-scheme: light;
  --ink: #101418;
  --muted: #5f686d;
  --paper: #f7f6f0;
  --white: #ffffff;
  --line: #d9ded8;
  --green: #496f60;
  --green-dark: #233d34;
  --copper: #a0663c;
  --shadow: 0 24px 60px rgba(16, 20, 24, 0.16);
  --content: 1160px;
  --ease-out: cubic-bezier(0.2, 0.8, 0.2, 1);
}

* {
  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;
  line-height: 1.55;
}

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

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

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

.skip-link {
  position: fixed;
  left: 1rem;
  top: 1rem;
  z-index: 20;
  padding: 0.65rem 0.9rem;
  background: var(--ink);
  color: var(--white);
  transform: translateY(-160%);
  transition: transform 180ms ease;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  border-bottom: 1px solid rgba(16, 20, 24, 0.1);
  background: rgba(247, 246, 240, 0.9);
  backdrop-filter: blur(18px);
}

.site-nav {
  width: min(100% - 2rem, var(--content));
  min-height: 70px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 1rem;
}

.brand {
  font-size: 0.95rem;
  font-weight: 800;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.35rem;
  color: var(--muted);
  font-size: 0.92rem;
}

.nav-links a,
.site-footer a {
  text-decoration-thickness: 1px;
  text-underline-offset: 0.28em;
}

.nav-links a:hover,
.site-footer a:hover {
  color: var(--ink);
  text-decoration: underline;
}

.language-switch {
  display: inline-flex;
  align-items: center;
  padding: 0.18rem;
  border: 1px solid rgba(16, 20, 24, 0.16);
  background: var(--white);
}

.language-switch button {
  min-width: 42px;
  min-height: 34px;
  border: 0;
  background: transparent;
  color: var(--muted);
  font: inherit;
  font-size: 0.82rem;
  font-weight: 800;
  cursor: pointer;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.language-switch button[aria-pressed="true"] {
  background: var(--ink);
  color: var(--white);
}

.language-switch button:hover {
  transform: translateY(-1px);
}

.hero {
  width: min(100% - 2rem, var(--content));
  min-height: 66svh;
  margin: 0 auto;
  padding: 2rem 0 1rem;
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 360px);
  align-items: center;
  gap: 4rem;
}

.eyebrow,
.section-kicker,
.edition-label {
  margin: 0 0 0.85rem;
  color: var(--green);
  font-size: 0.82rem;
  font-weight: 850;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 620px;
  margin: 0;
  font-size: 4.1rem;
  line-height: 0.96;
  font-weight: 900;
  text-transform: uppercase;
  white-space: pre-line;
}

.lede {
  max-width: 620px;
  margin: 1.5rem 0 0;
  color: #384044;
  font-size: 1.28rem;
}

.hero-actions {
  margin-top: 2rem;
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.hero-actions .shop-dropdown {
  z-index: 30;
}

.button {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.78rem 1rem;
  border: 1px solid var(--ink);
  font-size: 0.95rem;
  font-weight: 800;
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

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

.button.secondary {
  background: transparent;
  color: var(--ink);
}

.button:hover {
  border-color: var(--green-dark);
  background: var(--green-dark);
  color: var(--white);
  transform: translateY(-2px);
}

.facts {
  max-width: 680px;
  margin: 2rem 0 0;
  padding: 1rem 0 0;
  border-top: 1px solid rgba(16, 20, 24, 0.18);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.facts dt {
  margin: 0 0 0.25rem;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.facts dd {
  margin: 0;
  font-weight: 800;
}

.cover-stage {
  --tilt-x: 0deg;
  --tilt-y: 0deg;
  position: relative;
  margin: 0;
  justify-self: end;
  width: min(100%, 300px);
  perspective: 1000px;
  animation: bookFloat 7s ease-in-out infinite;
}

.book-cover-shell {
  position: relative;
  aspect-ratio: 800 / 1215;
  overflow: hidden;
  border: 1px solid rgba(16, 20, 24, 0.14);
  box-shadow: var(--shadow);
  transform: rotateX(var(--tilt-x)) rotateY(var(--tilt-y));
  transform-style: preserve-3d;
  transition: box-shadow 220ms ease, transform 220ms ease;
}

.book-cover-shell::before,
.book-cover-shell::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.book-cover-shell::before {
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(16, 20, 24, 0.2), transparent 13%, transparent 86%, rgba(16, 20, 24, 0.08)),
    linear-gradient(180deg, rgba(255, 255, 255, 0.18), transparent 32%);
  opacity: 0.42;
  mix-blend-mode: multiply;
}

.book-cover-shell::after {
  inset: -30% -65%;
  z-index: 2;
  background: linear-gradient(110deg, transparent 38%, rgba(255, 255, 255, 0.45) 50%, transparent 62%);
  transform: translateX(-90%) rotate(8deg);
  animation: coverGleam 8s ease-in-out infinite;
}

.book-cover-shell img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.book-cover-shell.is-swapping {
  animation: coverSwap 420ms var(--ease-out);
}

.cover-stage:hover .book-cover-shell {
  box-shadow: 0 34px 76px rgba(16, 20, 24, 0.22);
}

.edition-card img {
  aspect-ratio: 800 / 1215;
  object-fit: cover;
  border: 1px solid rgba(16, 20, 24, 0.14);
  box-shadow: var(--shadow);
  transition: transform 260ms var(--ease-out), box-shadow 260ms ease;
}

.cover-stage figcaption {
  margin-top: 0.85rem;
  color: var(--muted);
  font-size: 0.9rem;
  text-align: center;
  transition: opacity 180ms ease, transform 180ms ease;
}

.cover-stage:hover figcaption {
  opacity: 0.82;
  transform: translateY(2px);
}

.intro-section,
.themes-section,
.editions-section {
  padding: 5.5rem 0;
}

.intro-section {
  padding: 3rem 0 5.5rem;
  background: var(--white);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.section-copy,
.section-heading,
.theme-grid,
.edition-list {
  width: min(100% - 2rem, var(--content));
  margin: 0 auto;
}

.section-copy {
  max-width: 850px;
}

.section-copy h2,
.section-heading h2 {
  margin: 0;
  font-size: 2.7rem;
  line-height: 1.08;
}

.section-copy p:not(.section-kicker) {
  margin: 1.35rem 0 0;
  color: #343c40;
  font-size: 1.1rem;
}

.section-heading {
  margin-bottom: 2rem;
}

.theme-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.theme-card,
.edition-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(16, 20, 24, 0.13);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
  transition: border-color 220ms ease, box-shadow 220ms ease, transform 220ms var(--ease-out);
}

.theme-card::before,
.edition-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border: 2px solid var(--green);
  border-radius: inherit;
  pointer-events: none;
  opacity: 0;
  transform: scale(0.985);
  transition: opacity 220ms ease, transform 260ms var(--ease-out);
}

.theme-card:hover,
.edition-card:hover {
  border-color: rgba(73, 111, 96, 0.38);
  box-shadow: 0 18px 42px rgba(16, 20, 24, 0.1);
  transform: translateY(-6px);
}

.theme-card:hover::before,
.edition-card:hover::before {
  opacity: 1;
  transform: scale(1);
}

.theme-card {
  min-height: 260px;
  padding: 1.35rem;
  display: flex;
  flex-direction: column;
}

.theme-number {
  color: var(--copper);
  font-size: 0.9rem;
  font-weight: 900;
  transition: transform 220ms var(--ease-out);
}

.theme-card:hover .theme-number {
  transform: translateX(4px);
}

.theme-card h3 {
  margin: 1.6rem 0 0.7rem;
  font-size: 1.45rem;
  line-height: 1.1;
}

.theme-card p {
  margin: 0;
  color: #424b4f;
}

.theme-expand {
  margin-top: 1.15rem;
  border-top: 1px solid rgba(16, 20, 24, 0.12);
}

.theme-expand summary {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  color: var(--green-dark);
  font-size: 0.9rem;
  font-weight: 850;
  cursor: pointer;
  list-style: none;
  transition: color 180ms ease, transform 180ms ease;
}

.theme-expand summary::-webkit-details-marker {
  display: none;
}

.theme-expand summary::after {
  content: "+";
  width: 1.35rem;
  height: 1.35rem;
  display: inline-grid;
  place-items: center;
  border: 1px solid rgba(16, 20, 24, 0.22);
  font-size: 0.95rem;
  line-height: 1;
  transition: transform 220ms var(--ease-out), border-color 180ms ease;
}

.theme-expand summary:hover {
  color: var(--ink);
  transform: translateX(3px);
}

.theme-expand[open] summary::after {
  content: "–";
  border-color: rgba(73, 111, 96, 0.42);
  transform: rotate(180deg);
}

.theme-expand .less-label,
.theme-expand[open] .more-label {
  display: none;
}

.theme-expand[open] .less-label {
  display: inline;
}

.theme-extra {
  display: grid;
  gap: 0.85rem;
  max-height: 0;
  padding: 0;
  position: relative;
  overflow: hidden;
  opacity: 0;
  clip-path: inset(0 0 100% 0);
  will-change: max-height, opacity, clip-path;
}

.theme-expand[open] .theme-extra {
  max-height: var(--theme-extra-height, 520px);
  padding: 0 0 0.15rem;
  opacity: 1;
  clip-path: inset(0 0 0 0);
}

.theme-expand.is-opening .theme-extra {
  animation: textRevealDown 880ms var(--ease-out) both;
}

.theme-expand.is-closing .theme-extra {
  animation: textRevealUp 680ms var(--ease-out) both;
}

.theme-expand.is-opening .theme-extra::after,
.theme-expand.is-closing .theme-extra::after {
  content: "";
  position: absolute;
  inset: -18% -10%;
  pointer-events: none;
  background: linear-gradient(
    180deg,
    transparent 0%,
    rgba(73, 111, 96, 0.02) 18%,
    rgba(73, 111, 96, 0.16) 42%,
    rgba(255, 255, 255, 0.7) 50%,
    rgba(160, 102, 60, 0.12) 58%,
    transparent 78%
  );
  mix-blend-mode: multiply;
  transform: translateY(-115%);
}

.theme-expand.is-opening .theme-extra::after {
  animation: textCorrectionSweepDown 940ms var(--ease-out) 80ms both;
}

.theme-expand.is-closing .theme-extra::after {
  animation: textCorrectionSweepUp 700ms var(--ease-out) both;
}

.theme-extra p {
  color: #364044;
  font-size: 0.98rem;
}

.theme-expand.is-opening .theme-extra p {
  animation: textLineIn 640ms var(--ease-out) both;
}

.theme-expand.is-opening .theme-extra p:nth-child(2) {
  animation-delay: 140ms;
}

.theme-expand.is-closing .theme-extra p {
  animation: textLineOut 420ms ease both;
}

.theme-expand.is-closing .theme-extra p:nth-child(2) {
  animation-delay: 60ms;
}

.statement-band {
  padding: 4.5rem 1rem;
  background:
    linear-gradient(90deg, rgba(73, 111, 96, 0.12) 1px, transparent 1px),
    linear-gradient(180deg, rgba(73, 111, 96, 0.12) 1px, transparent 1px),
    var(--green-dark);
  background-size: 44px 44px;
  color: var(--white);
  animation: gridDrift 22s linear infinite;
}

.statement-band blockquote {
  width: min(100%, 900px);
  margin: 0 auto;
  font-size: 2.3rem;
  line-height: 1.18;
  font-weight: 850;
  text-align: center;
}

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

.editions-heading {
  position: relative;
  z-index: 4;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
}

.shop-dropdown {
  position: relative;
  flex: 0 0 auto;
}

.shop-dropdown[open] {
  z-index: 40;
}

.shop-dropdown summary {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  padding: 0.78rem 1rem;
  border: 1px solid var(--ink);
  background: var(--ink);
  color: var(--white);
  font-size: 0.95rem;
  font-weight: 850;
  cursor: pointer;
  list-style: none;
  transition: background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.shop-dropdown summary::-webkit-details-marker {
  display: none;
}

.shop-dropdown summary::after {
  content: "";
  width: 0.46rem;
  height: 0.46rem;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: translateY(-2px) rotate(45deg);
  transition: transform 180ms ease;
}

.shop-dropdown summary:hover,
.shop-dropdown summary:focus-visible {
  border-color: var(--green-dark);
  background: var(--green-dark);
  transform: translateY(-2px);
}

.shop-dropdown summary:focus-visible {
  outline: 2px solid rgba(73, 111, 96, 0.35);
  outline-offset: 3px;
}

.shop-dropdown[open] summary::after {
  transform: translateY(2px) rotate(225deg);
}

.shop-vendors {
  position: absolute;
  top: calc(100% + 0.6rem);
  right: 0;
  min-width: 285px;
  padding: 0.72rem;
  border: 1px solid rgba(16, 20, 24, 0.14);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 20px 45px rgba(16, 20, 24, 0.16);
  display: grid;
  gap: 0.7rem;
}

.vendor-group {
  display: grid;
  gap: 0.28rem;
}

.vendor-group + .vendor-group {
  padding-top: 0.7rem;
  border-top: 1px solid rgba(16, 20, 24, 0.1);
}

.vendor-group p {
  margin: 0 0 0.18rem;
  color: var(--muted);
  font-size: 0.74rem;
  font-weight: 850;
  text-transform: uppercase;
}

.shop-vendors a {
  min-height: 38px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.56rem 0.66rem;
  border-radius: 6px;
  color: var(--ink);
  font-size: 0.92rem;
  font-weight: 800;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.shop-vendors a::after {
  content: "";
  width: 0.42rem;
  height: 0.42rem;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  opacity: 0.62;
  transform: rotate(45deg);
}

.shop-vendors a:hover,
.shop-vendors a:focus-visible {
  background: rgba(73, 111, 96, 0.1);
  color: var(--green-dark);
  transform: translateX(2px);
}

.shop-vendors a:focus-visible {
  outline: 2px solid rgba(73, 111, 96, 0.28);
  outline-offset: 2px;
}

.hero-actions .shop-vendors {
  left: 0;
  right: auto;
  width: 285px;
}

.edition-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.edition-card {
  min-height: 360px;
  padding: 1.15rem;
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr);
  align-items: center;
  gap: 1.2rem;
}

.edition-card img {
  width: 150px;
  box-shadow: 0 16px 35px rgba(16, 20, 24, 0.18);
}

.edition-card:hover img {
  box-shadow: 0 22px 42px rgba(16, 20, 24, 0.24);
  transform: translateY(-5px) rotate(-1.5deg);
}

.edition-card:nth-child(2):hover img {
  transform: translateY(-5px) rotate(1.5deg);
}

.edition-card h3 {
  margin: 0;
  font-size: 1.55rem;
  line-height: 1.1;
}

.edition-card p:not(.edition-label) {
  margin: 0.85rem 0 0;
  color: #424b4f;
}

.site-footer {
  width: min(100% - 2rem, var(--content));
  min-height: 86px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  color: var(--muted);
  font-size: 0.92rem;
}

.site-footer p {
  margin: 0;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 620ms var(--ease-out), transform 620ms var(--ease-out);
  transition-delay: var(--reveal-delay, 0ms);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.hero-copy.reveal {
  --reveal-delay: 70ms;
}

.cover-stage.reveal {
  --reveal-delay: 170ms;
}

.theme-card:nth-child(2),
.edition-card:nth-child(2) {
  --reveal-delay: 120ms;
}

.theme-card:nth-child(3) {
  --reveal-delay: 220ms;
}

@keyframes bookFloat {
  0%,
  100% {
    transform: translateY(0) rotate(-0.3deg);
  }

  50% {
    transform: translateY(-9px) rotate(0.45deg);
  }
}

@keyframes coverGleam {
  0%,
  34% {
    transform: translateX(-95%) rotate(8deg);
  }

  52% {
    transform: translateX(95%) rotate(8deg);
  }

  100% {
    transform: translateX(95%) rotate(8deg);
  }
}

@keyframes coverSwap {
  0% {
    opacity: 0.55;
    transform: scale(0.985) rotateX(var(--tilt-x)) rotateY(var(--tilt-y));
  }

  100% {
    opacity: 1;
    transform: scale(1) rotateX(var(--tilt-x)) rotateY(var(--tilt-y));
  }
}

@keyframes textRevealDown {
  0% {
    max-height: 0;
    opacity: 0;
    clip-path: inset(0 0 100% 0);
  }

  35% {
    opacity: 1;
  }

  100% {
    max-height: var(--theme-extra-height, 520px);
    opacity: 1;
    clip-path: inset(0 0 0 0);
  }
}

@keyframes textRevealUp {
  0% {
    max-height: var(--theme-extra-height, 520px);
    opacity: 1;
    clip-path: inset(0 0 0 0);
  }

  55% {
    opacity: 1;
  }

  100% {
    max-height: 0;
    opacity: 0;
    clip-path: inset(0 0 100% 0);
  }
}

@keyframes textCorrectionSweepDown {
  0% {
    opacity: 0;
    transform: translateY(-115%);
  }

  18% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    transform: translateY(115%);
  }
}

@keyframes textCorrectionSweepUp {
  0% {
    opacity: 0;
    transform: translateY(115%);
  }

  18% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    transform: translateY(-115%);
  }
}

@keyframes textLineIn {
  0% {
    opacity: 0;
    filter: blur(4px);
    transform: translateY(-8px);
  }

  100% {
    opacity: 1;
    filter: blur(0);
    transform: translateY(0);
  }
}

@keyframes textLineOut {
  0% {
    opacity: 1;
    filter: blur(0);
    transform: translateY(0);
  }

  100% {
    opacity: 0;
    filter: blur(3px);
    transform: translateY(-6px);
  }
}

@keyframes gridDrift {
  0% {
    background-position: 0 0, 0 0, 0 0;
  }

  100% {
    background-position: 44px 0, 0 44px, 0 0;
  }
}

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

  .nav-links {
    display: none;
  }

  .hero {
    min-height: auto;
    padding: 3rem 0;
    grid-template-columns: minmax(0, 1fr);
    gap: 2.5rem;
  }

  .hero h1 {
    font-size: 3.4rem;
  }

  .cover-stage {
    justify-self: start;
    width: min(100%, 300px);
  }

  .theme-grid,
  .edition-list {
    grid-template-columns: 1fr;
  }

  .editions-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .shop-dropdown {
    width: min(100%, 320px);
  }

  .shop-dropdown summary {
    width: 100%;
    justify-content: space-between;
  }

  .shop-vendors {
    left: 0;
    right: auto;
    width: min(calc(100vw - 2rem), 320px);
  }
}

@media (max-width: 620px) {
  .site-nav {
    min-height: 62px;
    width: min(100% - 1rem, var(--content));
  }

  .brand {
    font-size: 0.82rem;
  }

  .language-switch button {
    min-width: 38px;
  }

  .hero {
    width: min(100% - 1rem, var(--content));
    padding: 1.6rem 0 2rem;
    gap: 1.75rem;
  }

  .hero h1 {
    font-size: 2.35rem;
  }

  .lede {
    margin-top: 1rem;
    font-size: 1.05rem;
  }

  .hero-actions {
    margin-top: 1.25rem;
    align-items: stretch;
  }

  .button {
    flex: 1 1 0;
    padding: 0.72rem 0.65rem;
    font-size: 0.88rem;
  }

  .hero-actions .shop-dropdown,
  .hero-actions .shop-dropdown[open],
  .hero-actions .shop-vendors {
    flex-basis: 100%;
    width: 100%;
  }

  .facts {
    display: none;
  }

  .cover-stage {
    justify-self: center;
    width: min(52vw, 180px);
  }

  .intro-section,
  .themes-section,
  .editions-section {
    padding: 3.5rem 0;
  }

  .section-copy,
  .section-heading,
  .theme-grid,
  .edition-list {
    width: min(100% - 1rem, var(--content));
  }

  .section-copy h2,
  .section-heading h2 {
    font-size: 2rem;
  }

  .shop-dropdown,
  .shop-vendors {
    width: min(calc(100vw - 1rem), 320px);
  }

  .theme-card {
    min-height: 210px;
  }

  .statement-band {
    padding: 3.3rem 1rem;
  }

  .statement-band blockquote {
    font-size: 1.65rem;
    text-align: left;
  }

  .edition-card {
    grid-template-columns: 112px minmax(0, 1fr);
    gap: 0.95rem;
    padding: 0.85rem;
  }

  .edition-card img {
    width: 112px;
  }

  .edition-card h3 {
    font-size: 1.18rem;
  }

  .site-footer {
    width: min(100% - 1rem, var(--content));
    min-height: 96px;
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
  }
}

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

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }

  .theme-card:hover,
  .edition-card:hover,
  .button:hover,
  .language-switch button:hover,
  .cover-stage:hover figcaption {
    transform: none;
  }

  .book-cover-shell {
    transform: none !important;
  }
}
