:root {
  --ink: #201816;
  --paper: #f3ece4;
  --ivory: #fff9f3;
  --rose: #a85268;
  --rose-dark: #783649;
  --wine: #522835;
  --sage: #68705d;
  --line: rgba(32, 24, 22, 0.22);
  --content: 1220px;
  --serif: Georgia, "Times New Roman", serif;
  --sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  background: var(--paper);
  color: var(--ink);
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: clamp(1rem, 0.35vw + 0.92rem, 1.12rem);
  line-height: 1.58;
  text-rendering: optimizeLegibility;
}

a {
  color: inherit;
}

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

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

button {
  font: inherit;
}

:focus-visible {
  outline: 3px solid #eec4ce;
  outline-offset: 4px;
}

[hidden] {
  display: none !important;
}

.skip-link {
  position: fixed;
  top: 0.75rem;
  left: 0.75rem;
  z-index: 100;
  padding: 0.75rem 1rem;
  background: var(--ivory);
  color: var(--ink);
  transform: translateY(-160%);
}

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

.concept-ribbon {
  display: flex;
  min-height: 34px;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  padding: 0.4rem 1rem;
  background: var(--ink);
  color: var(--ivory);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  line-height: 1.2;
  text-align: center;
  text-transform: uppercase;
}

.site-header {
  display: grid;
  min-height: 76px;
  align-items: center;
  grid-template-columns: 1fr auto 1fr;
  gap: 2rem;
  padding: 0.65rem max(1.25rem, calc((100vw - var(--content)) / 2));
  border-bottom: 1px solid var(--line);
  background: rgba(255, 249, 243, 0.98);
}

.brand {
  display: inline-flex;
  align-items: center;
  justify-self: start;
  gap: 0.65rem;
  color: var(--ink);
  font-family: var(--serif);
  font-size: 1.1rem;
  font-weight: 700;
  text-decoration: none;
}

.brand img {
  width: 44px;
  height: 44px;
}

.brand-dot {
  color: var(--rose);
}

.site-header nav {
  display: flex;
  align-items: center;
  gap: clamp(1.1rem, 2.5vw, 2.4rem);
}

.site-header nav a,
.header-action {
  font-size: 0.76rem;
  font-weight: 750;
  letter-spacing: 0.12em;
  text-decoration: none;
  text-transform: uppercase;
}

.site-header nav a {
  position: relative;
}

.site-header nav a::after {
  position: absolute;
  right: 0;
  bottom: -0.35rem;
  left: 0;
  height: 1px;
  background: var(--rose);
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.site-header nav a:hover::after,
.site-header nav a:focus-visible::after {
  transform: scaleX(1);
}

.header-action {
  justify-self: end;
  padding: 0.7rem 1.25rem;
  border: 1px solid var(--ink);
  border-radius: 999px;
  transition: background 180ms ease, color 180ms ease;
}

.header-action:hover,
.header-action:focus-visible {
  background: var(--ink);
  color: var(--ivory);
}

.opening {
  position: relative;
  display: grid;
  min-height: 88svh;
  align-items: end;
  isolation: isolate;
  overflow: hidden;
  color: var(--ivory);
}

.opening-media,
.opening-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.opening-media {
  z-index: -3;
  max-width: none;
  object-fit: cover;
  object-position: 52% 48%;
  transform: scale(1.002);
}

.opening-shade {
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(32, 24, 22, 0.93) 0%, rgba(53, 29, 34, 0.77) 38%, rgba(35, 25, 24, 0.24) 72%, rgba(20, 14, 13, 0.28) 100%),
    linear-gradient(0deg, rgba(24, 14, 16, 0.72) 0%, transparent 44%);
}

.opening-content {
  width: min(920px, calc(100% - 2.5rem));
  margin-left: max(1.25rem, calc((100vw - var(--content)) / 2));
  padding: clamp(6rem, 14vh, 10rem) 0 clamp(6.7rem, 11vh, 8.5rem);
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin: 0 0 1.2rem;
  color: var(--rose-dark);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  line-height: 1.3;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 38px;
  height: 1px;
  background: currentColor;
  content: "";
}

.eyebrow-light {
  color: #f4cbd4;
}

.opening h1 {
  max-width: 820px;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(4rem, 8.6vw, 7.9rem);
  font-weight: 400;
  letter-spacing: -0.065em;
  line-height: 0.82;
  text-wrap: balance;
}

