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

:root {
  --ink: #0b0b0c;
  --ink-2: #161617;
  --ink-3: #232325;
  --grey-1: #3f3f42;
  --grey-2: #6b6b70;
  --grey-3: #a3a3a8;
  --grey-4: #d4d4d7;
  --grey-5: #e9e9ea;
  --paper: #f6f6f4;
  --paper-2: #efefec;
  --white: #ffffff;
  --line-d: rgba(11, 11, 12, 0.12);
  --line-l: rgba(255, 255, 255, 0.14);
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Inter", -apple-system, sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

html {
  scroll-behavior: smooth;
}
body {
  font-family: var(--sans);
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}

.font-serif {
  font-family: var(--serif);
}
.kicker {
  font-size: 0.6875rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--grey-2);
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
}
.kicker::before {
  content: "";
  width: 2.25rem;
  height: 1px;
  background: currentColor;
  opacity: 0.5;
}
.kicker--bare::before {
  display: none;
}
.kicker--light {
  color: var(--grey-3);
}
.display-xl {
  font-family: var(--serif);
  font-size: clamp(2.6rem, 6vw, 5.25rem);
  line-height: 1.02;
  font-weight: 500;
  letter-spacing: -0.015em;
}
.display-lg {
  font-family: var(--serif);
  font-size: clamp(2.1rem, 4.6vw, 3.9rem);
  line-height: 1.05;
  font-weight: 500;
  letter-spacing: -0.01em;
}
.display-md {
  font-family: var(--serif);
  font-size: clamp(1.7rem, 3.4vw, 2.7rem);
  line-height: 1.1;
  font-weight: 500;
}
.display-sm {
  font-family: var(--serif);
  font-size: clamp(1.35rem, 2.4vw, 1.9rem);
  line-height: 1.15;
  font-weight: 600;
}
.lead {
  font-size: clamp(1rem, 1.4vw, 1.2rem);
  line-height: 1.75;
  color: var(--grey-1);
}
.lead--light {
  color: var(--grey-4);
}
.micro {
  font-size: 0.6875rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 600;
}
.micro--dim {
  color: var(--grey-2);
}
.idx {
  font-family: var(--serif);
  font-style: italic;
  font-size: 0.85em;
  color: var(--grey-3);
}

.wrap {
  width: min(80rem, 100% - 2.5rem);
  margin-inline: auto;
}
.wrap--wide {
  width: min(92rem, 100% - 2rem);
  margin-inline: auto;
}
.wrap--narrow {
  width: min(56rem, 100% - 2.5rem);
  margin-inline: auto;
}
.section {
  padding-block: clamp(4.5rem, 9vw, 8.5rem);
  position: relative;
}
.section--tight {
  padding-block: clamp(3rem, 6vw, 5rem);
}
.grid-2 {
  display: grid;
  gap: clamp(2rem, 4vw, 4rem);
}
.grid-3 {
  display: grid;
  gap: clamp(1.5rem, 3vw, 2.5rem);
}
.grid-4 {
  display: grid;
  gap: 1.25rem;
}
@media (min-width: 768px) {
  .grid-2 {
    grid-template-columns: repeat(2, 1fr);
  }
  .grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }
  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1100px) {
  .grid-3 {
    grid-template-columns: repeat(3, 1fr);
  }
  .grid-4 {
    grid-template-columns: repeat(4, 1fr);
  }
}
.split-40 {
  display: grid;
  gap: clamp(2rem, 4vw, 4rem);
}
.split-60 {
  display: grid;
  gap: clamp(2rem, 4vw, 4rem);
}
@media (min-width: 1024px) {
  .split-40 {
    grid-template-columns: 2fr 3fr;
  }
  .split-60 {
    grid-template-columns: 3fr 2fr;
  }
}
.hr {
  border: 0;
  border-top: 1px solid var(--line-d);
}
.hr--light {
  border-color: var(--line-l);
}

