:root {
  --paper: #f7f3ed;
  --paper-deep: #eee8df;
  --ink: #25202b;
  --ink-soft: #655f69;
  --plum: #594264;
  --plum-deep: #302238;
  --lilac: #d9cce2;
  --rose: #e9cfd4;
  --sage: #cbd8cd;
  --peach: #e8d1bd;
  --white: #fffdf9;
  --line: rgba(37, 32, 43, 0.14);
  --serif: "Newsreader", Georgia, serif;
  --sans: "Manrope", sans-serif;
  --detail: "DM Sans", sans-serif;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
}

body {
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a {
  color: inherit;
}

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

::selection {
  color: var(--white);
  background: var(--plum);
}

:focus-visible {
  outline: 2px solid #8f6ea0;
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  color: var(--white);
  background: var(--plum-deep);
  border-radius: 999px;
  text-decoration: none;
  transform: translateY(-160%);
  transition: transform 0.2s ease;
}

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

.container {
  width: min(100% - 48px, 1180px);
  margin-inline: auto;
}

h1,
h2,
h3 {
  font-family: var(--serif);
  font-weight: 500;
  line-height: 0.98;
  letter-spacing: -0.035em;
}

h1 em,
h2 em {
  color: var(--plum);
  font-weight: 400;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--plum);
  font-family: var(--detail);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  line-height: 1.2;
  text-transform: uppercase;
}

.eyebrow span {
  width: 28px;
  height: 1px;
  background: currentColor;
}