.opening h1 span {
  display: block;
  font-style: italic;
}

.opening-intro {
  max-width: 640px;
  margin: 1.8rem 0 0;
  color: rgba(255, 249, 243, 0.9);
  font-size: clamp(1.05rem, 0.9vw + 0.8rem, 1.32rem);
}

.former-name {
  margin: 0.6rem 0 0;
  color: rgba(255, 249, 243, 0.7);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.opening-actions,
.visit-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.9rem;
  margin-top: 2rem;
}

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  padding: 0.85rem 1.3rem;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1.2;
  text-decoration: none;
  text-transform: uppercase;
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

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

.button-primary {
  background: #f0bac7;
  color: #2c1720;
}

.button-primary:hover,
.button-primary:focus-visible {
  background: var(--ivory);
}

.button-ghost {
  border-color: rgba(255, 249, 243, 0.5);
  color: var(--ivory);
}

.button-ghost:hover,
.button-ghost:focus-visible {
  border-color: var(--ivory);
  background: var(--ivory);
  color: var(--ink);
}

.media-note,
.opening-scroll {
  position: absolute;
  bottom: 1.35rem;
  z-index: 2;
  margin: 0;
  color: rgba(255, 249, 243, 0.76);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.media-note-opening {
  right: max(1.25rem, calc((100vw - var(--content)) / 2));
}

.opening-scroll {
  left: max(1.25rem, calc((100vw - var(--content)) / 2));
  text-decoration: none;
}

.service-edit {
  display: grid;
  max-width: var(--content);
  margin: 0 auto;
  grid-template-columns: minmax(250px, 0.72fr) minmax(0, 1.3fr);
  gap: clamp(3rem, 8vw, 8rem);
  padding: clamp(6rem, 10vw, 10rem) 1.25rem;
}

.section-intro {
  align-self: start;
  position: sticky;
  top: 2rem;
}

.section-intro h2,
.studio-heading h2,
.visit h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(2.8rem, 5vw, 5.2rem);
  font-weight: 400;
  letter-spacing: -0.05em;
  line-height: 0.98;
  text-wrap: balance;
}

.section-intro > p:last-child,
.studio-heading > p:last-child {
  max-width: 42rem;
  margin: 1.5rem 0 0;
  color: rgba(32, 24, 22, 0.7);
}

.service-ledger {
  border-top: 1px solid var(--line);
}

.service-row {
  display: grid;
  align-items: start;
  grid-template-columns: 56px minmax(0, 1fr) auto;
  gap: 1.2rem;
  padding: clamp(2.2rem, 4.5vw, 4.2rem) 0;
  border-bottom: 1px solid var(--line);
}

.service-number {
  margin: 0;
  color: var(--rose-dark);
  font-family: var(--serif);
  font-size: 1.1rem;
  font-style: italic;
}

.service-row h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(2rem, 3.2vw, 3.4rem);
  font-weight: 400;
  letter-spacing: -0.04em;
  line-height: 1;
}

.service-row div p {
  max-width: 520px;
  margin: 1rem 0 0;
  color: rgba(32, 24, 22, 0.68);
}

.service-row > a {
  margin-top: 0.35rem;
  color: var(--rose-dark);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-decoration: none;
  text-transform: uppercase;
}

.motion-scene {
  position: relative;
  height: 320svh;
  min-height: 1800px;
  background: #1b1114;
  color: var(--ivory);
}

.motion-stage {
  position: sticky;
  top: 0;
  width: 100%;
  height: 100svh;
  min-height: 620px;
  overflow: hidden;
}