.surface-dark {
  background: var(--ink);
  color: var(--paper);
}
.surface-dark .lead {
  color: var(--grey-3);
}
.surface-ink2 {
  background: var(--ink-2);
  color: var(--paper);
}
.surface-ink2 .lead {
  color: var(--grey-3);
}
.surface-paper2 {
  background: var(--paper-2);
}
.surface-white {
  background: var(--white);
}
.card {
  background: var(--white);
  border: 1px solid var(--line-d);
  padding: clamp(1.5rem, 3vw, 2.5rem);
  position: relative;
  transition:
    transform 0.5s var(--ease),
    box-shadow 0.5s var(--ease);
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 48px -24px rgba(11, 11, 12, 0.25);
}
.card--dark {
  background: var(--ink-2);
  border-color: var(--line-l);
  color: var(--paper);
}
.card--flat:hover {
  transform: none;
  box-shadow: none;
}
.chip {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border: 1px solid var(--line-d);
  padding: 0.4rem 0.9rem;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 600;
}
.chip--dark {
  border-color: var(--line-l);
  color: var(--paper);
}
.chip--solid {
  background: var(--ink);
  color: var(--white);
  border-color: var(--ink);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  background: var(--ink);
  color: var(--white);
  border: 1px solid var(--ink);
  padding: 1rem 2.1rem;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 600;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition:
    color 0.4s var(--ease),
    background 0.4s var(--ease);
}
.btn::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--white);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.45s var(--ease);
  z-index: 0;
}
.btn:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}
.btn:hover {
  color: var(--ink);
}
.btn > * {
  position: relative;
  z-index: 1;
}
.btn--ghost {
  background: transparent;
  color: var(--ink);
}
.btn--ghost::after {
  background: var(--ink);
}
.btn--ghost:hover {
  color: var(--white);
}
.btn--light {
  background: var(--white);
  color: var(--ink);
  border-color: var(--white);
}
.btn--light::after {
  background: var(--ink);
}
.btn--light:hover {
  color: var(--white);
}
.btn--outline-light {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.4);
}
.btn--outline-light::after {
  background: var(--white);
}
.btn--outline-light:hover {
  color: var(--ink);
}
.btn--sm {
  padding: 0.7rem 1.3rem;
  font-size: 0.68rem;
}
.link-line {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--ink);
  padding-bottom: 0.35rem;
  border-bottom: 1px solid var(--ink);
  transition:
    gap 0.3s var(--ease),
    opacity 0.3s;
}
.link-line:hover {
  gap: 1rem;
  opacity: 0.65;
}
.link-line--light {
  color: var(--white);
  border-color: var(--white);
}

.bg-media {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
}
.bg-media--tall {
  min-height: clamp(26rem, 60vh, 44rem);
}
.bg-media--mid {
  min-height: clamp(18rem, 42vh, 30rem);
}

.site-topbar {
  background: var(--ink);
  color: var(--grey-4);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
}
.site-topbar .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-block: 0.5rem;
}
.site-topbar a {
  color: var(--grey-4);
  transition: color 0.3s;
}
.site-topbar a:hover {
  color: var(--white);
}
.topbar-item {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  white-space: nowrap;
}
.topbar-item i {
  font-size: 0.65rem;
  opacity: 0.7;
}
.topbar-hide {
  display: none;
}
@media (min-width: 900px) {
  .topbar-hide {
    display: inline-flex;
  }
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 900;
  background: rgba(250, 250, 249, 0.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line-d);
  transition: box-shadow 0.4s;
}
.site-header.is-scrolled {
  box-shadow: 0 12px 40px -20px rgba(11, 11, 12, 0.3);
}
.site-header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding-block: 0.9rem;
}
.site-logo {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  flex-shrink: 0;
}
.site-logo img {
  height: 2.6rem;
  width: auto;
}
.site-logo span {
  font-family: var(--serif);
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  white-space: nowrap;
}
.site-logo small {
  display: block;
  font-family: var(--sans);
  font-size: 0.58rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--grey-2);
  font-weight: 600;
}
.site-logo--light span {
  color: var(--paper);
}
.site-logo--light img {
  filter: brightness(0) invert(1);
}
.main-nav ul {
  display: flex;
  gap: clamp(1rem, 2vw, 1.9rem);
  list-style: none;
  margin: 0;
  padding: 0;
}
.main-nav a {
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--grey-1);
  padding-block: 0.4rem;
  position: relative;
  transition: color 0.3s;
}
.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 1px;
  width: 100%;
  background: var(--ink);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.35s var(--ease);
}
.main-nav a:hover {
  color: var(--ink);
}
.main-nav a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}
.main-nav {
  display: none;
}
@media (min-width: 1180px) {
  .main-nav {
    display: block;
  }
}
.header-cta {
  display: none;
}
@media (min-width: 900px) {
  .header-cta {
    display: inline-flex;
  }
}
.burger {
  width: 2.75rem;
  height: 2.75rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line-d);
  background: var(--white);
  cursor: pointer;
  font-size: 1rem;
  transition:
    background 0.3s,
    color 0.3s;
}
.burger:hover {
  background: var(--ink);
  color: var(--white);
}
@media (min-width: 1180px) {
  .burger {
    display: none;
  }
}

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 950;
  background: var(--ink);
  color: var(--paper);
  display: flex;
  flex-direction: column;
  padding: 1.25rem;
  transform: translateY(-100%);
  transition: transform 0.55s var(--ease);
  overflow-y: auto;
}
.mobile-menu.is-open {
  transform: translateY(0);
}
.mobile-menu__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2.5rem;
}
.mobile-menu__close {
  width: 2.75rem;
  height: 2.75rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line-l);
  background: transparent;
  color: var(--paper);
  cursor: pointer;
  font-size: 1.1rem;
}
.mobile-menu nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.mobile-menu nav a {
  display: flex;
  align-items: baseline;
  gap: 1rem;
  padding: 0.85rem 0;
  font-family: var(--serif);
  font-size: clamp(1.6rem, 5.5vw, 2.4rem);
  color: var(--paper);
  border-bottom: 1px solid var(--line-l);
}
.mobile-menu nav a .idx {
  font-size: 0.8rem;
}
.mobile-menu__contacts {
  margin-top: auto;
  padding-top: 2rem;
  display: grid;
  gap: 0.6rem;
  font-size: 0.85rem;
  color: var(--grey-3);
}
.mobile-menu__contacts a {
  color: var(--paper);
}

