:root {
  --ink: #17211d;
  --muted: #66706a;
  --canvas: #f3f5f1;
  --surface: #ffffff;
  --surface-soft: #e8eee9;
  --forest: #0f4439;
  --forest-deep: #0a3029;
  --teal: #31766e;
  --copper: #a96f3d;
  --line: rgba(23, 33, 29, 0.14);
  --line-strong: rgba(23, 33, 29, 0.24);
  --shadow: 0 18px 45px rgba(18, 45, 37, 0.09);
  --max: 1200px;
  --header-height: 76px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

body.menu-open {
  overflow: hidden;
}

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

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

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

:focus-visible {
  outline: 3px solid rgba(169, 111, 61, 0.55);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 100;
  padding: 10px 14px;
  color: white;
  background: var(--forest-deep);
  transform: translateY(-160%);
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--header-height);
  padding: 0 clamp(20px, 4vw, 56px);
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(23, 33, 29, 0.1);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: baseline;
  min-height: 48px;
  color: var(--forest);
  font-family: Georgia, "Times New Roman", ui-serif, serif;
  font-size: 38px;
  line-height: 1;
  white-space: nowrap;
}

.brand-root {
  font-weight: 750;
}

.brand-book {
  font-weight: 600;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.2vw, 30px);
  color: #45504b;
  font-size: 14px;
  font-weight: 700;
}

.desktop-nav a {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 42px;
}

.desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: 4px;
  left: 0;
  height: 2px;
  background: var(--copper);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.desktop-nav a:hover,
.desktop-nav a[aria-current="page"] {
  color: var(--forest);
}

.desktop-nav a:hover::after,
.desktop-nav a[aria-current="page"]::after {
  transform: scaleX(1);
  transform-origin: left;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  color: var(--forest);
  background: transparent;
  border: 0;
  cursor: pointer;
}

.menu-toggle span,
.menu-toggle::before,
.menu-toggle::after {
  display: block;
  width: 23px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
  content: "";
  transition: transform 180ms ease, opacity 180ms ease;
}

.menu-toggle[aria-expanded="true"] span {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"]::before {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"]::after {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-nav {
  display: none;
}

.section-action {
  margin-top: 28px;
}

.section-action.spacious {
  margin-top: 42px;
}

.hero {
  position: relative;
  min-height: min(820px, calc(100svh - var(--header-height)));
  display: grid;
  align-items: center;
  overflow: hidden;
  background: #dfe3dd;
}

.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(246, 248, 245, 0.98) 0%, rgba(246, 248, 245, 0.89) 36%, rgba(246, 248, 245, 0.34) 64%, rgba(246, 248, 245, 0.06) 100%),
    linear-gradient(180deg, rgba(246, 248, 245, 0.42), rgba(10, 48, 41, 0.1));
}

.hero-content,
.page-hero-inner,
.section-inner,
.site-footer-inner {
  width: min(var(--max), calc(100% - 40px));
  margin-inline: auto;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 78px 0 70px;
}

