* {
  box-sizing: border-box;
}

html {
  background: var(--color-cream);
  color: var(--color-obsidian-900);
  font-family: var(--font-mono);
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 15% 2%, rgba(219, 177, 170, 0.34), transparent 30rem),
    radial-gradient(circle at 86% 18%, rgba(143, 179, 204, 0.18), transparent 28rem),
    linear-gradient(180deg, #f8f5ee 0%, #ede8df 46%, #f6f1e8 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  opacity: 0.24;
  background-image:
    linear-gradient(rgba(5, 5, 5, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(5, 5, 5, 0.055) 1px, transparent 1px);
  background-size: 76px 76px;
}

body.is-scrolled .site-header {
  background: rgba(248, 245, 238, 0.9);
  box-shadow: 0 14px 44px rgba(5, 5, 5, 0.08);
}

a {
  color: inherit;
}

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

img {
  max-width: 100%;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  min-height: 74px;
  padding: 14px clamp(20px, 4vw, 56px);
  border-bottom: 1px solid rgba(5, 5, 5, 0.12);
  background: rgba(248, 245, 238, 0.74);
  backdrop-filter: blur(18px);
  transition: background 260ms var(--ease-out), box-shadow 260ms var(--ease-out);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--color-obsidian-900);
  text-decoration: none;
}

.brand img {
  width: 31px;
  height: 42px;
  object-fit: contain;
}

.brand span {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 800;
  text-transform: uppercase;
}

nav {
  justify-self: center;
  display: flex;
  gap: 26px;
}

nav a,
.header-cta,
.contact-link {
  font-size: 12px;
  font-weight: 800;
  text-decoration: none;
  text-transform: uppercase;
}

nav a {
  color: rgba(5, 5, 5, 0.62);
}

nav a:hover {
  color: var(--color-obsidian-900);
}

.header-cta {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 16px;
  border: 1px solid rgba(5, 5, 5, 0.2);
  border-radius: var(--radius);
  color: var(--color-obsidian-900);
}

.cinematic-section {
  position: relative;
  height: 320vh;
}

.cinematic-pin {
  position: sticky;
  top: 0;
  min-height: 100vh;
  overflow: hidden;
  background:
    radial-gradient(circle at 68% 46%, rgba(219, 177, 170, 0.2), transparent 28rem),
    radial-gradient(circle at 44% 55%, rgba(255, 250, 241, 0.94), transparent 36rem),
    linear-gradient(180deg, #f7f4ed 0%, #ece6dc 100%);
}

.stage-ambient {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(247, 244, 237, 0.98) 0%, rgba(247, 244, 237, 0.9) 34%, rgba(247, 244, 237, 0.22) 56%, rgba(247, 244, 237, 0) 74%),
    linear-gradient(180deg, rgba(247, 244, 237, 0.62) 0%, rgba(247, 244, 237, 0) 36%, rgba(247, 244, 237, 0.38) 100%),
    radial-gradient(circle at 72% 50%, rgba(219, 177, 170, 0.22), transparent 26rem);
}

.character-stage {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.character-stage {
  z-index: 1;
  overflow: hidden;
  pointer-events: none;
}

.character-stage::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(180deg, rgba(247, 244, 237, 0) 0%, rgba(247, 244, 237, 0.04) 58%, rgba(247, 244, 237, 0.48) 100%),
    radial-gradient(circle at 82% 20%, rgba(5, 5, 5, 0.18), transparent 28rem);
}

.character-frame {
  position: absolute;
  inset: 0;
  opacity: 1;
  transform: scale(1) translate3d(0, 0, 0);
  transform-origin: 68% 48%;
  transition: transform 900ms var(--ease-out);
}

.is-visual-ready .character-frame {
  opacity: 1;
  transform: scale(1) translate3d(0, 0, 0);
}

.character-frame.is-ready {
  opacity: 1;
}

.character-photo {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.94) contrast(1.02);
}

.motion-canvas {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  opacity: 1;
  filter: saturate(0.94) contrast(1.02);
}