.site-footer {
  background: var(--ink);
  color: var(--grey-3);
}
.site-footer a {
  color: var(--grey-3);
  transition: color 0.3s;
}
.site-footer a:hover {
  color: var(--white);
}
.footer-grid {
  display: grid;
  gap: 2.5rem;
  padding-block: clamp(3rem, 6vw, 5rem);
}
@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  }
}
.footer-col h4 {
  color: var(--white);
  font-size: 0.72rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
  font-weight: 600;
}
.footer-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.6rem;
  font-size: 0.85rem;
}
.footer-brand img {
  height: 3rem;
  width: auto;
  margin-bottom: 1.25rem;
  filter: brightness(0) invert(1);
}
.footer-brand p {
  font-size: 0.85rem;
  line-height: 1.7;
  max-width: 24rem;
}
.footer-social {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.5rem;
}
.footer-social a {
  width: 2.5rem;
  height: 2.5rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line-l);
  font-size: 0.9rem;
  transition:
    background 0.3s,
    color 0.3s;
}
.footer-social a:hover {
  background: var(--white);
  color: var(--ink);
}
.footer-contact {
  display: grid;
  gap: 0.9rem;
  font-size: 0.85rem;
}
.footer-contact i {
  width: 1.1rem;
  opacity: 0.6;
}
.footer-meta {
  border-top: 1px solid var(--line-l);
  padding-block: 1.75rem;
}
.footer-meta .wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 2.5rem;
  align-items: center;
  justify-content: space-between;
  font-size: 0.72rem;
  letter-spacing: 0.06em;
}
.footer-legal-note {
  font-size: 0.7rem;
  color: var(--grey-2);
  line-height: 1.6;
}
.to-top {
  width: 2.75rem;
  height: 2.75rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line-l);
  color: var(--paper);
  background: transparent;
  cursor: pointer;
  transition:
    background 0.3s,
    color 0.3s;
}
.to-top:hover {
  background: var(--white);
  color: var(--ink);
}

.hero {
  position: relative;
  min-height: clamp(34rem, 92vh, 52rem);
  overflow: hidden;
  background: var(--ink);
}
.hero__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 1s var(--ease),
    visibility 1s;
  display: flex;
  align-items: flex-end;
}
.hero__slide.is-active {
  opacity: 1;
  visibility: visible;
}
.hero__slide-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}
.hero__slide-inner {
  position: relative;
  width: 100%;
  padding-block: clamp(4rem, 9vw, 7rem) clamp(5rem, 10vw, 8rem);
}
.hero__title {
  color: var(--white);
  max-width: 20ch;
}
.hero__lead {
  max-width: 34rem;
  margin-top: 1.5rem;
}
.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2.25rem;
}
.hero__nav {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 5;
}
.hero__nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding-block: 1.5rem;
}
.hero__dots {
  display: flex;
  gap: 0.6rem;
}
.hero__dot {
  width: 2.2rem;
  height: 2px;
  border: 0;
  background: rgba(255, 255, 255, 0.3);
  cursor: pointer;
  padding: 0;
  transition: background 0.4s;
}
.hero__dot.is-active {
  background: var(--white);
}
.hero__arrows {
  display: flex;
  gap: 0.5rem;
}
.hero__arrow {
  width: 3rem;
  height: 3rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: transparent;
  color: var(--white);
  cursor: pointer;
  transition:
    background 0.3s,
    color 0.3s;
}
.hero__arrow:hover {
  background: var(--white);
  color: var(--ink);
}
.hero__counter {
  color: var(--grey-3);
  font-size: 0.75rem;
  letter-spacing: 0.25em;
}
.hero__counter b {
  color: var(--white);
  font-weight: 600;
}

.manifesto {
  display: grid;
  gap: 2.5rem;
}
@media (min-width: 1024px) {
  .manifesto {
    grid-template-columns: 0.9fr 2fr 1.1fr;
  }
}
.manifesto__meta {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  font-size: 0.78rem;
  color: var(--grey-2);
}
.manifesto__meta .fas {
  font-size: 1.2rem;
  color: var(--ink);
}
.manifesto__meta dd {
  margin: 0;
  font-family: var(--serif);
  font-size: 1.35rem;
  color: var(--ink);
}
.manifesto__meta dt {
  font-size: 0.62rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  margin-bottom: 0.25rem;
}
.manifesto__body p {
  font-family: var(--serif);
  font-size: clamp(1.35rem, 2.4vw, 2rem);
  line-height: 1.5;
  margin-bottom: 1.5rem;
}
.manifesto__body p:first-of-type::first-letter {
  font-size: 3.4em;
  float: left;
  line-height: 0.85;
  padding-right: 0.12em;
  font-weight: 600;
}
.pull-quote {
  border-left: 2px solid var(--ink);
  padding-left: 1.25rem;
  margin-block: 1.75rem;
  font-style: italic;
  font-size: 1.05em;
}
.material-chip {
  display: flex;
  align-items: center;
  gap: 1rem;
  border: 1px solid var(--line-d);
  padding: 0.75rem;
  background: var(--white);
  transition: transform 0.4s var(--ease);
}
.material-chip:hover {
  transform: translateX(6px);
}
.material-chip .thumb {
  width: 4rem;
  height: 4rem;
  flex-shrink: 0;
}
.read-track {
  position: sticky;
  top: 7rem;
}

