:root {
  color-scheme: light;
  --ink: #17201d;
  --ink-strong: #07110f;
  --muted: #62706a;
  --paper: #f7f3ea;
  --paper-deep: #efe6d6;
  --white: #fffdf8;
  --forest: #173f37;
  --forest-dark: #0d241f;
  --teal: #0f7f73;
  --gold: #c9963e;
  --wine: #7a3331;
  --line: rgba(23, 32, 29, 0.14);
  --line-light: rgba(255, 253, 248, 0.16);
  --shadow: 0 30px 80px rgba(17, 24, 22, 0.17);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-synthesis: none;
  text-rendering: optimizeLegibility;
  line-height: 1.5;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

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

button {
  font: inherit;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 30;
  transform: translateY(-140%);
  padding: 10px 14px;
  color: var(--white);
  background: var(--forest-dark);
  border-radius: 8px;
}

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

.topbar {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 78px;
  padding: 16px clamp(18px, 5vw, 68px);
  color: var(--white);
  transition:
    background 180ms ease,
    color 180ms ease,
    box-shadow 180ms ease;
}

.topbar.scrolled,
.topbar.menu-active {
  color: var(--ink-strong);
  background: rgba(255, 253, 248, 0.92);
  box-shadow: 0 12px 40px rgba(17, 24, 22, 0.1);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
}

.brand span {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  color: var(--forest-dark);
  background: var(--white);
  border-radius: 8px;
  font-size: 0.82rem;
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.16);
}

.topbar.scrolled .brand span,
.topbar.menu-active .brand span {
  color: var(--white);
  background: var(--forest-dark);
}

.nav {
  display: flex;
  gap: clamp(18px, 3vw, 36px);
  font-size: 0.9rem;
  font-weight: 900;
}

.nav a {
  opacity: 0.82;
}

.nav a:hover,
.nav a:focus-visible {
  opacity: 1;
}

.menu-button {
  display: none;
  place-items: center;
  width: 44px;
  height: 44px;
  padding: 0;
  color: inherit;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid currentColor;
  border-radius: 8px;
}

.menu-button span:first-child,
.menu-button span:first-child::before,
.menu-button span:first-child::after {
  display: block;
  width: 18px;
  height: 2px;
  background: currentColor;
  border-radius: 99px;
  transition: transform 180ms ease;
}

.menu-button span:first-child {
  position: relative;
}

.menu-button span:first-child::before,
.menu-button span:first-child::after {
  position: absolute;
  left: 0;
  content: "";
}

.menu-button span:first-child::before {
  transform: translateY(-6px);
}

.menu-button span:first-child::after {
  transform: translateY(6px);
}

.menu-button[aria-expanded="true"] span:first-child {
  background: transparent;
}

.menu-button[aria-expanded="true"] span:first-child::before {
  transform: rotate(45deg);
}

.menu-button[aria-expanded="true"] span:first-child::after {
  transform: rotate(-45deg);
}

.mobile-nav {
  position: fixed;
  inset: 78px 14px auto;
  z-index: 19;
  display: none;
  padding: 12px;
  color: var(--ink-strong);
  background: rgba(255, 253, 248, 0.96);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.mobile-nav.open {
  display: grid;
}

.mobile-nav a {
  padding: 14px 10px;
  border-bottom: 1px solid var(--line);
  font-weight: 900;
}

.mobile-nav a:last-child {
  border-bottom: 0;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.hero {
  position: relative;
  min-height: min(760px, 86svh);
  display: grid;
  align-items: center;
  overflow: hidden;
  padding: 118px clamp(18px, 5vw, 68px) 62px;
  color: var(--white);
  background: var(--forest-dark);
}

.hero-media,
.hero-media img,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(5, 14, 12, 0.96) 0%, rgba(5, 14, 12, 0.84) 48%, rgba(5, 14, 12, 0.55) 100%),
    linear-gradient(180deg, rgba(5, 14, 12, 0.32) 0%, rgba(5, 14, 12, 0.86) 100%);
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 340px);
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
  width: min(1180px, 100%);
  margin: 0 auto;
}

.hero-copy {
  max-width: 760px;
}

.mobile-portrait {
  display: none;
}