.coffee-glow {
  position: absolute;
  z-index: 4;
  left: 63%;
  top: 47%;
  width: clamp(54px, 8vw, 112px);
  aspect-ratio: 1;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(255, 248, 236, 0.62), rgba(219, 177, 170, 0.18) 48%, transparent 70%);
  mix-blend-mode: screen;
  opacity: 0.72;
}

.steam {
  position: absolute;
  z-index: 5;
  left: 65%;
  top: 40%;
  width: 1px;
  height: 74px;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(247, 244, 237, 0), rgba(247, 244, 237, 0.72), rgba(247, 244, 237, 0));
  opacity: 0.55;
  filter: blur(2px);
  transform-origin: bottom;
  animation: steamDrift 4.8s ease-in-out infinite;
}

.steam-b {
  left: 66.1%;
  height: 60px;
  animation-delay: 1.2s;
}

.steam-c {
  left: 64.1%;
  height: 50px;
  animation-delay: 2.1s;
}

.system-chip {
  position: absolute;
  z-index: 4;
  display: grid;
  gap: 7px;
  width: clamp(178px, 17vw, 250px);
  padding: 16px 18px;
  border: 1px solid rgba(247, 244, 237, 0.26);
  border-radius: var(--radius);
  background: rgba(8, 8, 7, 0.46);
  color: var(--color-cream);
  box-shadow: 0 24px 74px rgba(5, 5, 5, 0.18);
  backdrop-filter: blur(18px);
  opacity: 0;
  transform: translate3d(22px, 18px, 0);
}