.suite-row {
  display: grid;
  gap: 1.75rem;
  align-items: stretch;
}
@media (min-width: 1024px) {
  .suite-row {
    grid-template-columns: 1.5fr 1fr;
  }
  .suite-row--flip {
    grid-template-columns: 1fr 1.5fr;
  }
}
.suite-media {
  min-height: 20rem;
  display: flex;
  align-items: flex-end;
  padding: 1.75rem;
}
.suite-media .chip {
  background: rgba(11, 11, 12, 0.55);
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(6px);
}
.spec-list {
  display: grid;
  gap: 0;
}
.spec-list li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.9rem 0;
  border-bottom: 1px solid var(--line-d);
  font-size: 0.85rem;
}
.spec-list li i {
  color: var(--grey-2);
  width: 1.1rem;
}
.spec-list b {
  font-weight: 600;
}
.surface-dark .spec-list li,
.card--dark .spec-list li {
  border-color: var(--line-l);
}
.float-tab {
  background: var(--white);
  border: 1px solid var(--line-d);
  padding: 1.5rem;
  box-shadow: 0 30px 60px -30px rgba(11, 11, 12, 0.35);
}
.price-tag {
  font-family: var(--serif);
  font-size: 2.2rem;
  font-weight: 600;
  line-height: 1;
}
.price-tag small {
  font-family: var(--sans);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--grey-2);
  display: block;
  margin-top: 0.35rem;
}

.hscroll {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: min(78vw, 30rem);
  gap: 1.5rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 1rem;
  scrollbar-width: thin;
}
.hscroll > * {
  scroll-snap-align: start;
}
.hscroll--sm {
  grid-auto-columns: min(70vw, 22rem);
}

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.filter-btn {
  border: 1px solid var(--line-d);
  background: transparent;
  padding: 0.6rem 1.2rem;
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
  cursor: pointer;
  transition:
    background 0.3s,
    color 0.3s;
  color: var(--grey-1);
}
.filter-btn:hover {
  border-color: var(--ink);
}
.filter-btn.is-active {
  background: var(--ink);
  color: var(--white);
  border-color: var(--ink);
}
.card--dark .filter-btn,
.surface-dark .filter-btn {
  border-color: var(--line-l);
  color: var(--grey-3);
}
.card--dark .filter-btn.is-active,
.surface-dark .filter-btn.is-active {
  background: var(--white);
  color: var(--ink);
  border-color: var(--white);
}
.seg {
  display: inline-flex;
  border: 1px solid var(--line-d);
  background: var(--white);
  padding: 0.25rem;
  gap: 0.25rem;
}
.seg button {
  border: 0;
  background: transparent;
  padding: 0.6rem 1.1rem;
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 600;
  cursor: pointer;
  color: var(--grey-2);
  transition:
    background 0.3s,
    color 0.3s;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
.seg button.is-active {
  background: var(--ink);
  color: var(--white);
}
.tab-panel {
  display: none;
}
.tab-panel.is-active {
  display: block;
  animation: fadeUp 0.6s var(--ease);
}

.course-list {
  counter-reset: course;
  list-style: none;
  margin: 0;
  padding: 0;
}
.course-list li {
  counter-increment: course;
  display: grid;
  grid-template-columns: 3rem 1fr;
  gap: 1rem;
  padding: 1.1rem 0;
  border-bottom: 1px solid var(--line-d);
  align-items: baseline;
}
.course-list li::before {
  content: counter(course, decimal-leading-zero);
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.1rem;
  color: var(--grey-3);
}
.course-list h4 {
  font-family: var(--serif);
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}
.course-list p {
  font-size: 0.85rem;
  color: var(--grey-2);
  margin: 0;
}
.surface-dark .course-list li {
  border-color: var(--line-l);
}
.surface-dark .course-list p {
  color: var(--grey-3);
}

.accordion-item {
  border-bottom: 1px solid var(--line-d);
}
.accordion-button {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  background: none;
  border: 0;
  text-align: left;
  cursor: pointer;
  padding: 1.4rem 0;
  font-family: var(--serif);
  font-size: clamp(1.1rem, 2vw, 1.45rem);
  font-weight: 600;
  color: var(--ink);
}
.accordion-button .acc-ico {
  flex-shrink: 0;
  width: 2rem;
  height: 2rem;
  border: 1px solid var(--line-d);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  transition:
    transform 0.4s var(--ease),
    background 0.3s,
    color 0.3s;
}
.accordion-button .acc-ico i {
  transition: transform 0.4s var(--ease);
}
.accordion-item.is-open .acc-ico {
  background: var(--ink);
  color: var(--white);
}
.accordion-item.is-open .acc-ico i {
  transform: rotate(45deg);
}
.accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s var(--ease);
}
.accordion-body > div {
  padding: 0 0 1.6rem;
  font-size: 0.92rem;
  line-height: 1.75;
  color: var(--grey-1);
  max-width: 46rem;
}
.surface-dark .accordion-item {
  border-color: var(--line-l);
}
.surface-dark .accordion-button {
  color: var(--paper);
}
.surface-dark .accordion-button .acc-ico {
  border-color: var(--line-l);
}
.surface-dark .accordion-item.is-open .acc-ico {
  background: var(--white);
  color: var(--ink);
}
.surface-dark .accordion-body > div {
  color: var(--grey-3);
}
details.acc {
  border-bottom: 1px solid var(--line-d);
}
details.acc summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.2rem 0;
  font-family: var(--serif);
  font-size: 1.15rem;
  font-weight: 600;
}
details.acc summary::-webkit-details-marker {
  display: none;
}
details.acc summary::after {
  content: "\f067";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: 0.7rem;
  color: var(--grey-2);
  transition: transform 0.3s;
}
details.acc[open] summary::after {
  transform: rotate(45deg);
}
details.acc .acc-body {
  padding-bottom: 1.4rem;
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--grey-1);
}

