@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@500;600&family=Manrope:wght@400;500;600;700&display=swap");

:root {
  --ivory: #f6f0e6;
  --ivory-deep: #e7ddcf;
  --paper: #fbf7f0;
  --ink: #24201d;
  --muted: #746b63;
  --oxblood: #711f2a;
  --oxblood-dark: #4e111b;
  --gold: #a9804e;
  --line: rgba(36, 32, 29, 0.2);
  --light-line: rgba(246, 240, 230, 0.25);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--ivory);
  color: var(--ink);
  font-family: "Manrope", Arial, sans-serif;
  font-size: 16px;
  overflow-x: hidden;
}

body::selection {
  background: var(--oxblood);
  color: var(--paper);
}

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

.js .reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 700ms ease,
    transform 700ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.js .reveal.is-visible {
  opacity: 1;
  transform: none;
}

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

.site-header {
  align-items: center;
  display: grid;
  gap: 32px;
  grid-template-columns: 1fr auto 1fr;
  height: 96px;
  left: 0;
  padding: 0 clamp(24px, 4.7vw, 72px);
  position: absolute;
  right: 0;
  top: 0;
  z-index: 20;
}

.wordmark {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(24px, 2.1vw, 34px);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1;
}

.desktop-nav {
  align-items: center;
  display: flex;
  gap: clamp(24px, 3.2vw, 52px);
}

.desktop-nav a {
  font-size: 14px;
  font-weight: 600;
  position: relative;
}

.desktop-nav a::after {
  background: var(--oxblood);
  bottom: -10px;
  content: "";
  height: 1px;
  left: 0;
  position: absolute;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 220ms ease;
  width: 100%;
}