.system-chip span {
  color: var(--color-ember-500);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.system-chip strong {
  font-family: var(--font-display);
  font-size: clamp(18px, 1.55vw, 24px);
  line-height: 0.98;
}

.chip-a {
  right: clamp(22px, 8vw, 120px);
  top: 22vh;
}

.chip-b {
  right: clamp(28px, 15vw, 240px);
  bottom: 18vh;
}

.chip-c {
  right: clamp(18px, 4vw, 64px);
  bottom: 34vh;
}

.chapter-stack {
  position: relative;
  z-index: 4;
  display: grid;
  align-items: center;
  width: min(48vw, 760px);
  min-height: 100vh;
  padding: 118px 0 80px clamp(22px, 6vw, 84px);
  pointer-events: none;
}

.chapter {
  grid-area: 1 / 1;
  max-width: 760px;
  opacity: 0;
  transform: translateY(28px);
  filter: blur(12px);
}

.chapter.is-active {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

.eyebrow,
.section-label,
.section-header span,
.service-grid article span,
.process-list article span {
  color: var(--color-ember-500);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  color: var(--color-obsidian-900);
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: 0;
}

.chapter h1,
.chapter h2 {
  margin-top: 20px;
  font-size: clamp(50px, 6.45vw, 98px);
  line-height: 0.9;
}

.chapter p:not(.eyebrow) {
  max-width: 620px;
  margin-top: 26px;
  color: rgba(5, 5, 5, 0.7);
  font-family: var(--font-serif);
  font-size: clamp(18px, 1.65vw, 25px);
  line-height: 1.44;
}

.scroll-cue {
  position: absolute;
  z-index: 5;
  left: clamp(22px, 6vw, 84px);
  bottom: 28px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: rgba(5, 5, 5, 0.58);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.scroll-cue span {
  width: 42px;
  height: 1px;
  background: rgba(5, 5, 5, 0.3);
}

@keyframes steamDrift {
  0% {
    opacity: 0;
    transform: translate3d(0, 18px, 0) rotate(0deg) scaleY(0.62);
  }

  32% {
    opacity: 0.58;
  }

  100% {
    opacity: 0;
    transform: translate3d(16px, -34px, 0) rotate(9deg) scaleY(1.08);
  }
}

.section {
  width: min(100%, 1440px);
  margin: 0 auto;
  padding: 108px clamp(22px, 4vw, 56px);
  scroll-margin-top: 96px;
}

.statement {
  display: grid;
  grid-template-columns: minmax(160px, 0.22fr) minmax(0, 0.78fr);
  gap: clamp(28px, 6vw, 86px);
  width: 100%;
  max-width: none;
  padding-right: max(clamp(22px, 4vw, 56px), calc((100vw - 1328px) / 2));
  padding-left: max(clamp(22px, 4vw, 56px), calc((100vw - 1328px) / 2));
  border-top: 1px solid rgba(5, 5, 5, 0.08);
  border-bottom: 1px solid rgba(5, 5, 5, 0.08);
  background:
    radial-gradient(circle at 78% 12%, rgba(219, 177, 170, 0.18), transparent 24rem),
    linear-gradient(180deg, #f8f5ee 0%, #f2ede4 100%);
}

.statement h2 {
  max-width: 1120px;
  font-size: clamp(40px, 5vw, 78px);
  line-height: 0.94;
}

.section-header h2,
.world-copy h2,
.contact h2 {
  font-size: clamp(42px, 5.6vw, 86px);
  line-height: 0.92;
}

.statement p {
  max-width: 1060px;
  margin-top: 24px;
  color: rgba(5, 5, 5, 0.66);
  font-family: var(--font-serif);
  font-size: clamp(18px, 1.65vw, 23px);
  line-height: 1.55;
}

.world-copy p {
  max-width: 820px;
  margin-top: 24px;
  color: rgba(5, 5, 5, 0.68);
  font-family: var(--font-serif);
  font-size: clamp(18px, 1.8vw, 24px);
  line-height: 1.55;
}

.section-header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 34px;
}

.section-header > div {
  max-width: 980px;
}

.section-header p,
.page-hero p,
.tool-section p {
  max-width: 820px;
  margin-top: 18px;
  color: rgba(5, 5, 5, 0.66);
  font-family: var(--font-serif);
  font-size: clamp(17px, 1.55vw, 23px);
  line-height: 1.55;
}

.answer-brief {
  width: 100%;
  max-width: none;
  background:
    radial-gradient(circle at 18% 12%, rgba(219, 177, 170, 0.2), transparent 26rem),
    linear-gradient(180deg, #f7f4ed 0%, #f1eadf 100%);
}

.answer-brief .section-header,
.answer-grid {
  width: min(100%, 1328px);
  margin-right: auto;
  margin-left: auto;
}

.answer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
  gap: 14px;
}

.answer-card,
.faq-list article,
.service-detail {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(5, 5, 5, 0.14);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.82), rgba(219, 177, 170, 0.1)),
    rgba(247, 244, 237, 0.82);
  box-shadow: 0 24px 70px rgba(5, 5, 5, 0.05);
}

.answer-card {
  min-height: 310px;
  padding: clamp(24px, 3vw, 42px);
}

.answer-card::after,
.service-detail::after {
  content: "";
  position: absolute;
  right: -72px;
  bottom: -72px;
  width: 180px;
  height: 180px;
  border: 1px solid rgba(219, 177, 170, 0.46);
  border-radius: 999px;
}

.answer-card span,
.service-detail span {
  color: var(--color-ember-500);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.answer-card h3 {
  max-width: 740px;
  margin-top: 28px;
  font-size: clamp(30px, 3.2vw, 52px);
  line-height: 0.96;
}

.answer-card p {
  max-width: 760px;
  margin-top: 20px;
  color: rgba(5, 5, 5, 0.68);
  font-family: var(--font-serif);
  font-size: clamp(17px, 1.45vw, 22px);
  line-height: 1.56;
}

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

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

.service-grid article,
.process-list article {
  min-height: 270px;
  padding: 24px;
  border: 1px solid rgba(5, 5, 5, 0.14);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.82), rgba(219, 177, 170, 0.1)),
    rgba(247, 244, 237, 0.82);
  box-shadow: 0 24px 70px rgba(5, 5, 5, 0.05);
}

.service-grid h3,
.process-list h3 {
  margin-top: 40px;
  font-size: clamp(25px, 2.4vw, 38px);
  line-height: 0.98;
}

.service-grid p,
.process-list p {
  margin-top: 18px;
  color: rgba(5, 5, 5, 0.66);
  font-size: 16px;
  line-height: 1.55;
}