.stat {
  border-top: 1px solid var(--line-d);
  padding-top: 1.25rem;
}
.stat__num {
  font-family: var(--serif);
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 500;
  line-height: 1;
}
.stat__num sup {
  font-size: 0.4em;
}
.stat__label {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--grey-2);
  margin-top: 0.5rem;
  font-weight: 600;
}
.surface-dark .stat,
.card--dark .stat {
  border-color: var(--line-l);
}
.surface-dark .stat__label,
.card--dark .stat__label {
  color: var(--grey-3);
}

.timeline {
  position: relative;
}
.timeline__rail {
  display: flex;
  gap: 0;
  border-bottom: 1px solid var(--line-d);
  margin-bottom: 2.5rem;
  overflow-x: auto;
}
.timeline__tab {
  flex: 1;
  min-width: 7rem;
  border: 0;
  background: none;
  cursor: pointer;
  padding: 1rem 0.5rem;
  font-family: var(--serif);
  font-size: clamp(1.2rem, 2.4vw, 1.9rem);
  color: var(--grey-3);
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  transition:
    color 0.3s,
    border-color 0.3s;
}
.timeline__tab.is-active {
  color: var(--ink);
  border-color: var(--ink);
}
.timeline-v {
  position: relative;
  padding-left: 2rem;
}
.timeline-v::before {
  content: "";
  position: absolute;
  left: 0.35rem;
  top: 0.5rem;
  bottom: 0.5rem;
  width: 1px;
  background: var(--line-d);
}
.timeline-v__item {
  position: relative;
  padding-bottom: 2rem;
}
.timeline-v__item::before {
  content: "";
  position: absolute;
  left: -1.78rem;
  top: 0.5rem;
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: var(--paper);
  border: 1px solid var(--ink);
}
.timeline-v__year {
  font-family: var(--serif);
  font-size: 1.6rem;
  font-weight: 600;
}

.field {
  display: grid;
  gap: 0.45rem;
}
.field label {
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--grey-1);
}
.field input,
.field select,
.field textarea {
  width: 100%;
  border: 1px solid var(--line-d);
  background: var(--white);
  padding: 0.9rem 1.1rem;
  font-size: 0.9rem;
  font-family: var(--sans);
  color: var(--ink);
  transition:
    border-color 0.3s,
    box-shadow 0.3s;
  border-radius: 0;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--ink);
  box-shadow: 0 0 0 3px rgba(11, 11, 12, 0.08);
}
.field input.is-error,
.field select.is-error,
.field textarea.is-error {
  border-color: #b91c1c;
}
.field .err {
  display: none;
  font-size: 0.72rem;
  color: #b91c1c;
}
.field.has-error .err {
  display: block;
}
.card--dark .field input,
.card--dark .field select,
.card--dark .field textarea,
.surface-dark .field input,
.surface-dark .field select,
.surface-dark .field textarea {
  background: rgba(255, 255, 255, 0.06);
  border-color: var(--line-l);
  color: var(--white);
}
.card--dark .field label,
.surface-dark .field label {
  color: var(--grey-3);
}
.card--dark .field input::placeholder,
.surface-dark .field input::placeholder {
  color: var(--grey-2);
}
.check {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  font-size: 0.8rem;
  line-height: 1.55;
  color: var(--grey-1);
}
.check input {
  width: 1.05rem;
  height: 1.05rem;
  margin-top: 0.15rem;
  accent-color: var(--ink);
  flex-shrink: 0;
}
.check a {
  text-decoration: underline;
}
.card--dark .check,
.surface-dark .check {
  color: var(--grey-3);
}
.hp-field {
  position: absolute;
  left: -9999px;
  opacity: 0;
  height: 0;
  overflow: hidden;
}
.form-note {
  display: none;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.8rem;
  padding: 0.9rem 1.1rem;
  margin-top: 1rem;
}
.form-note.is-visible {
  display: flex;
}
.form-note--ok {
  background: #f0f0ee;
  border: 1px solid var(--line-d);
  color: var(--ink);
}
.form-note--err {
  background: #fdf2f2;
  border: 1px solid #f0c8c8;
  color: #8a1f1f;
}
.btn .spinner {
  width: 0.9rem;
  height: 0.9rem;
  border: 2px solid currentColor;
  border-top-color: transparent;
  border-radius: 50%;
  display: none;
  animation: spin 0.8s linear infinite;
}
.btn.is-loading .spinner {
  display: inline-block;
}
.btn.is-loading .btn-label {
  opacity: 0.6;
}
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