.eyebrow,
.section-label {
  margin: 0;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero h1,
.section-heading h2,
.intro h2,
.diagnostic h2,
.ventures h2,
.contact h2 {
  margin: 0;
  letter-spacing: 0;
  line-height: 0.96;
}

.hero h1 {
  margin-top: 18px;
  max-width: 780px;
  font-size: clamp(2.65rem, 5vw, 4.65rem);
  line-height: 1;
}

.lead {
  max-width: 720px;
  margin: 22px 0 0;
  color: rgba(255, 253, 248, 0.79);
  font-size: clamp(1.02rem, 1.55vw, 1.22rem);
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 18px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 950;
  line-height: 1.1;
}

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

.button.primary:hover,
.button.primary:focus-visible {
  background: #0a6d62;
}

.button.secondary {
  color: inherit;
  background: rgba(255, 253, 248, 0.08);
  border-color: rgba(255, 253, 248, 0.24);
}

.button.secondary:hover,
.button.secondary:focus-visible {
  background: rgba(255, 253, 248, 0.15);
}

.hero-card {
  overflow: hidden;
  margin: 0;
  color: var(--ink-strong);
  background: var(--white);
  border: 1px solid rgba(255, 253, 248, 0.5);
  border-radius: 8px;
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.28);
}

.hero-card img {
  width: 100%;
  aspect-ratio: 1.03;
  object-fit: cover;
  object-position: 50% 18%;
}

.hero-card div {
  padding: 16px 18px 18px;
}

.hero-card p {
  margin: 0 0 8px;
  color: var(--wine);
  font-size: 0.76rem;
  font-weight: 950;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.hero-card strong {
  display: block;
  color: var(--ink-strong);
  font-size: 1.06rem;
  line-height: 1.32;
}

.signal-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  background: var(--forest);
  color: var(--white);
  border-top: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
}

.signal {
  display: grid;
  gap: 4px;
  min-height: 118px;
  align-content: center;
  padding: 20px clamp(18px, 4vw, 44px);
  border-right: 1px solid var(--line-light);
}

.signal:last-child {
  border-right: 0;
}

.signal strong {
  font-size: clamp(1.45rem, 3vw, 2.4rem);
  line-height: 1;
}

.signal span {
  color: rgba(255, 253, 248, 0.68);
}

.section {
  padding: clamp(70px, 10vw, 132px) clamp(18px, 5vw, 68px);
}

section[id] {
  scroll-margin-top: 78px;
}

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

.intro-layout {
  display: grid;
  grid-template-columns: 0.34fr 0.86fr 0.8fr;
  gap: clamp(28px, 5vw, 70px);
  align-items: start;
}

.intro h2,
.diagnostic h2,
.ventures h2,
.contact h2,
.section-heading h2 {
  color: var(--ink-strong);
  font-size: clamp(2.2rem, 5.4vw, 4.9rem);
}

.intro-copy {
  display: grid;
  gap: 18px;
  color: var(--muted);
  font-size: 1.08rem;
}

.intro-copy p {
  margin: 0;
}

.fit {
  background: var(--white);
  border-top: 1px solid var(--line);
}

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

.fit-grid article {
  display: grid;
  gap: 12px;
  min-height: 220px;
  padding: clamp(22px, 3vw, 30px);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.fit-grid h3 {
  margin: 0;
  color: var(--ink-strong);
  font-size: clamp(1.42rem, 2.6vw, 2rem);
  line-height: 1.08;
}

.fit-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 1.03rem;
}

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

.dark-section .section-heading h2 {
  color: var(--white);
}

.section-heading {
  display: grid;
  gap: 16px;
  max-width: 940px;
  margin-bottom: clamp(36px, 6vw, 70px);
}

.section-heading.compact {
  margin-bottom: 34px;
}

.expertise-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border: 1px solid var(--line-light);
  border-radius: 8px;
  overflow: hidden;
}

.expertise-grid article {
  display: grid;
  align-content: start;
  gap: 18px;
  min-height: 360px;
  padding: clamp(22px, 3vw, 34px);
  border-right: 1px solid var(--line-light);
}

.expertise-grid article:last-child {
  border-right: 0;
}

.expertise-grid span {
  color: var(--gold);
  font-weight: 950;
}

.expertise-grid h3,
.proof-list h3,
.approach-columns h3 {
  margin: 0;
  font-size: 1.32rem;
  line-height: 1.14;
}

.expertise-grid p {
  margin: 0;
  color: rgba(255, 253, 248, 0.69);
}

.diagnostic {
  background: var(--white);
}

.diagnostic-layout {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: clamp(32px, 6vw, 86px);
  align-items: start;
}

.diagnostic ul {
  display: grid;
  gap: 0;
  padding: 0;
  margin: 0;
  list-style: none;
  border-top: 1px solid var(--line);
}

.diagnostic li {
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: 1.05rem;
}

.diagnostic strong {
  color: var(--ink-strong);
}

.proof {
  background: var(--paper-deep);
}

.proof-list {
  display: grid;
  gap: 12px;
}