.eyebrow,
.section-kicker,
.card-label,
.page-index {
  margin: 0 0 16px;
  color: var(--teal);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

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

h1,
h2,
.display-serif {
  font-family: Georgia, "Times New Roman", ui-serif, serif;
  letter-spacing: 0;
}

h1 {
  max-width: 760px;
  margin-bottom: 26px;
  color: var(--forest-deep);
  font-size: clamp(54px, 7.5vw, 94px);
  font-weight: 560;
  line-height: 0.98;
}

h2 {
  margin-bottom: 20px;
  font-size: clamp(36px, 4.5vw, 60px);
  font-weight: 560;
  line-height: 1.06;
}

h3 {
  margin-bottom: 11px;
  color: var(--forest-deep);
  font-size: 22px;
  line-height: 1.25;
  letter-spacing: 0;
}

h4 {
  margin-bottom: 8px;
  font-size: 16px;
  line-height: 1.3;
}

.hero-copy {
  max-width: 650px;
  margin-bottom: 34px;
  color: #3f4a45;
  font-size: clamp(18px, 2vw, 22px);
}

.hero-actions,
.inline-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-actions {
  margin-bottom: 36px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 19px;
  border: 1px solid transparent;
  border-radius: 6px;
  font-size: 15px;
  font-weight: 800;
  line-height: 1.1;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

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

.button.primary {
  color: white;
  background: var(--forest);
  box-shadow: 0 12px 28px rgba(15, 68, 57, 0.2);
}

.button.secondary {
  color: var(--forest);
  background: rgba(255, 255, 255, 0.75);
  border-color: rgba(15, 68, 57, 0.25);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--forest);
  font-weight: 800;
  border-bottom: 1px solid rgba(15, 68, 57, 0.3);
}

.text-link::after {
  content: "→";
}

.hero-note {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  max-width: 760px;
  color: var(--forest-deep);
  font-size: 13px;
  font-weight: 800;
}

.hero-note span {
  padding: 0 16px;
  border-left: 1px solid rgba(15, 68, 57, 0.26);
}

.hero-note span:first-child {
  padding-left: 0;
  border-left: 0;
}

.trust-bar {
  background: var(--forest-deep);
}

.trust-bar-inner {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.trust-bar p {
  margin: 0;
  padding: 18px 24px;
  color: rgba(255, 255, 255, 0.78);
  border-left: 1px solid rgba(255, 255, 255, 0.13);
  font-size: 13px;
  font-weight: 750;
  text-align: center;
}

.trust-bar p:first-child {
  border-left: 0;
}

.page-hero {
  position: relative;
  overflow: hidden;
  color: white;
  background: var(--forest-deep);
}

.page-hero-inner {
  position: relative;
  z-index: 1;
  min-height: 440px;
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(260px, 0.7fr);
  gap: clamp(40px, 8vw, 110px);
  align-items: end;
  padding-block: 86px 72px;
}

.page-hero h1 {
  max-width: 850px;
  margin: 0;
  color: white;
  font-size: clamp(50px, 7vw, 86px);
}

.page-hero .eyebrow {
  color: #9cc8bc;
}

.page-hero-copy {
  margin: 0;
  color: rgba(255, 255, 255, 0.75);
  font-size: 18px;
}

.section {
  padding: clamp(72px, 9vw, 118px) 0;
}

.section.surface {
  background: var(--surface);
}

.section.soft {
  background: var(--surface-soft);
  border-block: 1px solid rgba(23, 33, 29, 0.08);
}

.section.dark {
  color: white;
  background: var(--forest-deep);
}

.section.dark h2,
.section.dark h3 {
  color: white;
}

.section.dark .section-kicker {
  color: #9cc8bc;
}

.split,
.section-heading,
.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: clamp(38px, 8vw, 100px);
  align-items: start;
}

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

.section-heading > p,
.lead-copy,
.rich-copy p,
.card p,
.topic-card p,
.method-card p,
.publication-card p,
.principle p,
.contact-copy,
.legal-copy {
  color: var(--muted);
  font-size: 17px;
}

.section.dark .section-heading > p,
.section.dark .rich-copy p,
.section.dark .principle p {
  color: rgba(255, 255, 255, 0.68);
}

.rich-copy p:last-child,
.card p:last-child,
.topic-card p:last-child,
.method-card p:last-child,
.publication-card p:last-child {
  margin-bottom: 0;
}

.metric-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin-top: 44px;
  background: var(--line);
  border: 1px solid var(--line);
}

.metric-row article {
  min-height: 150px;
  padding: 26px;
  background: var(--surface);
}

.metric-row strong {
  display: block;
  margin-bottom: 28px;
  color: var(--copper);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 34px;
}

.metric-row span {
  color: var(--forest-deep);
  font-weight: 750;
}

.card-grid,
.topic-grid,
.publication-grid,
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.card,
.topic-card,
.publication-card,
.method-card {
  padding: 28px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 6px;
  box-shadow: var(--shadow);
}

.card {
  min-height: 260px;
}

.card-label {
  color: var(--copper);
}

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

.topic-number {
  display: block;
  margin-bottom: 36px;
  color: var(--copper);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 26px;
}

.method-preview {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 0;
  margin-top: 40px;
  border: 1px solid var(--line-strong);
  background: var(--surface);
}

.method-preview article {
  min-height: 230px;
  padding: 24px 20px;
  border-left: 1px solid var(--line);
}

.method-preview article:first-child {
  border-left: 0;
}

.method-preview span,
.method-card .step {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  margin-bottom: 32px;
  color: var(--forest);
  background: var(--surface-soft);
  border-radius: 50%;
  font-size: 12px;
  font-weight: 850;
}

.method-preview h3 {
  font-size: 17px;
}

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

.method-list {
  display: grid;
  gap: 18px;
}

.method-card {
  display: grid;
  grid-template-columns: 90px minmax(0, 0.72fr) minmax(0, 1.28fr);
  gap: 22px;
  align-items: start;
  min-height: 180px;
}

.method-card .step {
  margin: 0;
  width: 52px;
  height: 52px;
  color: white;
  background: var(--forest);
  font-size: 14px;
}