.desktop-nav a:hover::after,
.desktop-nav a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-ticket {
  align-items: center;
  display: flex;
  font-size: 13px;
  font-weight: 700;
  gap: 12px;
  justify-self: end;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.header-ticket span {
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  display: flex;
  height: 38px;
  justify-content: center;
  transition:
    background 180ms ease,
    color 180ms ease,
    transform 180ms ease;
  width: 38px;
}

.header-ticket:hover span {
  background: var(--oxblood);
  color: var(--paper);
  transform: rotate(-45deg);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(430px, 0.95fr);
  height: 100svh;
  max-height: 960px;
  min-height: 760px;
  overflow: hidden;
  padding: 168px clamp(24px, 4.7vw, 72px) 68px;
  position: relative;
}

.hero::before {
  background:
    linear-gradient(90deg, transparent 49.95%, rgba(36, 32, 29, 0.08) 50%, transparent 50.05%),
    linear-gradient(rgba(36, 32, 29, 0.035) 1px, transparent 1px);
  background-size: 100% 100%, 100% 104px;
  content: "";
  inset: 0;
  pointer-events: none;
  position: absolute;
}

.hero-ornament {
  background:
    linear-gradient(135deg, transparent 39%, rgba(113, 31, 42, 0.08) 40%, rgba(113, 31, 42, 0.08) 41%, transparent 42%) 0 0 / 60px 60px,
    linear-gradient(45deg, transparent 39%, rgba(113, 31, 42, 0.06) 40%, rgba(113, 31, 42, 0.06) 41%, transparent 42%) 0 0 / 60px 60px;
  height: 420px;
  left: 39%;
  mask-image: radial-gradient(circle at center, #000 0, transparent 68%);
  opacity: 0.7;
  pointer-events: none;
  position: absolute;
  top: 80px;
  transform: rotate(45deg);
  width: 420px;
}

.hero-copy {
  align-self: center;
  max-width: 790px;
  padding-bottom: 105px;
  position: relative;
  z-index: 2;
}

.eyebrow {
  align-items: center;
  color: var(--oxblood);
  display: flex;
  font-size: 12px;
  font-weight: 700;
  gap: 16px;
  letter-spacing: 0.23em;
  margin: 0 0 24px;
  text-transform: uppercase;
}

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

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

h1,
h2,
h3 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 500;
}

h1 {
  font-size: clamp(82px, 9.25vw, 150px);
  letter-spacing: -0.065em;
  line-height: 0.72;
  margin-bottom: 44px;
}

.hero-intro {
  color: #5e5650;
  font-size: clamp(17px, 1.35vw, 21px);
  line-height: 1.58;
  margin-bottom: 34px;
  max-width: 560px;
}

.hero-actions {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}

.primary-button {
  align-items: center;
  background: var(--oxblood);
  color: var(--paper);
  display: inline-flex;
  font-size: 15px;
  font-weight: 600;
  gap: 46px;
  justify-content: space-between;
  min-width: 280px;
  padding: 20px 25px;
  transition:
    background 180ms ease,
    transform 180ms ease;
}

.primary-button:hover,
.primary-button:focus-visible {
  background: var(--oxblood-dark);
  transform: translateY(-2px);
}

.primary-button span {
  font-size: 22px;
  transition: transform 180ms ease;
}

.primary-button:hover span {
  transform: translateX(5px);
}

.text-link {
  border-bottom: 1px solid var(--ink);
  font-size: 14px;
  font-weight: 600;
  padding-bottom: 5px;
}

.hero-portrait {
  align-self: stretch;
  background: var(--oxblood);
  margin: -72px -72px -68px 20px;
  min-height: 720px;
  overflow: hidden;
  position: relative;
}

.hero-portrait::before {
  background: linear-gradient(180deg, transparent 52%, rgba(35, 13, 16, 0.58) 100%);
  content: "";
  inset: 0;
  pointer-events: none;
  position: absolute;
  z-index: 1;
}

.hero-portrait::after {
  border: 1px solid rgba(255, 255, 255, 0.34);
  content: "";
  inset: 22px;
  pointer-events: none;
  position: absolute;
  z-index: 1;
}

.hero-portrait img {
  filter: saturate(0.82) contrast(1.02);
  height: 100%;
  object-fit: cover;
  object-position: 50% 26%;
  transition:
    filter 500ms ease,
    transform 900ms cubic-bezier(0.2, 0.8, 0.2, 1);
  width: 100%;
}

.hero-portrait:hover img {
  filter: saturate(0.95) contrast(1.03);
  transform: scale(1.018);
}

.portrait-caption {
  bottom: 48px;
  color: var(--paper);
  display: flex;
  flex-direction: column;
  left: 48px;
  position: absolute;
  z-index: 2;
}

.portrait-caption span {
  font-size: 11px;
  letter-spacing: 0.18em;
  margin-bottom: 7px;
  text-transform: uppercase;
}

.portrait-caption strong {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 24px;
  font-weight: 500;
}

.hero-tour-note {
  align-items: center;
  bottom: 64px;
  display: grid;
  gap: 22px;
  grid-template-columns: auto auto minmax(220px, 1fr);
  left: clamp(24px, 4.7vw, 72px);
  max-width: calc(52% - 72px);
  position: absolute;
  z-index: 3;
}

.tour-note-number {
  border-right: 1px solid var(--line);
  color: var(--oxblood);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 56px;
  line-height: 0.85;
  padding-right: 22px;
}

.hero-tour-note div:nth-child(2) {
  display: flex;
  flex-direction: column;
  white-space: nowrap;
}

.hero-tour-note span {
  color: var(--muted);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  margin-bottom: 4px;
  text-transform: uppercase;
}

.hero-tour-note strong {
  font-size: 15px;
  font-weight: 600;
}

.hero-tour-note p {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.6;
  margin: 0;
}

.scroll-cue {
  align-items: center;
  bottom: 64px;
  display: flex;
  gap: 13px;
  position: absolute;
  right: 32px;
  writing-mode: vertical-rl;
  z-index: 4;
}

.scroll-cue span {
  color: var(--paper);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.scroll-cue i {
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 50%;
  color: var(--paper);
  display: flex;
  font-style: normal;
  height: 34px;
  justify-content: center;
  width: 34px;
}

.tour-section {
  background:
    radial-gradient(circle at 92% 8%, rgba(177, 128, 78, 0.19), transparent 28%),
    var(--oxblood-dark);
  color: var(--paper);
  display: grid;
  gap: clamp(50px, 7vw, 110px);
  grid-template-columns: minmax(270px, 0.62fr) minmax(520px, 1.38fr);
  overflow: hidden;
  padding: 132px clamp(24px, 6.4vw, 98px) 140px;
  position: relative;
}

.tour-section::after {
  border: 1px solid rgba(246, 240, 230, 0.08);
  border-radius: 50%;
  content: "";
  height: 520px;
  left: -260px;
  position: absolute;
  top: -260px;
  width: 520px;
}

.section-index {
  color: rgba(246, 240, 230, 0.38);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 24px;
  left: 34px;
  position: absolute;
  top: 42px;
}

.section-heading {
  align-self: start;
  position: sticky;
  top: 40px;
}

.light-eyebrow {
  color: #caa377;
}

.section-heading h2 {
  font-size: clamp(52px, 5.5vw, 86px);
  letter-spacing: -0.045em;
  line-height: 0.9;
  margin-bottom: 32px;
}

.section-heading > p:last-child {
  color: rgba(246, 240, 230, 0.65);
  font-size: 14px;
  line-height: 1.7;
  max-width: 390px;
}

.concert-list {
  border-top: 1px solid var(--light-line);
}

.concert-row {
  align-items: center;
  border-bottom: 1px solid var(--light-line);
  display: grid;
  gap: 18px;
  grid-template-columns: 45px minmax(180px, 1fr) minmax(125px, 0.55fr) auto;
  min-height: 142px;
  padding: 18px 0;
  position: relative;
  transition:
    color 180ms ease,
    padding 220ms ease;
}

.concert-row::before {
  background: var(--ivory);
  content: "";
  inset: 0;
  position: absolute;
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 240ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.concert-row:hover,
.concert-row:focus-visible {
  color: var(--oxblood-dark);
  outline: none;
  padding-left: 20px;
  padding-right: 20px;
}

.concert-row:hover::before,
.concert-row:focus-visible::before {
  transform: scaleY(1);
}

.concert-row > span {
  position: relative;
  z-index: 1;
}

.concert-number {
  color: #caa377;
  font-size: 11px;
  font-weight: 700;
}

.concert-city {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(34px, 3vw, 50px);
  font-weight: 500;
  letter-spacing: -0.035em;
}

.concert-date {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.concert-action {
  align-items: center;
  display: flex;
  font-size: 12px;
  font-weight: 700;
  gap: 16px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.concert-action i {
  align-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  display: flex;
  font-size: 16px;
  font-style: normal;
  height: 42px;
  justify-content: center;
  transition: transform 180ms ease;
  width: 42px;
}

.concert-row:hover .concert-action i {
  transform: rotate(45deg);
}

.artist-section {
  display: grid;
  gap: 30px clamp(42px, 6.6vw, 104px);
  grid-template-columns: minmax(320px, 1fr) minmax(350px, 0.85fr);
  padding: 150px clamp(24px, 6.4vw, 98px) 132px;
  position: relative;
}

.dark-index {
  color: rgba(36, 32, 29, 0.42);
}

.artist-heading {
  grid-column: 1 / -1;
}

.artist-heading h2,
.biography-heading h2,
.contacts-copy h2 {
  font-size: clamp(58px, 7.4vw, 116px);
  letter-spacing: -0.06em;
  line-height: 0.82;
  margin: 0;
}

.artist-story {
  border-top: 1px solid var(--line);
  display: grid;
  gap: 26px;
  grid-template-columns: 1.15fr 0.85fr;
  padding-top: 34px;
}

.artist-story p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 0;
}

.artist-story .artist-lead {
  color: var(--ink);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(26px, 2.4vw, 38px);
  letter-spacing: -0.02em;
  line-height: 1.14;
}

.artist-quote {
  align-items: flex-start;
  background: var(--oxblood);
  color: var(--paper);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  margin: 0;
  min-height: 340px;
  overflow: hidden;
  padding: 40px;
  position: relative;
}

.artist-quote::after {
  border: 1px solid rgba(246, 240, 230, 0.14);
  border-radius: 50%;
  content: "";
  height: 300px;
  position: absolute;
  right: -150px;
  top: -150px;
  width: 300px;
}

.artist-quote > span {
  color: #d2ad82;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  line-height: 1;
  text-transform: uppercase;
}

.artist-quote p {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(29px, 3.1vw, 46px);
  letter-spacing: -0.035em;
  line-height: 1.04;
  margin-bottom: 32px;
  position: relative;
  z-index: 1;
}

.artist-quote small {
  color: rgba(246, 240, 230, 0.62);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.artist-facts {
  border-top: 1px solid var(--line);
  display: grid;
  grid-column: 1 / -1;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 78px;
}

.fact {
  border-right: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  min-height: 180px;
  padding: 34px;
}

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

.fact strong {
  color: var(--oxblood);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(60px, 7vw, 106px);
  font-weight: 500;
  letter-spacing: -0.06em;
  line-height: 0.75;
}

.fact span {
  color: var(--muted);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  margin-top: auto;
  text-transform: uppercase;
}

.biography-section {
  background: var(--paper);
  display: grid;
  gap: clamp(54px, 8vw, 132px);
  grid-template-columns: minmax(280px, 0.7fr) minmax(500px, 1.3fr);
  padding: 144px clamp(24px, 6.4vw, 98px);
  position: relative;
}

.biography-heading {
  align-self: start;
  position: sticky;
  top: 44px;
}

.biography-heading h2 {
  font-size: clamp(56px, 6.2vw, 96px);
}

.biography-heading > p:last-child {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.75;
  margin: 32px 0 0;
  max-width: 390px;
}

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

.timeline-row {
  border-bottom: 1px solid var(--line);
  display: grid;
  gap: 34px;
  grid-template-columns: minmax(86px, 0.3fr) 1fr;
  padding: 38px 0 42px;
}

.timeline-row time {
  color: var(--oxblood);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(28px, 2.7vw, 42px);
  line-height: 1;
}

.timeline-row h3 {
  font-size: clamp(30px, 2.7vw, 42px);
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 16px;
}

.timeline-row p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.75;
  margin-bottom: 0;
  max-width: 580px;
}

.contacts-section {
  background:
    radial-gradient(circle at 86% 30%, rgba(113, 31, 42, 0.52), transparent 36%),
    #181412;
  color: var(--paper);
  display: grid;
  gap: clamp(70px, 12vw, 190px);
  grid-template-columns: minmax(370px, 1fr) minmax(380px, 0.78fr);
  overflow: hidden;
  padding: 144px clamp(24px, 6.4vw, 98px) 154px;
  position: relative;
}

.contact-ornament {
  background:
    linear-gradient(45deg, transparent 44%, rgba(202, 163, 119, 0.12) 45%, rgba(202, 163, 119, 0.12) 46%, transparent 47%) 0 0 / 84px 84px,
    linear-gradient(135deg, transparent 44%, rgba(202, 163, 119, 0.09) 45%, rgba(202, 163, 119, 0.09) 46%, transparent 47%) 0 0 / 84px 84px;
  bottom: -120px;
  height: 560px;
  opacity: 0.85;
  pointer-events: none;
  position: absolute;
  right: -80px;
  transform: rotate(18deg);
  width: 560px;
}

.contacts-copy {
  position: relative;
  z-index: 1;
}

.contacts-copy h2 {
  font-size: clamp(62px, 7vw, 110px);
}

.light-button {
  align-items: center;
  border: 1px solid rgba(246, 240, 230, 0.5);
  display: inline-flex;
  font-size: 14px;
  font-weight: 600;
  justify-content: space-between;
  margin-top: 48px;
  min-width: 278px;
  padding: 19px 22px;
  transition:
    background 180ms ease,
    color 180ms ease;
}

.light-button:hover,
.light-button:focus-visible {
  background: var(--paper);
  color: var(--ink);
}

.contact-details {
  align-self: end;
  font-style: normal;
  position: relative;
  z-index: 1;
}

.contact-details > p {
  color: rgba(246, 240, 230, 0.55);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  margin-bottom: 24px;
  text-transform: uppercase;
}

.contact-details > a {
  align-items: center;
  border-bottom: 1px solid rgba(246, 240, 230, 0.24);
  display: grid;
  gap: 16px;
  grid-template-columns: 70px 1fr auto;
  min-height: 100px;
  transition: padding 180ms ease;
}

.contact-details > a:first-of-type {
  border-top: 1px solid rgba(246, 240, 230, 0.24);
}

.contact-details > a:hover {
  padding-left: 12px;
}

.contact-details a > span {
  color: rgba(246, 240, 230, 0.5);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-details strong {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(23px, 2.25vw, 34px);
  font-weight: 500;
  letter-spacing: -0.02em;
}

.contact-details i {
  font-size: 22px;
  font-style: normal;
}

.site-footer {
  align-items: center;
  background: #181412;
  border-top: 1px solid rgba(246, 240, 230, 0.14);
  color: var(--paper);
  display: grid;
  gap: 30px;
  grid-template-columns: 1fr auto 1fr;
  min-height: 120px;
  padding: 24px clamp(24px, 4.7vw, 72px);
}

.site-footer p,
.site-footer > a:last-child {
  color: rgba(246, 240, 230, 0.54);
  font-size: 11px;
  margin: 0;
}

.site-footer > a:last-child {
  justify-self: end;
}

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

  .desktop-nav {
    display: none;
  }

  .hero {
    grid-template-columns: 1fr 0.8fr;
    min-height: 820px;
    padding-top: 140px;
  }

  .hero-portrait {
    margin-right: -24px;
  }

  .hero-tour-note {
    max-width: calc(57% - 48px);
  }

  .hero-tour-note p {
    display: none;
  }

  .tour-section {
    gap: 60px;
    grid-template-columns: 1fr;
  }

  .section-heading {
    position: static;
  }

  .artist-section {
    grid-template-columns: 1fr 1fr;
  }

  .artist-heading {
    grid-column: 1 / -1;
  }

  .artist-story {
    grid-column: 1 / -1;
  }

  .artist-facts {
    margin-top: 42px;
  }

  .biography-section,
  .contacts-section {
    gap: 64px;
    grid-template-columns: 1fr;
  }

  .biography-heading {
    position: static;
  }
}

@media (max-width: 720px) {
  .site-header {
    height: 78px;
  }

  .header-ticket {
    font-size: 0;
  }

  .hero {
    display: flex;
    flex-direction: column;
    height: auto;
    max-height: none;
    min-height: auto;
    padding-bottom: 0;
    padding-top: 120px;
  }

  .hero-copy {
    padding-bottom: 46px;
  }

  h1 {
    font-size: clamp(72px, 24vw, 112px);
    margin-bottom: 34px;
  }

  .hero-intro {
    font-size: 16px;
  }

  .primary-button {
    min-width: min(100%, 290px);
  }

  .hero-portrait {
    height: 590px;
    margin: 0 -24px;
    min-height: 0;
  }

  .hero-tour-note {
    background: var(--paper);
    bottom: auto;
    grid-template-columns: auto 1fr;
    left: auto;
    margin: 0 -24px;
    max-width: none;
    padding: 26px 24px;
    position: relative;
    width: calc(100% + 48px);
  }

  .tour-note-number {
    font-size: 46px;
  }

  .scroll-cue {
    display: none;
  }

  .portrait-caption {
    bottom: 30px;
    left: 28px;
  }

  .tour-section {
    padding-bottom: 88px;
    padding-top: 92px;
  }

  .concert-row {
    gap: 8px 14px;
    grid-template-columns: 32px 1fr auto;
    min-height: 126px;
  }

  .concert-city {
    font-size: 34px;
  }

  .concert-date {
    grid-column: 2;
  }

  .concert-action {
    font-size: 0;
    grid-column: 3;
    grid-row: 1 / 3;
  }

  .artist-section,
  .biography-section,
  .contacts-section {
    padding-bottom: 88px;
    padding-top: 94px;
  }

  .artist-section {
    display: flex;
    flex-direction: column;
  }

  .artist-story {
    display: grid;
    grid-template-columns: 1fr;
  }

  .artist-quote {
    min-height: 320px;
    padding: 30px;
  }

  .artist-facts {
    grid-template-columns: 1fr 1fr;
    margin-top: 34px;
  }

  .fact {
    min-height: 142px;
    padding: 24px 14px;
  }

  .fact:nth-child(2) {
    border-right: 0;
  }

  .fact-wide {
    border-right: 0;
    border-top: 1px solid var(--line);
    grid-column: 1 / -1;
  }

  .timeline-row {
    gap: 12px;
    grid-template-columns: 1fr;
  }

  .contact-details > a {
    gap: 8px;
    grid-template-columns: 1fr auto;
    padding: 22px 0;
  }

  .contact-details a > span {
    grid-column: 1 / -1;
  }

  .contact-details strong {
    font-size: 24px;
  }

  .site-footer {
    align-items: flex-start;
    grid-template-columns: 1fr;
    padding-bottom: 38px;
    padding-top: 38px;
  }

  .site-footer > a:last-child {
    justify-self: start;
  }
}

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

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