.toast {
  position: fixed;
  left: 50%;
  bottom: 1.5rem;
  transform: translate(-50%, 150%);
  z-index: 1200;
  background: var(--ink);
  color: var(--white);
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.9rem;
  font-size: 0.85rem;
  max-width: min(92vw, 30rem);
  box-shadow: 0 20px 50px -15px rgba(0, 0, 0, 0.45);
  transition: transform 0.55s var(--ease);
}
.toast.is-visible {
  transform: translate(-50%, 0);
}
.toast i {
  font-size: 1.1rem;
}
.toast strong {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 0.15rem;
}

.cookie-banner {
  position: fixed;
  bottom: 1.25rem;
  left: 1.25rem;
  right: 1.25rem;
  z-index: 1100;
  display: none;
  background: var(--white);
  color: var(--ink);
  border: 1px solid var(--line-d);
  box-shadow: 0 24px 60px -20px rgba(11, 11, 12, 0.35);
  padding: 1.4rem 1.6rem;
  gap: 1.25rem;
  align-items: center;
}
.cookie-banner.is-visible {
  display: flex;
}
.cookie-banner p {
  margin: 0;
  font-size: 0.82rem;
  line-height: 1.6;
  color: var(--grey-1);
  flex: 1;
  min-width: 15rem;
}
.cookie-banner p strong {
  display: block;
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-bottom: 0.3rem;
  color: var(--ink);
}
.cookie-banner__actions {
  display: flex;
  gap: 0.6rem;
  flex-shrink: 0;
}
@media (max-width: 640px) {
  .cookie-banner.is-visible {
    flex-direction: column;
    align-items: stretch;
  }
  .cookie-banner__actions {
    justify-content: stretch;
  }
  .cookie-banner__actions .btn {
    flex: 1;
  }html,body{max-width:100%;overflow-x:hidden}
}

.marquee {
  overflow: hidden;
  border-block: 1px solid var(--line-d);
  padding-block: 1.1rem;
}
.marquee__track {
  display: flex;
  gap: 3.5rem;
  width: max-content;
  animation: marquee 28s linear infinite;
}
.marquee__track span {
  font-family: var(--serif);
  font-size: 1.15rem;
  white-space: nowrap;
  color: var(--grey-2);
  display: inline-flex;
  align-items: center;
  gap: 3.5rem;
}
.marquee__track span::after {
  content: "·";
}
@keyframes marquee {
  to {
    transform: translateX(-50%);
  }
}

.polaroid-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
@media (min-width: 900px) {
  .polaroid-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
.polaroid {
  background: var(--white);
  padding: 0.75rem 0.75rem 1.1rem;
  border: 1px solid var(--line-d);
  box-shadow: 0 16px 34px -20px rgba(11, 11, 12, 0.3);
  transition: transform 0.5s var(--ease);
}
.polaroid:nth-child(odd) {
  transform: rotate(-1.6deg);
}
.polaroid:nth-child(even) {
  transform: rotate(1.4deg);
}
.polaroid:hover {
  transform: rotate(0) scale(1.03);
  z-index: 2;
}
.polaroid img {
  aspect-ratio: 1;
  object-fit: cover;
  width: 100%;
  background: var(--paper-2);
}
.polaroid figcaption {
  font-family: var(--serif);
  font-style: italic;
  font-size: 0.95rem;
  margin-top: 0.75rem;
  display: flex;
  justify-content: space-between;
  gap: 0.5rem;
}
.polaroid figcaption i {
  color: var(--grey-3);
  font-size: 0.75rem;
}

.tbl {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.88rem;
}
.tbl th {
  text-align: left;
  font-size: 0.66rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--grey-2);
  padding: 0.9rem 1rem;
  border-bottom: 1px solid var(--ink);
  font-weight: 600;
}
.tbl td {
  padding: 1rem;
  border-bottom: 1px solid var(--line-d);
  vertical-align: top;
}
.tbl tr:hover td {
  background: rgba(11, 11, 12, 0.025);
}
.tbl .num {
  font-family: var(--serif);
  font-size: 1.15rem;
  font-weight: 600;
  white-space: nowrap;
}
.tbl-scroll {
  overflow-x: auto;
}

