:root {
  --bone: #f5f0e8;
  --paper: #faf7f2;
  --paper-strong: #fffaf3;
  --ink: #1f1e1c;
  --charcoal: #1e1e1e;
  --muted: #746a61;
  --soft-muted: #8f8479;
  --clay: #9b654f;
  --clay-dark: #6d4034;
  --sage: #6d7566;
  --sand: #e9ded0;
  --line: rgba(31, 30, 28, 0.14);
  --soft-line: rgba(31, 30, 28, 0.08);
  --dark-line: rgba(250, 247, 242, 0.18);
  --shadow: 0 28px 80px rgba(50, 36, 26, 0.11);
  --container: min(1180px, calc(100% - 40px));
  --serif: Fraunces, "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --sans: "DM Sans", Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

[hidden] {
  display: none !important;
}

html {
  scroll-behavior: smooth;
  background: var(--bone);
}

body {
  margin: 0;
  padding-bottom: calc(68px + env(safe-area-inset-bottom));
  overflow-x: hidden;
  color: var(--ink);
  background:
    linear-gradient(180deg, rgba(250, 247, 242, 0.92) 0, rgba(245, 240, 232, 0) 360px),
    linear-gradient(90deg, rgba(31, 30, 28, 0.035) 1px, transparent 1px),
    var(--bone);
  background-size: auto, 88px 88px, auto;
  font-family: var(--sans);
  line-height: 1.58;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -webkit-tap-highlight-color: rgba(109, 64, 52, 0.16);
}

body.menu-open {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
  touch-action: manipulation;
}

button {
  font: inherit;
  touch-action: manipulation;
}

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

h1,
h2,
h3,
p,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

h1,
h2,
.hero-thesis,
.axis-quote p,
.sample-message,
.approach-media blockquote p,
.about-copy blockquote p {
  font-family: var(--serif);
  font-weight: 300;
  letter-spacing: 0;
  text-wrap: balance;
}

h1 {
  max-width: 9ch;
  font-size: 2.5rem;
  line-height: 0.98;
}

h2 {
  max-width: 13ch;
  font-size: 1.88rem;
  line-height: 1.1;
}

h3 {
  font-size: 1.02rem;
  line-height: 1.25;
  text-wrap: balance;
}

p {
  text-wrap: pretty;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  padding: 10px 14px;
  color: var(--paper);
  background: var(--ink);
  opacity: 0;
  transform: translateY(-12px);
  transition: opacity 0.18s ease, transform 0.18s ease;
}

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

:focus-visible {
  outline: 3px solid rgba(109, 64, 52, 0.5);
  outline-offset: 4px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  min-height: 72px;
  padding: 14px 18px;
  border-bottom: 1px solid var(--soft-line);
  background: rgba(245, 240, 232, 0.9);
  backdrop-filter: blur(18px);
}

.brand {
  display: grid;
  gap: 2px;
  min-width: 0;
}

.brand span {
  font-family: var(--serif);
  font-size: 1.08rem;
  font-weight: 350;
  line-height: 1;
  letter-spacing: 0.08em;
}

.brand small {
  overflow: hidden;
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 650;
  line-height: 1.15;
  text-transform: uppercase;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.menu-toggle {
  display: grid;
  gap: 5px;
  place-content: center;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  color: var(--ink);
  background: transparent;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: currentColor;
  transform-origin: center;
  transition: transform 0.2s ease;
}

.menu-toggle[aria-expanded="true"] span:first-child {
  transform: translateY(3.5px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:last-child {
  transform: translateY(-3.5px) rotate(-45deg);
}

.main-nav {
  position: fixed;
  top: 73px;
  right: 0;
  left: 0;
  display: grid;
  gap: 0;
  padding: 10px 18px 14px;
  border-bottom: 1px solid var(--line);
  background: rgba(250, 247, 242, 0.98);
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-8px);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.main-nav.is-open {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.main-nav a {
  padding: 12px 0;
  border-bottom: 1px solid var(--soft-line);
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 760;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.main-nav a:hover {
  color: var(--ink);
}

.main-nav .nav-cta {
  display: inline-flex;
  justify-content: center;
  margin-top: 10px;
  padding: 13px 18px;
  border: 1px solid var(--ink);
  color: var(--paper);
  background: var(--ink);
}

.main-nav .nav-cta:hover {
  border-color: rgba(31, 30, 28, 0.68);
  color: var(--ink);
  background: rgba(250, 247, 242, 0.72);
}

.hero-cover,
.manifest-section,
.section,
.final-cta,
.site-footer {
  width: var(--container);
  margin: 0 auto;
}

.hero-cover {
  display: grid;
  gap: 24px;
  padding: 28px 0 44px;
}

.hero-copy {
  display: grid;
  gap: 14px;
  align-content: center;
  min-width: 0;
}

.eyebrow {
  color: var(--clay-dark);
  font-size: 0.66rem;
  font-weight: 760;
  letter-spacing: 0.105em;
  line-height: 1.25;
  text-transform: uppercase;
}

.eyebrow::before {
  opacity: 0.34;
}

.hero-cover .eyebrow::before {
  content: "";
}

.manifest-section .eyebrow::before {
  content: "02 / ";
}

.relationships-section .eyebrow::before {
  content: "03 / ";
}

.approach-section .eyebrow::before {
  content: "04 / ";
}

.video-section .eyebrow::before {
  content: "";
}

.contact-section .eyebrow::before {
  content: "06 / ";
}

.about-section .eyebrow::before {
  content: "07 / ";
}

.formats-section .eyebrow::before {
  content: "";
}

.faq-section .eyebrow::before {
  content: "";
}

.final-cta .eyebrow::before {
  content: "";
}

.hero-thesis {
  max-width: 680px;
  color: #3a3632;
  font-size: 1.42rem;
  line-height: 1.16;
}

.hero-support {
  max-width: 650px;
  color: var(--muted);
  font-size: 1rem;
}

.hero-actions,
.messenger-row {
  display: grid;
  gap: 12px;
  align-items: center;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 48px;
  padding: 13px 26px;
  border: 1px solid var(--ink);
  color: var(--paper);
  background: var(--ink);
  font-size: 0.78rem;
  font-weight: 760;
  letter-spacing: 0.08em;
  text-align: center;
  text-transform: uppercase;
  transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

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

.button.primary:hover,
.max-button:hover {
  border-color: var(--clay-dark);
  color: var(--paper);
  background: var(--clay-dark);
}

.max-button {
  border-color: var(--ink);
  color: var(--paper);
  background: var(--ink);
}

.text-link {
  min-width: 0;
  color: var(--clay-dark);
  font-size: 0.84rem;
  font-weight: 760;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(109, 64, 52, 0.32);
  overflow-wrap: anywhere;
}

.text-link:hover {
  border-bottom-color: currentColor;
}

.trust-line {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  max-width: 560px;
  margin-top: 2px;
  border-top: 1px solid var(--soft-line);
  border-bottom: 1px solid var(--soft-line);
  opacity: 0.76;
}

.trust-line div {
  min-width: 0;
  padding: 12px 0;
  border-bottom: 1px solid var(--soft-line);
}

.trust-line div:last-child {
  border-bottom: 0;
}

.trust-line dt {
  color: #4a4038;
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 300;
  line-height: 1;
}

.trust-line dd {
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.75rem;
  line-height: 1.25;
}

.support-axis {
  display: none;
}

.hero-portrait,
.about-image {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--paper);
}

.hero-portrait img,
.about-image img {
  width: 100%;
  height: min(108vw, 620px);
  object-fit: cover;
  object-position: 50% 39%;
}

.manifest-section {
  display: grid;
  gap: 24px;
  width: 100%;
  padding: 54px max(20px, calc((100vw - 1180px) / 2));
  color: var(--paper);
  background: var(--charcoal);
}

.manifest-copy,
.section-intro,
.approach-header,
.video-copy,
.about-copy {
  display: grid;
  gap: 16px;
  min-width: 0;
}

.manifest-section .eyebrow {
  color: rgba(250, 247, 242, 0.72);
}

.manifest-section h2 {
  color: var(--paper);
}

.manifest-copy p:not(.eyebrow),
.section-intro p:not(.eyebrow),
.approach-header p,
.video-copy p,
.about-copy > p {
  max-width: 700px;
  color: var(--muted);
  font-size: 1rem;
}

.manifest-copy p:not(.eyebrow) {
  color: rgba(250, 247, 242, 0.68);
}

.axis-quote {
  position: relative;
  display: grid;
  gap: 18px;
  padding: 0 0 0 24px;
  border-left: 1px solid var(--dark-line);
}

.axis-quote p {
  color: var(--paper);
  font-size: 1.54rem;
  line-height: 1.16;
}

.axis-quote cite {
  color: rgba(250, 247, 242, 0.62);
  font-size: 0.82rem;
  font-style: normal;
  font-weight: 760;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.section {
  padding: 50px 0;
  scroll-margin-top: 96px;
}

.section-intro.compact {
  max-width: 740px;
  margin-bottom: 22px;
}

.scenario-list {
  display: grid;
  margin-top: 24px;
  border-top: 1px solid var(--line);
}

.scenario-item {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 18px;
  padding: 21px 0;
  border-bottom: 1px solid var(--line);
}

.scenario-item > span {
  color: var(--clay-dark);
  font-family: var(--serif);
  font-size: 1.25rem;
  font-weight: 300;
  line-height: 1.05;
}

.scenario-item div {
  display: grid;
  gap: 9px;
}

.scenario-item p,
.approach-grid p,
.format-list p,
.contact-steps span {
  color: var(--muted);
}

.approach-section {
  display: grid;
  gap: 24px;
  border-top: 1px solid var(--line);
}

.approach-grid {
  display: grid;
  gap: 0;
  margin-top: 22px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.approach-grid article {
  display: grid;
  gap: 10px;
  padding: 20px 0;
  border-bottom: 1px solid var(--soft-line);
}

.approach-grid article:last-child {
  border-bottom: 0;
}

.approach-grid h3 {
  font-family: var(--serif);
  font-size: 1.38rem;
  font-weight: 300;
}

.approach-media {
  display: grid;
  gap: 18px;
  margin-top: 22px;
  padding: 18px;
  border: 1px solid var(--line);
  background: rgba(250, 247, 242, 0.62);
}

.approach-media img {
  width: 100%;
  height: min(96vw, 430px);
  object-fit: cover;
  object-position: 48% 36%;
  border: 1px solid var(--line);
}

.approach-media blockquote {
  position: relative;
  padding-left: 24px;
  border-left: 1px solid var(--line);
}

.approach-media blockquote p,
.about-copy blockquote p {
  color: #3a3632;
  font-size: 1.34rem;
  line-height: 1.18;
}

.video-section {
  display: grid;
  gap: 22px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.video-note {
  position: relative;
  padding: 0;
  border-top: 0;
  color: var(--ink) !important;
  font-weight: 640;
}

.video-frame {
  border: 1px solid var(--line);
  background: var(--paper);
  box-shadow: 0 18px 54px rgba(50, 36, 26, 0.08);
}

.video-frame video {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  background: var(--ink);
}

.contact-section {
  display: grid;
  gap: 1px;
  border: 1px solid var(--line);
  background: var(--line);
  padding: 0;
}

.message-panel,
.contact-steps {
  display: grid;
  gap: 18px;
  padding: 24px;
  background: rgba(250, 247, 242, 0.92);
}

.sample-message {
  max-width: 680px;
  color: var(--clay-dark);
  font-size: 1.34rem;
  line-height: 1.18;
}

.contact-steps ol {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: contact;
}

.contact-steps li {
  position: relative;
  display: grid;
  gap: 5px;
  padding: 18px 0 18px 54px;
  border-bottom: 1px solid var(--soft-line);
  counter-increment: contact;
}

.contact-steps li::before {
  position: absolute;
  top: 19px;
  left: 0;
  color: var(--clay-dark);
  font-family: var(--serif);
  font-size: 1.25rem;
  font-weight: 300;
  line-height: 1;
  content: counter(contact, decimal-leading-zero);
}

.about-section {
  display: grid;
  gap: 30px;
  border-top: 1px solid var(--line);
}

.about-image img {
  object-position: 50% 38%;
}

.about-copy blockquote {
  padding-left: 22px;
  border-left: 1px solid var(--line);
}

.credential-list {
  display: grid;
  gap: 0;
  margin-top: 8px;
  border-top: 1px solid var(--line);
}

.credential-list div {
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 16px;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
}

.credential-list dt {
  color: var(--clay-dark);
  font-family: var(--serif);
  font-size: 1.18rem;
  font-weight: 300;
  line-height: 1.1;
}

.credential-list dd {
  color: var(--muted);
}

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

.format-list article {
  display: grid;
  gap: 10px;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
}

.faq-section {
  padding-top: 42px;
  padding-bottom: 32px;
}

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

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

.faq-item h3 {
  font-family: var(--sans);
  font-size: 1rem;
}

.faq-question {
  position: relative;
  width: 100%;
  min-height: 58px;
  padding: 16px 48px 16px 0;
  border: 0;
  color: var(--ink);
  background: transparent;
  font-weight: 760;
  text-align: left;
  cursor: pointer;
}

.faq-question::after {
  position: absolute;
  top: 50%;
  right: 0;
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border: 1px solid var(--line);
  color: var(--clay-dark);
  content: "+";
  transform: translateY(-50%);
}

.faq-question[aria-expanded="true"]::after {
  content: "-";
}

.faq-answer {
  max-width: 760px;
  padding: 0 0 18px;
}

.faq-answer p {
  color: var(--muted);
}

.final-cta {
  display: grid;
  gap: 14px;
  width: 100%;
  margin-bottom: 0;
  padding: 48px max(20px, calc((100vw - 1180px) / 2));
  color: var(--ink);
  background: linear-gradient(135deg, rgba(250, 247, 242, 0.96), rgba(233, 222, 208, 0.68));
  border-top: 1px solid var(--line);
  text-align: left;
}

.final-cta h2 {
  max-width: 780px;
  color: var(--ink);
}

.final-cta .eyebrow {
  color: var(--clay-dark);
}

.final-cta > p:not(.eyebrow) {
  max-width: 640px;
  color: var(--muted);
  font-size: 1rem;
}

.final-cta .button.primary {
  border-color: var(--ink);
  color: var(--paper);
  background: var(--ink);
}

.messenger-row.center {
  margin-top: 2px;
}

.site-footer {
  display: grid;
  padding: 18px 0 calc(24px + env(safe-area-inset-bottom));
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.site-footer p {
  font-size: 0.82rem;
}

.footer-note {
  max-width: 620px;
}

.sticky-cta {
  position: fixed;
  right: 12px;
  bottom: calc(12px + env(safe-area-inset-bottom));
  left: 12px;
  z-index: 45;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 6px;
  padding: 6px;
  border: 1px solid var(--soft-line);
  background: rgba(250, 247, 242, 0.82);
  box-shadow: 0 10px 28px rgba(45, 31, 24, 0.12);
  backdrop-filter: blur(18px);
}

.sticky-cta a {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
  min-height: 42px;
  padding: 8px 6px;
  color: var(--paper);
  background: rgba(31, 30, 28, 0.92);
  font-size: 0.72rem;
  font-weight: 760;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.sticky-cta a + a {
  color: var(--paper);
  background: rgba(31, 30, 28, 0.92);
  border: 0;
}

@media (min-width: 620px) {
  :root {
    --container: min(1180px, calc(100% - 48px));
  }

  body {
    padding-bottom: 0;
  }

  h1 {
    font-size: 3.2rem;
  }

  h2 {
    font-size: 2.35rem;
  }

  .hero-thesis {
    font-size: 1.72rem;
  }

  .hero-actions,
  .messenger-row {
    display: flex;
    flex-wrap: wrap;
  }

  .button {
    width: auto;
  }

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

  .trust-line div {
    padding-right: 14px;
    padding-left: 14px;
    border-right: 1px solid var(--soft-line);
    border-bottom: 0;
  }

  .trust-line div:first-child {
    padding-left: 0;
  }

  .trust-line div:last-child {
    padding-right: 0;
    border-right: 0;
  }

  .hero-portrait img,
  .about-image img {
    height: 620px;
  }

  .sticky-cta {
    display: none;
  }
}

@media (min-width: 860px) {
  h1 {
    font-size: 3.55rem;
  }

  h2 {
    font-size: 2.5rem;
  }

  .hero-thesis {
    font-size: 2rem;
  }

  .site-header {
    padding: 18px 32px;
  }

  .menu-toggle {
    display: none;
  }

  .main-nav {
    position: static;
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .main-nav a {
    padding: 0 0 3px;
    border: 0;
    border-bottom: 1px solid transparent;
    font-size: 0.72rem;
  }

  .main-nav a:hover {
    border-bottom-color: currentColor;
  }

  .main-nav .nav-cta {
    margin-top: 0;
    padding: 10px 16px;
    border-bottom-color: var(--ink);
  }

  .hero-cover {
    grid-template-columns: minmax(0, 0.95fr) minmax(330px, 0.78fr);
    align-items: center;
    gap: 40px;
    min-height: calc(92vh - 92px);
    padding: 34px 0 50px;
  }

  .hero-portrait img {
    height: min(78vh, 720px);
    min-height: 560px;
    object-position: 50% 34%;
  }

  .manifest-section {
    grid-template-columns: minmax(0, 0.9fr) minmax(360px, 0.68fr);
    align-items: center;
    gap: 52px;
    padding-top: 66px;
    padding-bottom: 66px;
  }

  .section {
    padding: 58px 0;
  }

  .relationships-section {
    display: grid;
    grid-template-columns: minmax(260px, 0.45fr) minmax(0, 1fr);
    gap: 44px;
  }

  .scenario-list {
    margin-top: 0;
  }

  .scenario-item {
    grid-template-columns: 58px 1fr;
    gap: 20px;
    padding: 22px 0;
  }

  .approach-section {
    display: grid;
    grid-template-columns: minmax(280px, 0.58fr) minmax(0, 1fr);
    gap: 36px 42px;
  }

  .approach-header {
    align-self: start;
    position: static;
  }

  .approach-grid {
    margin-top: 0;
  }

  .approach-grid article {
    padding: 20px 0;
  }

  .approach-media {
    grid-column: 1 / -1;
    grid-template-columns: minmax(0, 0.68fr) minmax(280px, 0.44fr);
    align-items: end;
    gap: 28px;
    margin-top: 0;
    padding: 22px;
  }

  .approach-media img {
    height: 480px;
  }

  .video-section {
    grid-template-columns: minmax(0, 0.48fr) minmax(420px, 0.88fr);
    align-items: center;
    gap: 38px;
  }

  .contact-section {
    grid-template-columns: minmax(0, 0.94fr) minmax(360px, 0.76fr);
  }

  .message-panel,
  .contact-steps {
    padding: 30px;
  }

  .about-section {
    grid-template-columns: minmax(320px, 0.55fr) minmax(0, 1fr);
    align-items: center;
    gap: 42px;
  }

  .about-image img {
    height: 600px;
  }

  .about-copy {
    align-content: center;
  }

  .format-list article {
    grid-template-columns: minmax(220px, 0.42fr) minmax(0, 1fr);
    gap: 28px;
    padding: 20px 0;
  }

  .final-cta {
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.54fr);
    align-items: end;
    gap: 34px;
    padding-top: 54px;
    padding-bottom: 54px;
  }

  .final-cta .eyebrow,
  .final-cta h2,
  .final-cta > p {
    grid-column: 1;
  }

  .final-cta .messenger-row {
    grid-column: 2;
    grid-row: 2 / span 2;
    justify-content: flex-end;
  }

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

@media (min-width: 1180px) {
  h1 {
    font-size: 4.15rem;
  }

  h2 {
    font-size: 2.7rem;
  }

  .hero-thesis {
    font-size: 2rem;
  }

  .hero-support {
    font-size: 1.06rem;
  }

  .axis-quote p {
    font-size: 1.86rem;
  }
}

@media (max-width: 390px) {
  :root {
    --container: min(100% - 32px, 1180px);
  }

  h1 {
    font-size: 2.54rem;
  }

  h2 {
    font-size: 1.88rem;
  }

  .hero-thesis,
  .sample-message {
    font-size: 1.3rem;
  }

  .trust-line {
    grid-template-columns: 1fr;
  }

  .hero-actions,
  .messenger-row {
    display: grid;
  }

  .button {
    width: 100%;
  }

  .message-panel,
  .contact-steps,
  .approach-grid article {
    padding: 20px 0;
  }

  .message-panel,
  .contact-steps {
    padding: 22px;
  }
}

@media (max-width: 360px) {
  h1,
  h2,
  h3,
  .hero-thesis,
  .sample-message,
  .axis-quote p,
  .approach-media blockquote p,
  .about-copy blockquote p {
    overflow-wrap: anywhere;
  }

  h2 {
    font-size: 1.78rem;
  }
}

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