.section-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  margin-top: 24px;
  padding: 0 18px;
  border: 1px solid rgba(5, 5, 5, 0.18);
  border-radius: var(--radius);
  background: var(--color-obsidian-900);
  color: var(--color-cream);
  font-size: 12px;
  font-weight: 800;
  text-decoration: none;
  text-transform: uppercase;
}

.world {
  display: grid;
  grid-template-columns: minmax(0, 0.42fr) minmax(0, 0.58fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
}

.world-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(0, 0.74fr);
  gap: 16px;
  align-items: end;
}

.world-card {
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(5, 5, 5, 0.14);
  border-radius: var(--radius);
  background: #efe8de;
  box-shadow: 0 24px 74px rgba(5, 5, 5, 0.13);
}

.world-card img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.world-card:not(.tall) {
  transform: translateY(12%);
}

.process {
  width: 100%;
  max-width: none;
  color: var(--color-cream);
  background: var(--color-obsidian-800);
}

.process .section-header {
  width: min(100%, 1328px);
  margin-right: auto;
  margin-left: auto;
}

.process .section-header h2,
.process h3 {
  color: var(--color-cream);
}

.process-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  width: min(100%, 1328px);
  margin: 0 auto;
}

.process-list article {
  border-color: rgba(247, 244, 237, 0.16);
  background:
    linear-gradient(145deg, rgba(247, 244, 237, 0.1), rgba(219, 177, 170, 0.06)),
    #11100f;
}

.process-list p {
  color: rgba(247, 244, 237, 0.66);
}

.faq {
  width: 100%;
  max-width: none;
  background:
    radial-gradient(circle at 84% 8%, rgba(219, 177, 170, 0.2), transparent 24rem),
    linear-gradient(180deg, #f8f5ee 0%, #efe8de 100%);
}

.faq .section-header,
.faq-list {
  width: min(100%, 1328px);
  margin-right: auto;
  margin-left: auto;
}

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

.faq-list article {
  min-height: 220px;
  padding: clamp(22px, 2.6vw, 34px);
}

.faq-list h3 {
  font-size: clamp(24px, 2.3vw, 36px);
  line-height: 1;
}

.faq-list p {
  margin-top: 18px;
  color: rgba(5, 5, 5, 0.66);
  font-family: var(--font-serif);
  font-size: 16px;
  line-height: 1.58;
}

.contact {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 32px;
  align-items: end;
  min-height: 58vh;
}

.contact h2 {
  max-width: 900px;
  margin-top: 18px;
}

.contact-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  padding: 0 18px;
  border: 1px solid rgba(5, 5, 5, 0.18);
  border-radius: var(--radius);
  background: var(--color-obsidian-900);
  color: var(--color-cream);
  white-space: nowrap;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 30px clamp(22px, 4vw, 56px);
  border-top: 1px solid rgba(5, 5, 5, 0.12);
}

.site-footer img {
  width: min(280px, 56vw);
  height: auto;
}

.site-footer p {
  color: rgba(5, 5, 5, 0.6);
  font-size: 14px;
}

.page-hero {
  min-height: 68vh;
  display: grid;
  align-content: end;
  padding-top: 150px;
  background:
    radial-gradient(circle at 72% 22%, rgba(219, 177, 170, 0.24), transparent 26rem),
    radial-gradient(circle at 12% 86%, rgba(5, 5, 5, 0.08), transparent 20rem);
}

.page-hero h1 {
  max-width: 1120px;
  margin-top: 18px;
  font-size: clamp(56px, 8.6vw, 138px);
  line-height: 0.86;
}

.service-detail-section {
  padding-top: 34px;
}

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

.service-detail {
  min-height: 440px;
  padding: clamp(24px, 3vw, 42px);
}

.service-detail h2 {
  max-width: 620px;
  margin-top: 30px;
  font-size: clamp(31px, 3.1vw, 54px);
  line-height: 0.95;
}

.service-detail p {
  max-width: 700px;
  margin-top: 20px;
  color: rgba(5, 5, 5, 0.66);
  font-family: var(--font-serif);
  font-size: 17px;
  line-height: 1.58;
}

.service-detail ul {
  display: grid;
  gap: 10px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}