.motion-stage video,
.motion-grade,
.motion-copy {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.motion-stage video {
  max-width: none;
  object-fit: cover;
  object-position: 50% 46%;
}

.motion-grade {
  background:
    linear-gradient(90deg, rgba(28, 14, 18, 0.78) 0%, rgba(54, 22, 31, 0.34) 58%, rgba(26, 15, 18, 0.72) 100%),
    linear-gradient(0deg, rgba(18, 10, 12, 0.75) 0%, transparent 44%, rgba(18, 10, 12, 0.3) 100%);
}

.motion-copy {
  display: grid;
  padding: clamp(1.2rem, 4vw, 3.5rem) max(1.25rem, calc((100vw - var(--content)) / 2));
  grid-template-rows: auto 1fr auto;
}

.motion-label {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  color: rgba(255, 249, 243, 0.78);
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.motion-beats {
  position: relative;
  width: min(840px, 100%);
  align-self: center;
}

.motion-beat {
  position: absolute;
  inset: 50% auto auto 0;
  width: min(840px, 92vw);
  margin: 0;
  opacity: 0;
  transform: translateY(calc(-50% + 18px));
  transition: opacity 320ms ease, transform 420ms ease;
  visibility: hidden;
}

.motion-beat:first-child {
  opacity: 1;
  transform: translateY(-50%);
  visibility: visible;
}

.motion-scene[data-motion-state="enhanced"] .motion-beat {
  opacity: 0;
  transform: translateY(calc(-50% + 18px));
  visibility: hidden;
}

.motion-scene[data-motion-state="enhanced"] .motion-beat[data-active] {
  opacity: 1;
  transform: translateY(-50%);
  visibility: visible;
}

.motion-beat h2 {
  max-width: 820px;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(3.2rem, 7.5vw, 7.8rem);
  font-weight: 400;
  letter-spacing: -0.06em;
  line-height: 0.9;
  text-wrap: balance;
}

.motion-fallback {
  position: absolute;
  right: max(1.25rem, calc((100vw - var(--content)) / 2));
  bottom: clamp(4.5rem, 8vw, 7rem);
  display: flex;
  max-width: 390px;
  align-items: center;
  gap: 1rem;
}

.motion-fallback p {
  margin: 0;
  color: rgba(255, 249, 243, 0.82);
  font-size: 0.78rem;
}

.motion-opt-in {
  flex: 0 0 auto;
  min-height: 42px;
  padding: 0.6rem 0.95rem;
  border: 1px solid rgba(255, 249, 243, 0.68);
  border-radius: 999px;
  background: rgba(32, 24, 22, 0.72);
  color: var(--ivory);
  cursor: pointer;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.motion-progress {
  align-self: end;
  margin: 0;
  font-family: var(--serif);
  font-size: 0.86rem;
  font-style: italic;
}

.motion-scene[data-motion-state="static"] {
  height: auto;
  min-height: 0;
  padding: 0;
}

.motion-scene[data-motion-state="static"] .motion-stage {
  position: relative;
  height: auto;
  min-height: 0;
}

.motion-scene[data-motion-state="static"] .motion-stage video {
  position: relative;
  width: 100%;
  height: min(72svh, 720px);
  min-height: 420px;
}

.motion-scene[data-motion-state="static"] .motion-grade {
  height: min(72svh, 720px);
  min-height: 420px;
}

.motion-scene[data-motion-state="static"] .motion-copy {
  position: relative;
  display: block;
  height: auto;
  padding-top: 3rem;
  padding-bottom: 4rem;
}

.motion-scene[data-motion-state="static"] .motion-label {
  margin-bottom: 3rem;
}

.motion-scene[data-motion-state="static"] .motion-beats {
  display: grid;
  width: 100%;
  gap: 2.4rem;
}

.motion-scene[data-motion-state="static"] .motion-beat,
.motion-scene[data-motion-state="static"] .motion-beat:first-child {
  position: relative;
  inset: auto;
  width: min(900px, 100%);
  opacity: 1;
  transform: none;
  visibility: visible;
}

.motion-scene[data-motion-state="static"] .motion-beat h2 {
  font-size: clamp(2.5rem, 6vw, 5.4rem);
}

.motion-scene[data-motion-state="static"] .motion-fallback {
  position: relative;
  right: auto;
  bottom: auto;
  margin-top: 3rem;
}

.motion-scene[data-motion-state="static"] .motion-progress {
  display: none;
}

.no-script-status {
  margin: 2rem 0 0;
  color: rgba(255, 249, 243, 0.82);
  font-size: 0.8rem;
}

html.no-js .motion-scene {
  height: auto;
  min-height: 0;
}

html.no-js .motion-stage {
  position: relative;
  height: auto;
  min-height: 0;
}

html.no-js .motion-stage video {
  position: relative;
  width: 100%;
  height: min(72svh, 720px);
  min-height: 420px;
}

html.no-js .motion-grade {
  height: min(72svh, 720px);
  min-height: 420px;
}

html.no-js .motion-copy {
  position: relative;
  display: block;
  height: auto;
  padding-top: 3rem;
  padding-bottom: 4rem;
}

html.no-js .motion-label {
  margin-bottom: 3rem;
}

html.no-js .motion-beats {
  display: grid;
  width: 100%;
  gap: 2.4rem;
}

html.no-js .motion-beat,
html.no-js .motion-beat:first-child {
  position: relative;
  inset: auto;
  width: min(900px, 100%);
  opacity: 1;
  transform: none;
  visibility: visible;
}

html.no-js .motion-beat h2 {
  font-size: clamp(2.5rem, 6vw, 5.4rem);
}

html.no-js .motion-fallback,
html.no-js .motion-progress {
  display: none;
}

.studio {
  max-width: var(--content);
  margin: 0 auto;
  padding: clamp(6rem, 10vw, 10rem) 1.25rem;
}

.studio-heading {
  display: grid;
  align-items: end;
  grid-template-columns: 1.2fr 0.7fr;
  column-gap: clamp(3rem, 8vw, 8rem);
}

.studio-heading .eyebrow {
  grid-column: 1 / -1;
}

.studio-gallery {
  display: grid;
  margin-top: clamp(4rem, 8vw, 8rem);
  align-items: start;
  grid-template-columns: 1fr 0.9fr 1fr;
  gap: clamp(0.8rem, 2.2vw, 2.2rem);
}

.studio-photo {
  margin: 0;
}

.studio-photo-offset {
  margin-top: clamp(4rem, 9vw, 9rem);
}

.studio-photo img {
  width: 100%;
  aspect-ratio: 2 / 3;
  border: 1px solid rgba(32, 24, 22, 0.12);
  object-fit: cover;
}

.studio-photo figcaption {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.8rem 0 0;
  border-top: 1px solid var(--line);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.studio-photo figcaption span {
  color: var(--rose-dark);
  font-family: var(--serif);
  font-size: 0.9rem;
  font-style: italic;
}

.rights-note {
  max-width: 760px;
  margin: 2.6rem 0 0 auto;
  color: rgba(32, 24, 22, 0.58);
  font-size: 0.72rem;
}

.visit {
  display: grid;
  min-height: 78svh;
  align-items: stretch;
  grid-template-columns: 1.18fr 0.82fr;
  background: var(--wine);
  color: var(--ivory);
}

.visit-lead,
.hours {
  padding: clamp(4rem, 8vw, 8rem) max(1.25rem, calc((100vw - var(--content)) / 2));
}

.visit-lead {
  padding-right: clamp(2rem, 8vw, 8rem);
  border-right: 1px solid rgba(255, 249, 243, 0.18);
}

.visit h2 {
  max-width: 720px;
  font-size: clamp(3.8rem, 7.2vw, 7.5rem);
}

.visit address {
  margin-top: 2rem;
  color: rgba(255, 249, 243, 0.82);
  font-family: var(--serif);
  font-size: clamp(1.2rem, 1.6vw, 1.55rem);
  font-style: normal;
}

.button-paper {
  background: var(--ivory);
  color: var(--wine);
}

.button-paper:hover,
.button-paper:focus-visible {
  background: #f0bac7;
}

.text-link {
  color: rgba(255, 249, 243, 0.9);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-underline-offset: 0.35em;
  text-transform: uppercase;
}

.hours {
  align-self: stretch;
  padding-left: clamp(2rem, 6vw, 6rem);
  background: #43202b;
}

.hours-title {
  margin: 0 0 2rem;
  font-family: var(--serif);
  font-size: 2.1rem;
}

.hours dl {
  margin: 0;
}

.hours dl div {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  padding: 0.8rem 0;
  border-bottom: 1px solid rgba(255, 249, 243, 0.14);
}

.hours dt,
.hours dd {
  margin: 0;
}

.hours dt {
  color: rgba(255, 249, 243, 0.72);
}

.hours dd {
  font-weight: 750;
}

.visit-former {
  margin-top: 3rem;
}

.site-footer {
  display: grid;
  max-width: var(--content);
  margin: 0 auto;
  align-items: end;
  grid-template-columns: 0.8fr 1.4fr auto;
  gap: 3rem;
  padding: 3.5rem 1.25rem;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.footer-brand img {
  width: 52px;
  height: 52px;
}

.footer-brand p,
.footer-credits p {
  margin: 0;
}

.footer-brand strong {
  font-family: var(--serif);
}

.footer-credits {
  display: grid;
  gap: 0.55rem;
  color: rgba(32, 24, 22, 0.65);
  font-size: 0.72rem;
}

.footer-credits a,
.back-top {
  text-underline-offset: 0.25em;
}

.back-top {
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

@media (max-width: 900px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .site-header nav {
    display: none;
  }

  .opening-content {
    padding-bottom: 7.5rem;
  }

  .service-edit,
  .studio-heading {
    grid-template-columns: 1fr;
  }

  .section-intro {
    position: static;
  }

  .studio-heading > p:last-child {
    margin-top: 1.5rem;
  }

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

  .visit-lead {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 249, 243, 0.18);
  }

  .visit-lead,
  .hours {
    padding-right: 1.5rem;
    padding-left: 1.5rem;
  }

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

  .back-top {
    grid-column: 1 / -1;
  }
}

@media (max-width: 620px) {
  .concept-ribbon {
    flex-wrap: wrap;
    gap: 0.2rem 0.45rem;
    font-size: 0.59rem;
  }

  .site-header {
    min-height: 68px;
    padding-right: 1rem;
    padding-left: 1rem;
  }

  .brand img {
    width: 38px;
    height: 38px;
  }

  .brand {
    font-size: 0.95rem;
  }

  .header-action {
    padding: 0.6rem 0.9rem;
  }

  .opening {
    min-height: 86svh;
  }

  .opening-media {
    object-position: 56% 50%;
  }

  .opening-shade {
    background: linear-gradient(0deg, rgba(28, 15, 19, 0.94) 0%, rgba(42, 24, 28, 0.7) 63%, rgba(25, 17, 16, 0.42) 100%);
  }

  .opening-content {
    width: calc(100% - 2rem);
    margin-left: 1rem;
    padding: 6rem 0 7.4rem;
  }

  .opening h1 {
    font-size: clamp(3.3rem, 17vw, 5.15rem);
    line-height: 0.88;
  }

  .opening-intro {
    font-size: 1rem;
  }

  .opening-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .opening-scroll {
    left: 1rem;
  }

  .media-note-opening {
    right: 1rem;
    max-width: 45%;
    text-align: right;
  }

  .service-edit {
    gap: 3.5rem;
    padding: 5.5rem 1rem;
  }

  .section-intro h2,
  .studio-heading h2 {
    font-size: clamp(2.7rem, 13vw, 4rem);
  }

  .service-row {
    grid-template-columns: 40px minmax(0, 1fr);
    gap: 0.8rem;
    padding: 2.5rem 0;
  }

  .service-row > a {
    grid-column: 2;
  }

  .motion-scene {
    height: 280svh;
    min-height: 1500px;
  }

  .motion-stage {
    min-height: 560px;
  }

  .motion-stage video {
    object-position: 50% 50%;
  }

  .motion-label {
    align-items: flex-start;
    flex-direction: column;
    gap: 0.35rem;
  }

  .motion-beat h2 {
    font-size: clamp(3rem, 15vw, 5.4rem);
    line-height: 0.92;
  }

  .motion-fallback {
    right: 1rem;
    left: 1rem;
    bottom: 4.5rem;
    align-items: flex-start;
    flex-direction: column;
  }

  .motion-scene[data-motion-state="static"] .motion-stage video,
  .motion-scene[data-motion-state="static"] .motion-grade {
    height: 56svh;
    min-height: 370px;
  }

  .studio {
    padding: 5.5rem 1rem;
  }

  .studio-gallery {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    margin-top: 3.5rem;
  }

  .studio-photo-offset {
    margin-top: 0;
  }

  .visit-lead,
  .hours {
    padding: 5rem 1rem;
  }

  .visit h2 {
    font-size: clamp(3.2rem, 16vw, 5rem);
  }

  .visit-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .text-link {
    padding: 0.4rem 0;
  }

  .site-footer {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 3rem 1rem;
  }

  .back-top {
    grid-column: auto;
  }
}

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

  html:not(.motion-override) *,
  html:not(.motion-override) *::before,
  html:not(.motion-override) *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
  }
}