.method-card h3 {
  margin-top: 9px;
}

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

.principle {
  padding-top: 18px;
  border-top: 2px solid var(--copper);
}

.principle strong {
  display: block;
  margin-bottom: 10px;
  color: inherit;
  font-size: 17px;
}

.values-grid {
  counter-reset: value;
}

.value {
  min-height: 180px;
  padding: 24px 0;
  border-top: 1px solid var(--line-strong);
  counter-increment: value;
}

.value::before {
  display: block;
  margin-bottom: 28px;
  color: var(--copper);
  content: "0" counter(value);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.14em;
}

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

.section.dark .value {
  border-top-color: rgba(255, 255, 255, 0.2);
}

.section.dark .value p {
  color: rgba(255, 255, 255, 0.68);
}

.origin-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.origin-grid article {
  min-height: 260px;
  padding: 32px;
  background: var(--surface);
}

.origin-grid strong {
  display: block;
  margin-bottom: 48px;
  color: var(--copper);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 34px;
}

.origin-grid p {
  margin: 0;
  color: var(--muted);
}

.publication-card {
  position: relative;
  min-height: 300px;
  display: flex;
  flex-direction: column;
}

.publication-card .status {
  align-self: flex-start;
  margin-top: auto;
  padding-top: 28px;
  color: var(--teal);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.book-roadmap {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: clamp(36px, 7vw, 90px);
  align-items: start;
}

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

.book-list article {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr) auto;
  gap: 18px;
  align-items: start;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
}

.book-list .number {
  color: var(--copper);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 22px;
}

.book-list p {
  margin: 5px 0 0;
  color: var(--muted);
}