.mapbox {
  position: relative;
  min-height: clamp(22rem, 55vh, 34rem);
  overflow: hidden;
}
.map-pin {
  position: absolute;
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  color: var(--ink);
  border: 0;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s var(--ease);
}
.map-pin::after {
  content: "";
  position: absolute;
  inset: -0.45rem;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  animation: ping 2.4s var(--ease) infinite;
}
.map-pin:hover {
  transform: scale(1.15);
}
@keyframes ping {
  0% {
    transform: scale(0.8);
    opacity: 1;
  }
  100% {
    transform: scale(1.5);
    opacity: 0;
  }
}
.map-panel {
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 4;
  background: rgba(11, 11, 12, 0.82);
  backdrop-filter: blur(10px);
  color: var(--paper);
  border: 1px solid var(--line-l);
  padding: 1.25rem 1.5rem;
  opacity: 0;
  transform: translateY(12px);
  pointer-events: none;
  transition:
    opacity 0.4s,
    transform 0.4s var(--ease);
}
.map-panel.is-visible {
  opacity: 1;
  transform: none;
  pointer-events: auto;
}
@media (min-width: 768px) {
  .map-panel {
    left: auto;
    right: 1.5rem;
    bottom: 1.5rem;
    width: 21rem;
  }
}

.stepper {
  display: flex;
  gap: 0;
  border: 1px solid var(--line-d);
  margin-bottom: 2rem;
}
.stepper__step {
  flex: 1;
  padding: 0.85rem;
  text-align: center;
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--grey-3);
  border-right: 1px solid var(--line-d);
}
.stepper__step:last-child {
  border-right: 0;
}
.stepper__step.is-active {
  background: var(--ink);
  color: var(--white);
}

.gauge {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  font-family: var(--serif);
}
.gauge b {
  font-size: clamp(2.6rem, 6vw, 4.5rem);
  font-weight: 500;
  line-height: 1;
}
.gauge span {
  font-size: 1rem;
  color: var(--grey-2);
}
.thermo {
  display: flex;
  height: 0.5rem;
  overflow: hidden;
  background: var(--grey-5);
}
.thermo i {
  flex: 1;
}
.thermo i:nth-child(1) {
  background: #2f3a45;
}
.thermo i:nth-child(2) {
  background: #4a5560;
}
.thermo i:nth-child(3) {
  background: #6e6a63;
}
.thermo i:nth-child(4) {
  background: #8a8178;
}
.thermo i:nth-child(5) {
  background: #0b0b0c;
}
.audio-bar {
  display: flex;
  align-items: center;
  gap: 1rem;
  border: 1px solid var(--line-l);
  background: rgba(255, 255, 255, 0.05);
  padding: 1rem 1.25rem;
}
.audio-bar button {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  border: 1px solid var(--line-l);
  background: var(--white);
  color: var(--ink);
  cursor: pointer;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s;
}
.audio-bar button:hover {
  transform: scale(1.08);
}
.audio-bar .eq {
  display: flex;
  gap: 3px;
  align-items: flex-end;
  height: 1.4rem;
}
.audio-bar .eq i {
  width: 3px;
  background: var(--grey-3);
  height: 30%;
}
.audio-bar.is-playing .eq i {
  animation: eq 0.9s ease-in-out infinite alternate;
}
.audio-bar .eq i:nth-child(2) {
  animation-delay: 0.15s;
}
.audio-bar .eq i:nth-child(3) {
  animation-delay: 0.3s;
}
.audio-bar .eq i:nth-child(4) {
  animation-delay: 0.45s;
}
.audio-bar .eq i:nth-child(5) {
  animation-delay: 0.6s;
}
@keyframes eq {
  from {
    height: 15%;
  }
  to {
    height: 100%;
  }
}
.avatar {
  width: 4.5rem;
  height: 4.5rem;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--white);
  box-shadow: 0 10px 24px -10px rgba(11, 11, 12, 0.4);
  background: var(--grey-4);
}
.img-frame {
  border: 1px solid var(--line-d);
  padding: 0.6rem;
  background: var(--white);
}
.img-frame img {
  width: 100%;
  object-fit: cover;
  background: var(--paper-2);
}
.ratio-45 {
  aspect-ratio: 4 / 5;
}
.ratio-11 {
  aspect-ratio: 1;
}
.ratio-169 {
  aspect-ratio: 16 / 9;
}
.ratio-32 {
  aspect-ratio: 3 / 2;
}
.seal {
  width: 5rem;
  height: 5rem;
  border-radius: 50%;
  border: 1px solid var(--line-d);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--ink);
  background: var(--white);
}
.card--dark .seal,
.surface-dark .seal {
  border-color: var(--line-l);
  color: var(--white);
  background: transparent;
}
.divider-label {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  font-size: 0.68rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--grey-2);
  font-weight: 600;
}
.divider-label::before,
.divider-label::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--line-d);
}
.surface-dark .divider-label::before,
.surface-dark .divider-label::after {
  background: var(--line-l);
}