.proof-list article {
  display: grid;
  grid-template-columns: 0.3fr 0.4fr 1fr;
  gap: 24px;
  align-items: start;
  padding: clamp(22px, 3vw, 34px);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.proof-list p {
  margin: 0;
  color: var(--wine);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.proof-list span {
  color: var(--muted);
}

.ventures {
  color: var(--ink);
  background: var(--paper-deep);
}

.ventures h2 {
  color: var(--ink-strong);
  max-width: 760px;
  font-size: clamp(2rem, 3.6vw, 3.3rem);
  line-height: 1.02;
}

.ventures .section-inner {
  display: grid;
  gap: clamp(28px, 5vw, 48px);
}

.venture-heading {
  display: grid;
  gap: 16px;
  max-width: 860px;
}

.ventures p {
  max-width: 760px;
  margin: 0;
  color: var(--muted);
  font-size: 1.08rem;
}

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

.venture-grid article {
  display: grid;
  grid-template-rows: 58px auto auto 1fr auto;
  gap: 14px;
  min-height: 330px;
  padding: clamp(20px, 2.2vw, 26px);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.venture-visual {
  display: grid;
  place-items: center;
  width: 58px;
  aspect-ratio: 1;
  margin-bottom: 2px;
  overflow: hidden;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.venture-visual img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.venture-grid article:last-child {
  border-right: 1px solid var(--line);
}

.venture-grid article:nth-child(2n) {
  border-right: 1px solid var(--line);
}

.venture-grid article:nth-child(n + 3) {
  border-top: 1px solid var(--line);
}

.venture-grid .featured-venture {
  background: var(--white);
}

.venture-grid p {
  margin: 0;
  color: var(--wine);
  font-size: 0.76rem;
  font-weight: 950;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.venture-grid h3 {
  margin: 0;
  color: var(--ink-strong);
  font-size: clamp(1.35rem, 2vw, 1.75rem);
  line-height: 1.08;
}

.venture-grid span {
  display: block;
  color: var(--muted);
}

.venture-grid a {
  align-self: end;
  width: max-content;
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  padding: 9px 12px;
  color: var(--forest-dark);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  font-weight: 950;
  text-decoration: none;
}

.approach {
  background: var(--paper);
}

.approach-layout {
  display: grid;
  grid-template-columns: 0.24fr 1fr;
  gap: clamp(28px, 6vw, 80px);
}

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

.approach-columns article {
  min-height: 230px;
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

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

.engagements {
  background: var(--white);
}

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

.engagement-grid article {
  display: grid;
  align-content: start;
  gap: 16px;
  min-height: 286px;
  padding: clamp(22px, 3vw, 32px);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.engagement-grid span {
  color: var(--wine);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.12em;
}

.engagement-grid h3 {
  margin: 0;
  color: var(--ink-strong);
  font-size: clamp(1.35rem, 2.4vw, 1.9rem);
  line-height: 1.08;
}

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

.contact {
  padding: clamp(78px, 10vw, 132px) clamp(18px, 5vw, 68px);
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(23, 63, 55, 0.96), rgba(7, 17, 15, 1) 64%),
    var(--forest-dark);
}

.contact h2 {
  max-width: 760px;
  color: var(--white);
  font-size: clamp(2.6rem, 5vw, 4.35rem);
  line-height: 0.99;
}

.contact p {
  color: rgba(255, 253, 248, 0.72);
  font-size: 1.06rem;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 0.72fr);
  gap: clamp(34px, 6vw, 90px);
  align-items: center;
}

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

.contact-copy p:not(.section-label) {
  max-width: 660px;
  margin: 0;
}

.contact-prompts {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 10px;
}

.contact-prompts span {
  padding: 9px 12px;
  color: rgba(255, 253, 248, 0.86);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: rgba(255, 253, 248, 0.08);
  border: 1px solid var(--line-light);
  border-radius: 999px;
}

.contact-panel {
  display: grid;
  gap: 14px;
  padding: clamp(22px, 3vw, 34px);
  color: var(--ink-strong);
  background: var(--white);
  border: 1px solid rgba(255, 253, 248, 0.5);
  border-radius: 8px;
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.28);
}

.contact .contact-panel-label {
  margin: 0 0 2px;
  color: var(--wine);
  font-size: 0.74rem;
  font-weight: 950;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.contact-primary {
  display: grid;
  gap: 5px;
  padding: 17px 18px;
  color: var(--white);
  background: var(--forest);
  border-radius: 8px;
  transition:
    transform 180ms ease,
    background 180ms ease,
    box-shadow 180ms ease;
}

.contact-primary:hover {
  transform: translateY(-2px);
  background: var(--teal);
  box-shadow: 0 16px 36px rgba(15, 127, 115, 0.22);
}

.secondary-contact {
  color: var(--ink-strong);
  background: var(--paper);
  border: 1px solid var(--line);
}

.secondary-contact:hover {
  color: var(--white);
  background: var(--ink-strong);
  box-shadow: 0 16px 36px rgba(7, 17, 15, 0.16);
}

.contact-primary span,
.contact-links a span,
.contact-links > span span {
  font-size: 0.7rem;
  font-weight: 950;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-primary span {
  color: rgba(255, 253, 248, 0.68);
}

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

.contact-primary strong {
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  line-height: 1.1;
}

.contact-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.contact-links a,
.contact-links > span {
  display: grid;
  gap: 5px;
  min-height: 84px;
  align-content: center;
  padding: 13px 14px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.contact-links a {
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease;
}

.contact-links a:hover {
  transform: translateY(-2px);
  background: var(--white);
  border-color: rgba(15, 127, 115, 0.42);
}

.contact-links a span,
.contact-links > span span {
  color: var(--wine);
}

.contact-links strong {
  color: var(--ink-strong);
  font-size: 1.03rem;
}

.contact .contact-note {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 0.94rem;
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 24px clamp(18px, 5vw, 68px);
  color: rgba(255, 253, 248, 0.68);
  background: #07110f;
}

.footer p {
  margin: 0;
}

.footer a {
  font-weight: 900;
}

.footer-links {
  display: flex;
  align-items: center;
  gap: 20px;
}

.footer .admin-link {
  color: rgba(255, 253, 248, 0.5);
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

  .menu-button {
    display: grid;
  }

  .hero-inner,
  .intro-layout,
  .diagnostic-layout,
  .ventures .section-inner,
  .approach-layout,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .hero-card {
    width: min(360px, 100%);
  }

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

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

  .expertise-grid article:nth-child(2n) {
    border-right: 0;
  }

  .expertise-grid article:nth-last-child(-n + 2) {
    border-top: 1px solid var(--line-light);
  }

  .venture-grid article:nth-child(2n) {
    border-right: 1px solid var(--line);
  }

  .venture-grid article:nth-last-child(-n + 2) {
    border-top: 1px solid var(--line);
  }

  .proof-list article {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .fit-grid,
  .approach-columns,
  .engagement-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  .topbar {
    min-height: 68px;
    padding: 12px 16px;
  }

  .brand strong {
    display: none;
  }

  .mobile-nav {
    inset: 68px 10px auto;
  }

  .hero {
    min-height: auto;
    padding: 88px 18px 38px;
  }

  .hero-media img {
    object-position: 62% center;
  }

  .hero h1 {
    font-size: clamp(2.35rem, 10.8vw, 3rem);
  }

  .lead {
    font-size: 0.95rem;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .hero-card {
    display: none;
  }

  .mobile-portrait {
    display: block;
    width: 92px;
    aspect-ratio: 1;
    margin-top: 18px;
    object-fit: cover;
    object-position: 50% 18%;
    border: 1px solid rgba(255, 253, 248, 0.24);
    border-radius: 8px;
    box-shadow: 0 18px 44px rgba(0, 0, 0, 0.28);
  }

  .signal-strip,
  .expertise-grid,
  .venture-grid,
  .contact-links {
    grid-template-columns: 1fr;
  }

  .signal {
    min-height: 86px;
    border-right: 0;
    border-bottom: 1px solid var(--line-light);
  }

  .signal:last-child {
    border-bottom: 0;
  }

  .expertise-grid article,
  .expertise-grid article:nth-child(2n),
  .expertise-grid article:nth-last-child(-n + 2) {
    min-height: auto;
    border-right: 0;
    border-top: 0;
    border-bottom: 1px solid var(--line-light);
  }

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

  .venture-grid article,
  .venture-grid article:nth-child(2n),
  .venture-grid article:nth-last-child(-n + 2) {
    min-height: auto;
    border: 1px solid var(--line);
  }

  .venture-visual {
    width: 64px;
  }

  .section,
  .contact {
    padding: 58px 18px;
  }

  .contact {
    padding-top: 92px;
  }

  section[id] {
    scroll-margin-top: 68px;
  }

  .contact-panel {
    padding: 18px;
  }

  .contact-prompts span {
    flex: 1 1 calc(50% - 8px);
    text-align: center;
  }

  .intro h2,
  .diagnostic h2,
  .ventures h2,
  .contact h2,
  .section-heading h2 {
    font-size: clamp(2.1rem, 11vw, 3.1rem);
  }

  .footer {
    display: grid;
  }
}

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