.service-detail li {
  display: flex;
  gap: 10px;
  color: rgba(5, 5, 5, 0.72);
  font-size: 14px;
  line-height: 1.45;
}

.service-detail li::before {
  content: "";
  flex: 0 0 auto;
  width: 8px;
  height: 8px;
  margin-top: 6px;
  border-radius: 999px;
  background: var(--color-ember-500);
}

.tool-section {
  width: 100%;
  max-width: none;
  background: var(--color-obsidian-800);
}

.tool-section h2,
.tool-section h3 {
  color: var(--color-cream);
}

.tool-section p {
  color: rgba(247, 244, 237, 0.68);
}

.tool-inner {
  width: min(100%, 1328px);
  margin: 0 auto;
}

.tool-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 34px;
}

.tool-cloud span {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 14px;
  border: 1px solid rgba(247, 244, 237, 0.16);
  border-radius: 999px;
  background: rgba(247, 244, 237, 0.06);
  color: rgba(247, 244, 237, 0.82);
  font-size: 13px;
  font-weight: 800;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  filter: blur(10px);
  transition:
    opacity 780ms var(--ease-out),
    transform 780ms var(--ease-out),
    filter 780ms var(--ease-out);
}

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

@media (max-width: 980px) {
  nav {
    display: none;
  }

  .cinematic-pin {
    min-height: 100svh;
  }

  .stage-ambient {
    background:
      linear-gradient(180deg, rgba(247, 244, 237, 0.99) 0%, rgba(247, 244, 237, 0.96) 46%, rgba(247, 244, 237, 0.62) 69%, rgba(247, 244, 237, 0) 100%),
      radial-gradient(circle at 72% 54%, rgba(219, 177, 170, 0.18), transparent 18rem);
  }

  .character-frame {
    inset: auto 0 0 auto;
    width: min(62vw, 520px);
    min-width: 360px;
    height: 68vh;
    transform-origin: 62% 58%;
  }

  .character-photo {
    object-position: 63% center;
  }

  .system-chip {
    width: min(240px, 42vw);
  }

  .chip-a {
    top: auto;
    right: 24px;
    bottom: 36vh;
  }

  .chip-b {
    right: auto;
    left: 24px;
    bottom: 18vh;
  }

  .chip-c {
    display: none;
  }

  .chapter-stack {
    align-items: start;
    width: 100%;
    padding: 96px 24px 0;
  }

  .chapter {
    max-width: 680px;
  }

  .chapter h1,
  .chapter h2 {
    font-size: clamp(44px, 12vw, 82px);
  }

  .chapter p:not(.eyebrow) {
    max-width: 560px;
    font-size: 18px;
  }

  .statement,
  .world,
  .contact {
    grid-template-columns: 1fr;
  }

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

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

  .faq-list,
  .service-detail-grid {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 680px) {
  .site-header {
    min-height: 68px;
  }

  .brand span {
    font-size: 19px;
  }

  .header-cta {
    min-height: 34px;
    padding: 0 12px;
  }

  .scroll-cue {
    display: none;
  }

  .character-frame {
    inset: auto -12vw 0 auto;
    width: 78vw;
    min-width: 0;
    height: 58vh;
  }

  .character-photo {
    object-position: center 42%;
  }

  .coffee-glow,
  .steam {
    display: none;
  }

  .system-chip {
    display: none;
  }

  .section {
    padding-top: 78px;
    padding-bottom: 78px;
  }

  .statement h2,
  .section-header h2,
  .world-copy h2,
  .contact h2 {
    font-size: 42px;
  }

  .page-hero h1 {
    font-size: clamp(48px, 15vw, 76px);
  }

  .answer-card h3,
  .service-detail h2 {
    font-size: 34px;
  }

  .section-header {
    display: block;
  }

  .section-header h2 {
    margin-top: 12px;
  }

  .service-grid,
  .process-list,
  .world-grid,
  .faq-list,
  .service-detail-grid {
    grid-template-columns: 1fr;
  }

  .world-card:not(.tall) {
    transform: none;
  }

  .service-grid article,
  .process-list article {
    min-height: 230px;
  }

  .site-footer {
    align-items: start;
    flex-direction: column;
  }
}

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

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