.book-list .status {
  color: var(--teal);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.evidence-scale {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1px;
  margin-top: 42px;
  overflow: hidden;
  background: var(--line);
  border: 1px solid var(--line);
}

.evidence-scale article {
  min-height: 220px;
  padding: 26px;
  background: var(--surface);
}

.evidence-scale strong {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  margin-bottom: 42px;
  color: white;
  background: var(--forest);
  border-radius: 50%;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 24px;
}

.evidence-scale span {
  color: var(--muted);
  font-size: 15px;
  font-weight: 650;
}

.process-list {
  display: grid;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.process-list article {
  display: grid;
  grid-template-columns: 80px minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: 24px;
  padding: 26px;
  background: var(--surface);
}

.process-list span {
  color: var(--copper);
  font-weight: 850;
}

.process-list p {
  margin: 0;
  color: var(--muted);
}

.quote-band {
  padding: clamp(60px, 8vw, 100px) 0;
  color: white;
  background: var(--forest);
}

.quote-band blockquote {
  width: min(980px, calc(100% - 40px));
  margin: 0 auto;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(32px, 4.8vw, 58px);
  line-height: 1.1;
  text-align: center;
}

.quote-band blockquote p {
  margin: 0;
}

.legal-note {
  padding: 28px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-left: 4px solid var(--copper);
}

.legal-note p {
  margin: 0;
  color: var(--muted);
}

.contact-layout {
  align-items: stretch;
}

.contact-panel {
  padding: 36px;
  color: white;
  background: var(--forest-deep);
}

.contact-panel h2 {
  color: white;
}

.contact-panel p {
  color: rgba(255, 255, 255, 0.7);
}

.contact-panel .button {
  margin-top: 12px;
  color: var(--forest-deep);
  background: white;
}

.inquiry-list {
  display: grid;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.inquiry-list article {
  padding: 24px;
  background: var(--surface);
}

.inquiry-list p {
  margin: 0;
  color: var(--muted);
}

.cta-band {
  padding: clamp(56px, 7vw, 88px) 0;
  background: var(--surface-soft);
  border-top: 1px solid var(--line);
}

.cta-band .section-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 34px;
}

.cta-band h2 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(34px, 4vw, 52px);
}

.site-footer {
  color: rgba(255, 255, 255, 0.72);
  background: #13231e;
}

.site-footer-inner {
  display: grid;
  grid-template-columns: minmax(240px, 0.7fr) minmax(0, 1.3fr);
  gap: clamp(36px, 8vw, 110px);
  padding-block: 58px 28px;
}

.footer-logo {
  display: block;
  margin-bottom: 14px;
  color: white;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 46px;
  font-weight: 650;
  line-height: 1;
}

.footer-brand p {
  max-width: 280px;
  margin: 0;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  margin-bottom: 32px;
  color: white;
  font-size: 14px;
  font-weight: 750;
}

.footer-details {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 22px 30px;
  margin: 0;
}

.footer-details dt {
  color: rgba(255, 255, 255, 0.44);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-details dd {
  margin: 6px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 14px;
  font-weight: 650;
}

.footer-details a {
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

.copyright {
  grid-column: 1 / -1;
  margin: 18px 0 0;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.13);
  font-size: 12px;
}

@media (max-width: 1040px) {
  .desktop-nav {
    gap: 16px;
    font-size: 13px;
  }

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

  .method-preview article:nth-child(4) {
    border-left: 0;
  }

  .method-preview article:nth-child(n + 4) {
    border-top: 1px solid var(--line);
  }

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

@media (max-width: 820px) {
  :root {
    --header-height: 68px;
  }

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

  .brand {
    font-size: 34px;
  }

  .desktop-nav {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .mobile-nav {
    position: fixed;
    inset: var(--header-height) 0 0;
    z-index: 35;
    display: grid;
    align-content: start;
    padding: 24px 20px 40px;
    background: var(--canvas);
    transform: translateX(100%);
    visibility: hidden;
    pointer-events: none;
    transition: transform 220ms ease;
  }

  .mobile-nav[data-open="true"] {
    transform: translateX(0);
    visibility: visible;
    pointer-events: auto;
  }

  .mobile-nav a {
    padding: 16px 4px;
    color: var(--forest-deep);
    border-bottom: 1px solid var(--line);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 26px;
  }

  .hero {
    min-height: 720px;
  }

  .hero-image {
    object-position: 58% center;
  }

  .hero-overlay {
    background:
      linear-gradient(180deg, rgba(246, 248, 245, 0.98) 0%, rgba(246, 248, 245, 0.83) 52%, rgba(246, 248, 245, 0.38) 100%),
      linear-gradient(90deg, rgba(246, 248, 245, 0.84), rgba(246, 248, 245, 0.12));
  }

  .hero-content {
    align-self: start;
    padding-top: 90px;
  }

  .page-hero-inner,
  .split,
  .section-heading,
  .contact-layout,
  .book-roadmap,
  .site-footer-inner {
    grid-template-columns: 1fr;
  }

  .page-hero-inner {
    min-height: 410px;
    align-content: end;
    gap: 28px;
    padding-block: 70px 54px;
  }

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

  .card-grid,
  .topic-grid,
  .publication-grid,
  .values-grid,
  .principles {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .method-card {
    grid-template-columns: 64px minmax(0, 1fr);
  }

  .method-card > p {
    grid-column: 2;
  }

  .origin-grid,
  .metric-row {
    grid-template-columns: 1fr;
  }

  .process-list article {
    grid-template-columns: 58px minmax(0, 1fr);
  }

  .process-list article p {
    grid-column: 2;
  }

  .cta-band .section-inner {
    align-items: flex-start;
    flex-direction: column;
  }

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

@media (max-width: 560px) {
  .hero-content,
  .page-hero-inner,
  .section-inner,
  .site-footer-inner,
  .trust-bar-inner {
    width: min(var(--max), calc(100% - 28px));
  }

  h1 {
    font-size: 50px;
  }

  h2 {
    font-size: 36px;
  }

  .hero {
    min-height: 760px;
  }

  .hero-content {
    padding-top: 72px;
  }

  .hero-actions,
  .inline-actions {
    display: grid;
  }

  .button {
    width: 100%;
  }

  .hero-note {
    display: grid;
    gap: 8px;
  }

  .hero-note span,
  .hero-note span:first-child {
    padding: 0;
    border-left: 0;
  }

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

  .trust-bar p,
  .trust-bar p:first-child {
    padding: 12px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    border-left: 0;
  }

  .trust-bar p:first-child {
    border-top: 0;
  }

  .card-grid,
  .topic-grid,
  .publication-grid,
  .values-grid,
  .principles,
  .method-preview,
  .evidence-scale {
    grid-template-columns: 1fr;
  }

  .method-preview article,
  .method-preview article:nth-child(4) {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .method-preview article:first-child {
    border-top: 0;
  }

  .method-card {
    grid-template-columns: 1fr;
    padding: 22px;
  }

  .method-card > p {
    grid-column: auto;
  }

  .process-list article {
    grid-template-columns: 1fr;
  }

  .process-list article p {
    grid-column: auto;
  }

  .book-list article {
    grid-template-columns: 34px minmax(0, 1fr);
  }

  .book-list .status {
    grid-column: 2;
  }

  .contact-panel {
    padding: 26px;
  }

  .footer-logo {
    font-size: 40px;
  }
}

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