/* Navigation */
.navbar {
  position: fixed;
  z-index: 100;
  top: 0;
  right: 0;
  left: 0;
  border-bottom: 1px solid transparent;
  transition: background-color 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.navbar.scrolled {
  background: rgba(247, 243, 237, 0.88);
  border-color: rgba(37, 32, 43, 0.08);
  box-shadow: 0 10px 32px rgba(48, 34, 56, 0.04);
  backdrop-filter: blur(16px);
}

.nav-inner {
  display: flex;
  min-height: 82px;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: inline-flex;
  align-items: center;
  font-family: var(--serif);
  font-size: 1.7rem;
  font-weight: 500;
  letter-spacing: -0.02em;
  text-decoration: none;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}

.nav-links a {
  position: relative;
  color: var(--ink-soft);
  font-family: var(--detail);
  font-size: 0.82rem;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.2s ease;
}

.nav-links a:not(.nav-cta)::after {
  position: absolute;
  right: 0;
  bottom: -6px;
  left: 0;
  height: 1px;
  background: var(--plum);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.25s ease;
}

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

.nav-links a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-links .nav-cta {
  display: inline-flex;
  min-height: 42px;
  padding: 0 18px;
  align-items: center;
  gap: 10px;
  color: var(--white);
  background: var(--plum-deep);
  border-radius: 999px;
}

.nav-cta span {
  transition: transform 0.2s ease;
}

.nav-cta:hover span {
  transform: translate(2px, -2px);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  margin-left: auto;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 7px;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 50%;
  cursor: pointer;
}

.nav-toggle span {
  width: 18px;
  height: 1px;
  background: var(--ink);
  transition: transform 0.25s ease;
}

.nav-toggle.open span:first-child {
  transform: translateY(4px) rotate(45deg);
}

.nav-toggle.open span:last-child {
  transform: translateY(-4px) rotate(-45deg);
}

/* Hero */
.hero {
  position: relative;
  display: grid;
  min-height: 100svh;
  padding: 130px 0 76px;
  align-items: center;
  overflow: hidden;
}

.hero::before {
  position: absolute;
  inset: 0;
  z-index: -3;
  background:
    linear-gradient(rgba(37, 32, 43, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(37, 32, 43, 0.025) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: linear-gradient(to bottom, black, transparent 82%);
  content: "";
}

.hero-glow {
  position: absolute;
  z-index: -2;
  border-radius: 50%;
  filter: blur(2px);
  opacity: 0.8;
  pointer-events: none;
}

.hero-glow-one {
  width: 610px;
  height: 610px;
  top: -210px;
  right: -160px;
  background: radial-gradient(circle, rgba(217, 204, 226, 0.72), rgba(217, 204, 226, 0));
}

.hero-glow-two {
  width: 420px;
  height: 420px;
  bottom: -190px;
  left: 18%;
  background: radial-gradient(circle, rgba(203, 216, 205, 0.68), rgba(203, 216, 205, 0));
}

.hero-layout {
  display: grid;
  align-items: center;
  grid-template-columns: 1.08fr 0.92fr;
  gap: clamp(60px, 9vw, 132px);
}

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

.hero h1 {
  max-width: 680px;
  margin: 30px 0 28px;
  font-size: clamp(4.5rem, 7.2vw, 7rem);
}

.hero h1 em {
  display: block;
}

.hero-subtitle {
  max-width: 585px;
  color: var(--ink-soft);
  font-size: clamp(1.02rem, 1.4vw, 1.2rem);
  line-height: 1.75;
}

.hero-buttons {
  display: flex;
  margin-top: 38px;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  min-height: 54px;
  padding: 0 24px;
  align-items: center;
  justify-content: center;
  gap: 24px;
  border-radius: 999px;
  font-family: var(--detail);
  font-size: 0.84rem;
  font-weight: 600;
  text-decoration: none;
  transition: transform 0.25s ease, background-color 0.25s ease, color 0.25s ease;
}

.btn:hover {
  transform: translateY(-3px);
}

.btn-primary {
  color: var(--white);
  background: var(--plum-deep);
  box-shadow: 0 14px 32px rgba(48, 34, 56, 0.15);
}

.btn-primary:hover {
  background: var(--plum);
}

.btn-arrow {
  font-size: 1rem;
}

.text-link {
  display: inline-flex;
  padding-bottom: 4px;
  align-items: center;
  gap: 10px;
  border-bottom: 1px solid rgba(37, 32, 43, 0.34);
  font-family: var(--detail);
  font-size: 0.84rem;
  font-weight: 600;
  text-decoration: none;
  transition: border-color 0.2s ease, gap 0.2s ease;
}

.text-link:hover {
  gap: 15px;
  border-color: var(--ink);
}

.hero-proof {
  display: flex;
  margin-top: 62px;
  align-items: center;
  gap: 22px;
}

.hero-proof p {
  display: flex;
  align-items: center;
  gap: 10px;
}

.hero-proof strong {
  font-family: var(--serif);
  font-size: 1.55rem;
  font-weight: 500;
}

.hero-proof p span {
  max-width: 80px;
  color: var(--ink-soft);
  font-family: var(--detail);
  font-size: 0.67rem;
  line-height: 1.35;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.proof-line {
  width: 38px;
  height: 1px;
  background: var(--line);
}

.hero-portrait {
  position: relative;
  width: min(100%, 500px);
  margin: 0;
  justify-self: center;
}

.portrait-halo {
  position: absolute;
  width: 88%;
  aspect-ratio: 1;
  top: 2%;
  left: 6%;
  background:
    radial-gradient(circle at 68% 28%, rgba(233, 207, 212, 0.78), transparent 42%),
    rgba(217, 204, 226, 0.54);
  border-radius: 50%;
  box-shadow: 0 30px 90px rgba(72, 53, 81, 0.12);
}

.portrait-frame {
  position: relative;
  width: 100%;
  margin: 0;
  aspect-ratio: 1;
  border-radius: 50%;
  overflow: hidden;
}

.portrait-frame img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center bottom;
  filter: drop-shadow(0 28px 30px rgba(48, 34, 56, 0.18));
}

.hero-emblem {
  position: absolute;
  z-index: 2;
  top: -5%;
  right: 7%;
  display: block;
  width: clamp(78px, 7.2vw, 96px);
  height: auto;
  filter: drop-shadow(0 10px 18px rgba(89, 66, 100, 0.16));
}

.scroll-cue {
  position: absolute;
  bottom: 28px;
  left: 50%;
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--ink-soft);
  font-family: var(--detail);
  font-size: 0.66rem;
  letter-spacing: 0.1em;
  text-decoration: none;
  text-transform: uppercase;
  transform: translateX(-50%);
}

/* Shared sections */
.section {
  padding: clamp(90px, 11vw, 150px) 0;
}

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

.split-heading {
  display: grid;
  align-items: end;
  grid-template-columns: 1fr 0.8fr;
  gap: 80px;
}

.section-heading h2,
.services-heading h2,
.contact-copy h2 {
  margin-top: 23px;
  font-size: clamp(3.4rem, 5.8vw, 5.5rem);
}

.section-intro {
  max-width: 520px;
  color: var(--ink-soft);
  font-size: 1rem;
  line-height: 1.8;
}

.section-intro strong {
  color: var(--ink);
  font-weight: 600;
}

/* Companies */
.companies-section {
  position: relative;
  background: var(--white);
}

.companies-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.company-card {
  position: relative;
  display: flex;
  min-height: 370px;
  padding: 30px;
  justify-content: space-between;
  flex-direction: column;
  border: 1px solid rgba(37, 32, 43, 0.08);
  border-radius: 24px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.company-card:hover {
  z-index: 2;
  box-shadow: 0 24px 50px rgba(47, 36, 52, 0.1);
  transform: translateY(-7px);
}

.company-featured {
  min-height: 430px;
  grid-column: span 2;
  color: var(--white);
  background:
    radial-gradient(circle at 85% 10%, rgba(217, 204, 226, 0.25), transparent 30%),
    var(--plum-deep);
}

.company-featured::after {
  position: absolute;
  width: 260px;
  height: 260px;
  right: -78px;
  bottom: -100px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 50%;
  box-shadow: 0 0 0 38px rgba(255, 255, 255, 0.03), 0 0 0 78px rgba(255, 255, 255, 0.02);
  content: "";
}

.company-beauty {
  min-height: 430px;
  background: #f1dfe2;
}

.company-services {
  background: #dde5dc;
}

.company-academy {
  grid-column: span 2;
  background: #eadfd3;
}

.card-top {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

.card-number,
.card-kicker,
.card-detail {
  font-family: var(--detail);
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.card-number {
  opacity: 0.62;
}

.card-icon {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-size: 1.2rem;
  opacity: 0.68;
}

.card-icon svg {
  width: 23px;
  height: 23px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.5;
}

.card-copy {
  position: relative;
  z-index: 1;
  max-width: 470px;
}

.card-kicker {
  margin-bottom: 10px;
  opacity: 0.62;
}

.card-copy h3 {
  margin-bottom: 15px;
  font-size: clamp(2rem, 3vw, 2.8rem);
}

.card-copy p:last-child {
  max-width: 420px;
  font-size: 0.87rem;
  line-height: 1.72;
  opacity: 0.76;
}

.card-detail {
  position: absolute;
  right: 30px;
  bottom: 30px;
  opacity: 0.48;
}

/* Services */
.services-section {
  color: var(--white);
  background: var(--plum-deep);
}

.services-layout {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(60px, 10vw, 140px);
}

.eyebrow-light {
  color: var(--lilac);
}

.services-heading {
  position: sticky;
  top: 130px;
  height: fit-content;
}

.services-heading h2 {
  max-width: 480px;
}

.services-heading h2 em {
  color: var(--lilac);
}

.services-heading > p:not(.eyebrow) {
  max-width: 450px;
  margin: 28px 0 34px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.94rem;
}

.btn-light {
  color: var(--plum-deep);
  background: var(--white);
}

.btn-light:hover {
  color: var(--white);
  background: var(--plum);
}

.services-list {
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.service-item {
  position: relative;
  display: grid;
  padding: 35px 0 38px;
  align-items: start;
  grid-template-columns: 48px 1fr;
  gap: 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.service-number {
  padding-top: 5px;
  color: var(--lilac);
  font-family: var(--detail);
  font-size: 0.68rem;
}

.service-item h3 {
  margin-bottom: 13px;
  font-size: clamp(1.75rem, 2.8vw, 2.5rem);
}

.service-item p {
  max-width: 500px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.86rem;
  line-height: 1.7;
}

.service-item a {
  color: rgba(255, 255, 255, 0.88);
  text-decoration-color: rgba(217, 204, 226, 0.65);
  text-underline-offset: 3px;
  transition: color 0.2s ease, text-decoration-color 0.2s ease;
}

.service-item a:hover {
  color: var(--white);
  text-decoration-color: var(--lilac);
}

.services-note {
  max-width: 580px;
  margin-top: 26px;
  padding-left: 66px;
  color: rgba(255, 255, 255, 0.45);
  font-family: var(--detail);
  font-size: 0.7rem;
  line-height: 1.6;
}

/* Contact */
.contact-section {
  background: var(--white);
}

.contact-panel {
  position: relative;
  display: grid;
  min-height: 470px;
  padding: clamp(42px, 7vw, 84px);
  align-items: end;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 80px;
  background: var(--paper-deep);
  border-radius: 30px;
  overflow: hidden;
}

.contact-panel::before {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(115deg, transparent 46%, rgba(255, 255, 255, 0.28)),
    radial-gradient(circle at 90% 15%, rgba(217, 204, 226, 0.52), transparent 30%);
  content: "";
}

.contact-copy,
.contact-action {
  position: relative;
  z-index: 2;
}

.contact-copy h2 {
  max-width: 640px;
}

.contact-copy > p:last-child {
  max-width: 500px;
  margin-top: 25px;
  color: var(--ink-soft);
  font-size: 0.92rem;
}

.contact-action {
  padding-bottom: 8px;
}

.contact-action > span {
  display: block;
  margin-bottom: 12px;
  color: var(--ink-soft);
  font-family: var(--detail);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-action > a {
  display: flex;
  padding-bottom: 16px;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(37, 32, 43, 0.28);
  font-family: var(--serif);
  font-size: clamp(1.35rem, 2.2vw, 2rem);
  text-decoration: none;
}

.contact-action > a span {
  transition: transform 0.2s ease;
}

.contact-action > a:hover span {
  transform: translate(3px, -3px);
}

.contact-phones {
  display: grid;
  margin-top: 24px;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.contact-phones a {
  display: flex;
  padding: 14px 15px;
  flex-direction: column;
  border: 1px solid rgba(37, 32, 43, 0.12);
  border-radius: 12px;
  text-decoration: none;
  transition: background-color 0.2s ease, border-color 0.2s ease;
}

.contact-phones a:hover {
  background: rgba(255, 253, 249, 0.58);
  border-color: rgba(89, 66, 100, 0.3);
}

.contact-phones span {
  color: var(--ink-soft);
  font-family: var(--detail);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.contact-phones strong {
  margin-top: 2px;
  font-family: var(--detail);
  font-size: 0.77rem;
  font-weight: 600;
  white-space: nowrap;
}

.contact-address {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid rgba(37, 32, 43, 0.14);
  font-style: normal;
}

.contact-address > span {
  display: block;
  margin-bottom: 7px;
  color: var(--ink-soft);
  font-family: var(--detail);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.contact-address a {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  font-family: var(--detail);
  font-size: 0.8rem;
  font-weight: 600;
  line-height: 1.55;
  text-decoration: none;
}

.contact-address a span {
  transition: transform 0.2s ease;
}

.contact-address a:hover span {
  transform: translate(3px, -3px);
}

.contact-address small {
  display: block;
  margin-top: 6px;
  color: var(--ink-soft);
  font-family: var(--detail);
  font-size: 0.68rem;
}

.contact-orb {
  position: absolute;
  width: 250px;
  height: 250px;
  top: -154px;
  right: 15%;
  border: 1px solid rgba(89, 66, 100, 0.16);
  border-radius: 50%;
  box-shadow: 0 0 0 45px rgba(255, 255, 255, 0.11), 0 0 0 90px rgba(255, 255, 255, 0.08);
}

/* Footer */
.footer {
  padding: 76px 0 30px;
  color: var(--white);
  background: #211923;
}

.footer-top {
  display: grid;
  padding-bottom: 62px;
  align-items: start;
  grid-template-columns: 1fr 1fr 1fr;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.footer-logo {
  font-family: var(--serif);
  font-size: 2.4rem;
  line-height: 1;
  text-decoration: none;
}

.footer-top p {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.85rem;
  line-height: 1.6;
}

.footer-mail {
  justify-self: end;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.83rem;
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.25);
}

.footer-bottom {
  display: flex;
  padding-top: 27px;
  justify-content: space-between;
  gap: 30px;
  color: rgba(255, 255, 255, 0.38);
  font-family: var(--detail);
  font-size: 0.65rem;
}

/* Responsive */
@media (max-width: 980px) {
  .hero-layout {
    gap: 40px;
    grid-template-columns: 1.15fr 0.85fr;
  }

  .hero h1 {
    font-size: clamp(4.1rem, 8vw, 5.8rem);
  }

  .hero-portrait {
    max-width: 370px;
  }

  .split-heading,
  .services-layout {
    gap: 50px;
  }

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

  .company-beauty,
  .company-featured {
    min-height: 400px;
  }

  .company-academy {
    grid-column: auto;
  }

  .card-detail {
    display: none;
  }

  .contact-panel {
    gap: 50px;
  }
}

@media (max-width: 760px) {
  .container {
    width: min(100% - 36px, 1180px);
  }

  .nav-inner {
    min-height: 72px;
  }

  .nav-toggle {
    display: flex;
  }

  .nav-links {
    position: absolute;
    top: 100%;
    right: 18px;
    left: 18px;
    display: flex;
    padding: 10px;
    align-items: stretch;
    flex-direction: column;
    gap: 0;
    background: rgba(255, 253, 249, 0.97);
    border: 1px solid var(--line);
    border-radius: 18px;
    box-shadow: 0 20px 50px rgba(48, 34, 56, 0.14);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity 0.2s ease, transform 0.2s ease;
    backdrop-filter: blur(16px);
  }

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

  .nav-links a {
    display: block;
    padding: 13px 14px;
    font-size: 0.9rem;
  }

  .nav-links .nav-cta {
    margin-top: 5px;
    justify-content: space-between;
  }

  .hero {
    min-height: auto;
    padding: 132px 0 96px;
  }

  .hero-layout {
    grid-template-columns: 1fr;
    gap: 62px;
  }

  .hero h1 {
    margin: 25px 0 22px;
    font-size: clamp(3.6rem, 16vw, 5rem);
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .hero-proof {
    margin-top: 46px;
  }

  .hero-portrait {
    width: min(90vw, 410px);
  }

  .scroll-cue {
    display: none;
  }

  .section {
    padding: 88px 0;
  }

  .split-heading,
  .services-layout,
  .contact-panel {
    grid-template-columns: 1fr;
  }

  .split-heading {
    align-items: start;
    gap: 32px;
  }

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

  .section-heading h2,
  .services-heading h2,
  .contact-copy h2 {
    font-size: clamp(3rem, 13vw, 4.2rem);
  }

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

  .company-featured,
  .company-beauty,
  .company-card {
    min-height: 360px;
    grid-column: auto;
  }

  .services-layout {
    gap: 66px;
  }

  .services-heading {
    position: static;
  }

  .contact-panel {
    min-height: 620px;
    padding: 42px 28px;
    gap: 60px;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .footer-mail {
    justify-self: start;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }
}

@media (max-width: 430px) {
  .hero-buttons {
    align-items: stretch;
    flex-direction: column;
    gap: 18px;
  }

  .btn {
    justify-content: space-between;
  }

  .text-link {
    width: fit-content;
  }

  .hero-proof {
    gap: 14px;
  }

  .hero-portrait {
    width: 100%;
  }

  .company-card {
    padding: 25px;
  }

  .service-item {
    grid-template-columns: 30px 1fr;
    gap: 12px;
  }

  .services-note {
    padding-left: 42px;
  }

  .contact-action > a {
    align-items: flex-end;
    gap: 20px;
    overflow-wrap: anywhere;
  }

  .contact-phones {
    grid-template-columns: 1fr;
  }
}

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

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