.course-rail {
  display: flex;
  align-items: center;
  gap: 0;
  margin-bottom: 2.5rem;
}
.course-rail__node {
  flex: 1;
  text-align: center;
  position: relative;
  padding-top: 1.4rem;
  font-size: 0.66rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--grey-2);
}
.course-rail__node::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0.7rem;
  height: 0.7rem;
  border-radius: 50%;
  background: var(--grey-4);
  border: 1px solid var(--grey-3);
}
.course-rail__node::after {
  content: "";
  position: absolute;
  top: 0.35rem;
  left: -50%;
  width: 100%;
  height: 1px;
  background: var(--line-d);
}
.course-rail__node:first-child::after {
  display: none;
}
.course-rail__node.is-active {
  color: var(--ink);
}
.course-rail__node.is-active::before {
  background: var(--ink);
  border-color: var(--ink);
}

.vs-badge {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  background: var(--ink);
  color: var(--white);
  display: none;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.2rem;
  box-shadow: 0 16px 40px -12px rgba(0, 0, 0, 0.5);
}
@media (min-width: 1024px) {
  .vs-badge {
    display: inline-flex;
  }
}
.compare-row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.8rem 0;
  border-bottom: 1px solid var(--line-d);
  font-size: 0.85rem;
}
.compare-row span:first-child {
  color: var(--grey-2);
}

.glass-dark {
  background: rgba(16, 16, 18, 0.72);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--paper);
}

.sticky-book {
  position: sticky;
  bottom: 0;
  z-index: 40;
  background: var(--ink);
  color: var(--white);
  padding: 0.9rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.post-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--line-d);
  transition:
    transform 0.5s var(--ease),
    box-shadow 0.5s var(--ease);
}
.post-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 26px 50px -26px rgba(11, 11, 12, 0.3);
}
.post-card .thumb {
  aspect-ratio: 16 / 10;
}
.post-card .body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  flex: 1;
}
.post-card h3 {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1.2;
}
.post-card h3 a:hover {
  text-decoration: underline;
}
.post-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.25rem;
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--grey-2);
  font-weight: 600;
}
.post-meta i {
  margin-right: 0.35rem;
}

.prose-block h2 {
  font-family: var(--serif);
  font-size: clamp(1.6rem, 3vw, 2.3rem);
  font-weight: 600;
  margin: 2.5rem 0 1rem;
}
.prose-block h3 {
  font-family: var(--serif);
  font-size: 1.4rem;
  font-weight: 600;
  margin: 2rem 0 0.75rem;
}
.prose-block p {
  line-height: 1.8;
  color: var(--grey-1);
  margin-bottom: 1.25rem;
  font-size: 0.95rem;
}
.prose-block ul {
  margin: 0 0 1.25rem;
  padding-left: 1.1rem;
  line-height: 1.8;
  color: var(--grey-1);
  font-size: 0.95rem;
  list-style: disc;
}
.prose-block strong {
  color: var(--ink);
}
.prose-block a {
  text-decoration: underline;
  text-underline-offset: 3px;
}
.prose-block a:hover {
  color: var(--grey-2);
}

.page-hero {
  padding-block: clamp(4rem, 9vw, 7.5rem) clamp(3rem, 6vw, 5rem);
  position: relative;
  overflow: hidden;
}
.page-hero .lead {
  max-width: 42rem;
  margin-top: 1.5rem;
}
.breadcrumbs {
  display: flex;
  gap: 0.6rem;
  align-items: center;
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--grey-2);
  font-weight: 600;
  margin-bottom: 1.75rem;
}
.breadcrumbs a:hover {
  color: var(--ink);
}
.breadcrumbs i {
  font-size: 0.55rem;
  opacity: 0.6;
}

.uppercase {
  text-transform: uppercase;
}
.tracking-mega {
  letter-spacing: 0.32em;
}
.text-balance {
  text-wrap: balance;
}
.relative {
  position: relative;
}
.overlay-card {
  position: absolute;
  inset: auto 0 0 0;
  padding: 1.75rem;
  background: linear-gradient(transparent, rgba(11, 11, 12, 0.75));
  color: var(--white);
}
.no-scrollbar {
  scrollbar-width: none;
}
.no-scrollbar::-webkit-scrollbar {
  display: none;
}
.cursor-pointer {
  cursor: pointer;
}
.object-cover {
  object-fit: cover;
}
.w-full {
  width: 100%;
}
.h-full {
  height: 100%;
}
.mt-block {
  margin-top: 1.5rem;
}

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