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

:root {
  --background: #07060a;
  --cream: #f0ebe2;
  --stone: #c9b99a;
  --gold: #b08d57;
  --muted: #6a6060;
  --ink: rgba(7, 6, 10, 0.72);
  --line: rgba(201, 185, 154, 0.22);
  --glass: rgba(12, 10, 12, 0.56);
  --glass-strong: rgba(12, 10, 12, 0.78);
  --header-h: 78px;
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  background: var(--background);
  color: var(--cream);
  scroll-behavior: smooth;
  scroll-snap-type: none;
  overscroll-behavior-y: none;
  font-family: Manrope, system-ui, sans-serif;
}

body {
  min-height: 100%;
  margin: 0;
  background: var(--background);
  color: var(--cream);
  font-family: Manrope, system-ui, sans-serif;
}

.painted-texture {
  position: fixed;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  opacity: 0.82;
}

body.mobile-menu-open {
  overflow: hidden;
}

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

button {
  font: inherit;
}

address {
  font-style: normal;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1000;
  height: var(--header-h);
  display: grid;
  grid-template-columns: minmax(150px, 220px) 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 0 38px;
  background: linear-gradient(180deg, rgba(7, 6, 10, 0.78), rgba(7, 6, 10, 0.18) 78%, transparent);
  border-bottom: 1px solid rgba(201, 185, 154, 0.08);
}

.brand {
  font-family: "Cormorant Garamond", serif;
  font-size: 28px;
  font-weight: 500;
  color: var(--cream);
  white-space: nowrap;
}

.desktop-nav,
.header-actions,
.language-switcher,
.social-row {
  display: flex;
  align-items: center;
}

.desktop-nav {
  justify-content: center;
  gap: 21px;
}

.desktop-nav a {
  position: relative;
  color: rgba(240, 235, 226, 0.72);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0;
}

.desktop-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -9px;
  height: 1px;
  transform: scaleX(0);
  transform-origin: left;
  background: var(--gold);
  transition: transform 180ms ease;
}

.desktop-nav a:hover,
.desktop-nav a.is-active {
  color: var(--cream);
}

.desktop-nav a.is-active::after {
  transform: scaleX(1);
}

.header-actions {
  justify-content: flex-end;
  gap: 10px;
}

.language-switcher {
  border: 1px solid var(--line);
  background: rgba(7, 6, 10, 0.42);
}

.language-switcher a {
  min-width: 34px;
  min-height: 34px;
  display: grid;
  place-items: center;
  color: rgba(240, 235, 226, 0.62);
  font-size: 11px;
  font-weight: 700;
  border-right: 1px solid rgba(201, 185, 154, 0.12);
}

.language-switcher a:last-child {
  border-right: 0;
}

.language-switcher a.is-active {
  color: var(--cream);
  background: rgba(176, 141, 87, 0.2);
}

.icon-button,
.menu-button,
.section-dots button {
  border: 1px solid var(--line);
  background: rgba(7, 6, 10, 0.42);
  color: var(--cream);
}

.icon-button {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  cursor: pointer;
}

.icon-button:hover,
.menu-button:hover {
  border-color: rgba(176, 141, 87, 0.68);
}

.menu-button {
  width: 40px;
  height: 36px;
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  padding: 0 9px;
  cursor: pointer;
}

.menu-button span {
  display: block;
  height: 1px;
  background: var(--cream);
}

.progress-line {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  transform: scaleX(0);
  transform-origin: left;
  background: linear-gradient(90deg, var(--gold), rgba(240, 235, 226, 0.7));
}

.mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 900;
  display: none;
  background: rgba(7, 6, 10, 0.96);
  padding: 100px 28px 28px;
}

.mobile-nav-inner {
  display: grid;
  gap: 18px;
}

.mobile-nav a {
  color: var(--cream);
  font-family: "Cormorant Garamond", serif;
  font-size: 34px;
}

.mobile-lang {
  width: max-content;
  margin-top: 14px;
}

.stack-wrapper {
  position: relative;
  z-index: 1;
}

.stack-section {
  position: sticky;
  top: 0;
  z-index: var(--stack-index);
  min-height: 100vh;
  height: 100vh;
  overflow: hidden;
  isolation: isolate;
  background: transparent;
  transform: translateZ(0);
}

.media-bg,
.history-ghost,
.bread-overlay,
.package-overlay,
.section-shade {
  position: absolute;
  inset: 0;
  z-index: -3;
  overflow: hidden;
}

.media-poster,
.media-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.media-poster {
  z-index: 1;
  opacity: 0.92;
  transform: scale(1.01);
}

.media-video {
  z-index: 2;
  opacity: 0;
  transition: opacity 420ms ease;
}

.media-video.is-ready {
  opacity: 1;
}

.section-shade {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(7, 6, 10, 0.82), rgba(7, 6, 10, 0.42) 46%, rgba(7, 6, 10, 0.64)),
    linear-gradient(180deg, rgba(7, 6, 10, 0.58), rgba(7, 6, 10, 0.16) 38%, rgba(7, 6, 10, 0.74));
}

.history-ghost,
.bread-overlay,
.package-overlay {
  z-index: -2;
  opacity: 0;
  mix-blend-mode: screen;
  transition: opacity 280ms ease;
}

.history-ghost {
  opacity: 0.18;
}

.bread-overlay {
  opacity: 0.16;
  transform: translateX(24%);
}

.package-overlay {
  opacity: 0;
}

.residency-section[data-active-package="into"] .package-overlay[data-pkg="into"],
.residency-section[data-active-package="underwater"] .package-overlay[data-pkg="underwater"],
.residency-section[data-active-package="otherside"] .package-overlay[data-pkg="otherside"],
.residency-section[data-active-package="fuel"] .package-overlay[data-pkg="fuel"] {
  opacity: 0.34;
}

.section-content {
  position: relative;
  z-index: 2;
  width: min(1480px, calc(100% - 76px));
  height: 100%;
  margin: 0 auto;
  padding: calc(var(--header-h) + 24px) 0 48px;
}

.eyebrow,
.panel-label,
.package-tags {
  margin: 0;
  color: var(--gold);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-weight: 500;
  letter-spacing: 0;
}

h1 {
  max-width: 920px;
  font-size: 112px;
  line-height: 0.92;
}

h1 span {
  display: inline-block;
  margin: 0 0.18em;
  color: rgba(201, 185, 154, 0.6);
  font-style: italic;
}

h1 em,
h2 em {
  color: var(--stone);
  font-style: italic;
}

h2 {
  font-size: 72px;
  line-height: 0.94;
}

h3 {
  font-size: 28px;
  line-height: 1;
}

.lead,
.hero-note,
.paragraphs p,
.room-card p,
.package-card p,
.about-text,
.founder p,
.equipment-thanks,
.value-list {
  color: rgba(240, 235, 226, 0.74);
  font-size: 15px;
  line-height: 1.58;
}

.lead {
  max-width: 720px;
  margin: 20px 0 0;
}

.hero-section .section-shade {
  background:
    linear-gradient(90deg, rgba(7, 6, 10, 0.78), rgba(7, 6, 10, 0.18) 54%, rgba(7, 6, 10, 0.38)),
    linear-gradient(180deg, rgba(7, 6, 10, 0.62), rgba(7, 6, 10, 0.08) 48%, rgba(7, 6, 10, 0.82));
}

.hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

.hero-note {
  max-width: 520px;
  margin: 24px 0 0;
  font-size: 18px;
}

.hero-next {
  position: absolute;
  left: 38px;
  right: 38px;
  bottom: 28px;
  z-index: 5;
  display: flex;
  align-items: center;
  gap: 18px;
  padding-top: 18px;
  border-top: 1px solid rgba(201, 185, 154, 0.24);
  color: rgba(240, 235, 226, 0.78);
}

.hero-next span {
  color: var(--gold);
  font-family: "Cormorant Garamond", serif;
  font-size: 44px;
  line-height: 1;
}

.hero-next strong {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0;
}

.place-layout,
.location-layout,
.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.8fr);
  gap: 72px;
  align-items: center;
}

.copy-column h2 {
  margin-top: 10px;
}

.big-number,
.big-word {
  color: rgba(201, 185, 154, 0.16);
  font-family: "Cormorant Garamond", serif;
  font-size: 178px;
  line-height: 0.82;
  pointer-events: none;
}

.big-number.compact {
  font-size: 96px;
  color: rgba(201, 185, 154, 0.28);
}

.value-list {
  display: grid;
  gap: 11px;
  max-width: 760px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.value-list li {
  padding-left: 18px;
  border-left: 1px solid rgba(176, 141, 87, 0.5);
}

.timeline-panel,
.access-panel,
.faq-panel,
.about-panel,
.room-card,
.package-card,
.equipment-frame-shell {
  border: 1px solid var(--line);
  background: var(--glass);
  backdrop-filter: blur(14px);
  border-radius: 6px;
}

.timeline-panel {
  display: grid;
  align-content: center;
  gap: 12px;
  padding: 28px;
}

.timeline-item {
  display: grid;
  grid-template-columns: 74px 1fr;
  gap: 18px;
  padding: 14px 0;
  border-top: 1px solid rgba(201, 185, 154, 0.14);
}

.timeline-item span {
  color: var(--stone);
  font-family: "Cormorant Garamond", serif;
  font-size: 36px;
  line-height: 1;
}

.timeline-item p {
  margin: 0;
  color: rgba(240, 235, 226, 0.72);
  font-size: 14px;
}

.studio-layout,
.equipment-layout,
.residency-layout {
  display: grid;
  align-content: center;
  gap: 28px;
}

.section-heading {
  display: grid;
  gap: 12px;
}

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

.room-card {
  min-height: 0;
  padding: 18px;
}

.room-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 12px;
}

.room-head span {
  color: var(--gold);
  font-weight: 800;
}

.room-card p {
  min-height: 94px;
  margin: 0 0 16px;
  font-size: 14px;
}

.room-video {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: rgba(7, 6, 10, 0.74);
  border: 1px solid rgba(201, 185, 154, 0.12);
}

.room-video img,
.room-video video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.room-video img {
  opacity: 0.9;
}

.room-video video {
  opacity: 0.92;
}

.room-video a {
  position: absolute;
  right: 12px;
  bottom: 12px;
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  color: var(--cream);
  border: 1px solid rgba(240, 235, 226, 0.42);
  background: rgba(7, 6, 10, 0.62);
  font-size: 14px;
}

.equipment-layout {
  grid-template-columns: minmax(340px, 0.62fr) minmax(0, 1fr);
  align-items: end;
  column-gap: 30px;
}

.chip-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  max-width: 700px;
  margin-top: 14px;
}

.chip-cloud span {
  padding: 7px 10px;
  color: rgba(240, 235, 226, 0.78);
  font-size: 11px;
  border: 1px solid rgba(201, 185, 154, 0.18);
  background: rgba(7, 6, 10, 0.42);
}

.equipment-frame-shell {
  height: 620px;
  min-height: 0;
  overflow: hidden;
}

.equipment-frame-shell iframe {
  width: 100%;
  height: 100%;
  border: 0;
  background: transparent;
}

.equipment-thanks {
  grid-column: 2;
  margin: 0;
  font-size: 12px;
}

.equipment-thanks a {
  color: var(--stone);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.location-layout {
  grid-template-columns: minmax(0, 1fr) minmax(360px, 520px);
}

.big-word {
  margin-bottom: -24px;
}

.paragraphs {
  max-width: 680px;
  margin-top: 26px;
}

.access-panel {
  padding: 30px;
}

.access-list {
  display: grid;
  gap: 16px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.access-list li {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 14px;
  align-items: center;
}

.access-icon {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(176, 141, 87, 0.36);
  color: var(--gold);
}

.access-icon::before {
  content: "•";
}

.access-icon[data-icon="car"]::before {
  content: "↔";
}

.access-icon[data-icon="train"]::before {
  content: "▤";
}

.access-icon[data-icon="plane"]::before {
  content: "↗";
}

.access-icon[data-icon="bolt"]::before {
  content: "ϟ";
}

.access-list p {
  margin: 0;
  color: rgba(240, 235, 226, 0.78);
  font-size: 15px;
}

.history-section {
  background: #050407;
}

.history-section-frame {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-rows: auto 1fr;
  padding-top: var(--header-h);
}

.history-caption {
  position: absolute;
  top: calc(var(--header-h) + 24px);
  left: 38px;
  z-index: 2;
  pointer-events: none;
}

.history-caption h2 {
  font-size: 42px;
}

.history-section-frame iframe {
  width: 100%;
  height: 100%;
  grid-row: 1 / -1;
  border: 0;
  background: #050407;
}

.residency-layout {
  grid-template-columns: minmax(310px, 0.48fr) minmax(0, 1fr);
  align-items: center;
}

.residency-heading .lead a {
  color: var(--stone);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.primary-action {
  width: max-content;
  min-height: 42px;
  padding: 0 18px;
  color: var(--cream);
  border: 1px solid rgba(176, 141, 87, 0.6);
  background: rgba(176, 141, 87, 0.22);
  cursor: pointer;
}

.primary-action:hover {
  background: rgba(176, 141, 87, 0.34);
}

.primary-action.ghost {
  background: rgba(7, 6, 10, 0.42);
}

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

.package-card {
  min-height: 330px;
  padding: 18px;
  transition: background 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.package-card:hover,
.package-card:focus {
  outline: none;
  transform: translateY(-2px);
  border-color: rgba(176, 141, 87, 0.68);
  background: rgba(12, 10, 12, 0.76);
}

.package-card > span {
  color: var(--gold);
  font-family: "Cormorant Garamond", serif;
  font-size: 36px;
}

.package-card h3 {
  margin: 8px 0 12px;
}

.package-card p {
  margin: 12px 0 0;
  font-size: 13px;
}

.residency-notes {
  grid-column: 2;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.residency-notes li {
  padding: 8px 10px;
  color: rgba(240, 235, 226, 0.68);
  font-size: 12px;
  border: 1px solid rgba(201, 185, 154, 0.16);
  background: rgba(7, 6, 10, 0.32);
}

.booking-panel {
  position: absolute;
  inset: var(--header-h) 28px 28px;
  z-index: 8;
  display: grid;
  grid-template-rows: 54px 1fr;
  opacity: 0;
  pointer-events: none;
  transform: translateY(18px);
  transition: opacity 200ms ease, transform 200ms ease;
  border: 1px solid var(--line);
  background: rgba(7, 6, 10, 0.94);
}

.booking-panel.is-open {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.booking-toolbar {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 0 16px;
  border-bottom: 1px solid var(--line);
}

.booking-toolbar span {
  color: rgba(240, 235, 226, 0.7);
  font-size: 12px;
  text-transform: uppercase;
}

.booking-panel iframe {
  width: 100%;
  height: 100%;
  border: 0;
  background: #0b0a0d;
}

.contact-layout {
  grid-template-columns: minmax(300px, 0.8fr) minmax(340px, 0.72fr) minmax(360px, 0.78fr);
  gap: 24px;
}

.contact-main h2 {
  margin-top: 8px;
}

.contact-lines {
  display: grid;
  gap: 14px;
  margin-top: 28px;
  color: rgba(240, 235, 226, 0.76);
}

.contact-lines a {
  color: var(--cream);
}

.social-row {
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.social-row a {
  padding: 9px 12px;
  color: var(--stone);
  font-size: 12px;
  border: 1px solid rgba(201, 185, 154, 0.18);
  background: rgba(7, 6, 10, 0.36);
}

.about-panel,
.faq-panel {
  max-height: calc(100vh - 190px);
  overflow-y: auto;
  padding: 18px;
}

.about-panel img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
  margin-bottom: 16px;
  border: 1px solid rgba(201, 185, 154, 0.12);
}

.about-text {
  margin: 0 0 18px;
}

.founders {
  display: grid;
  gap: 14px;
}

.founder {
  padding-top: 14px;
  border-top: 1px solid rgba(201, 185, 154, 0.14);
}

.founder h3 {
  font-size: 26px;
}

.founder p {
  margin: 8px 0 0;
  font-size: 14px;
}

.faq-panel {
  display: grid;
  align-content: start;
  gap: 10px;
}

.faq-panel details {
  border-top: 1px solid rgba(201, 185, 154, 0.14);
  padding: 12px 0;
}

.faq-panel summary {
  cursor: pointer;
  color: var(--cream);
  font-size: 14px;
  font-weight: 700;
}

.faq-panel p {
  margin: 10px 0 0;
  color: rgba(240, 235, 226, 0.7);
  font-size: 13px;
  line-height: 1.55;
}

.faq-panel a {
  color: var(--stone);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.section-dots {
  position: fixed;
  right: 24px;
  top: 50%;
  z-index: 850;
  display: grid;
  gap: 9px;
  transform: translateY(-50%);
}

.section-dots button {
  width: 8px;
  height: 8px;
  padding: 0;
  border-radius: 999px;
  opacity: 0.52;
}

.section-dots button.is-active {
  background: var(--gold);
  border-color: var(--gold);
  opacity: 1;
}

.site-footer {
  position: relative;
  z-index: 20;
  padding: 28px 38px;
  color: rgba(240, 235, 226, 0.46);
  background: #050407;
  font-size: 12px;
}

[data-theme="night"] .section-shade {
  background:
    linear-gradient(90deg, rgba(5, 4, 7, 0.88), rgba(5, 4, 7, 0.48) 46%, rgba(5, 4, 7, 0.72)),
    linear-gradient(180deg, rgba(5, 4, 7, 0.7), rgba(5, 4, 7, 0.2) 40%, rgba(5, 4, 7, 0.84));
}

[data-video-state="paused"] .media-video,
[data-motion="reduced"] .media-video {
  opacity: 0 !important;
}

@media (max-width: 1280px) {
  .desktop-nav {
    gap: 14px;
  }

  .site-header {
    padding: 0 24px;
  }

  h1 {
    font-size: 96px;
  }

  h2 {
    font-size: 62px;
  }

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

  .package-card {
    min-height: 210px;
  }

  .residency-layout {
    grid-template-columns: minmax(300px, 0.55fr) minmax(0, 1fr);
  }
}

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

  .site-header {
    grid-template-columns: 1fr auto;
  }

  .menu-button {
    display: flex;
  }

  .mobile-menu-open .mobile-nav {
    display: block;
  }

  .place-layout,
  .location-layout,
  .equipment-layout,
  .residency-layout,
  .contact-layout {
    grid-template-columns: 1fr;
    align-content: center;
    gap: 22px;
  }

  .equipment-thanks,
  .residency-notes {
    grid-column: auto;
  }

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

  .room-card p {
    min-height: 0;
  }

  .room-video {
    display: none;
  }

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

  .contact-main {
    grid-column: 1 / -1;
  }
}

@media (max-width: 899px), (pointer: coarse) {
  html {
    scroll-snap-type: none;
    overscroll-behavior-y: auto;
  }

  body.mobile-menu-open {
    overflow: hidden;
  }

  .stack-section {
    position: relative;
    height: auto;
    min-height: 100svh;
    overflow: hidden;
    scroll-snap-align: none;
  }

  .section-content {
    width: min(100% - 34px, 760px);
    height: auto;
    min-height: 100svh;
    padding: 104px 0 44px;
  }

  .section-dots {
    display: none;
  }

  h1 {
    font-size: 64px;
  }

  h2 {
    font-size: 46px;
  }

  .hero-next {
    left: 17px;
    right: 17px;
  }

  .big-number,
  .big-word {
    font-size: 112px;
  }

  .rooms-grid,
  .package-grid,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .equipment-frame-shell {
    height: 68vh;
  }

  .about-panel,
  .faq-panel {
    max-height: none;
    overflow: visible;
  }

  .history-section-frame {
    min-height: 100svh;
  }

  .history-caption {
    position: relative;
    top: auto;
    left: auto;
    padding: 104px 18px 12px;
  }

  .history-section-frame iframe {
    min-height: 72svh;
    grid-row: auto;
  }
}

@media (max-width: 620px) {
  :root {
    --header-h: 68px;
  }

  .site-header {
    padding: 0 16px;
  }

  .brand {
    font-size: 24px;
  }

  .language-switcher:not(.mobile-lang) {
    display: none;
  }

  .icon-button {
    width: 34px;
    height: 34px;
  }

  h1 {
    font-size: 54px;
  }

  h2 {
    font-size: 40px;
  }

  h3 {
    font-size: 25px;
  }

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

  .lead,
  .hero-note,
  .paragraphs p,
  .room-card p,
  .package-card p,
  .about-text,
  .founder p,
  .equipment-thanks,
  .value-list {
    font-size: 14px;
  }

  .timeline-item {
    grid-template-columns: 64px 1fr;
  }

  .timeline-item span {
    font-size: 30px;
  }

  .equipment-frame-shell {
    height: 72vh;
  }

  .package-card {
    min-height: 0;
  }

  .booking-panel {
    inset: var(--header-h) 10px 10px;
  }
}

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

  html {
    scroll-snap-type: none;
  }

  .stack-section {
    position: relative;
    height: auto;
    min-height: 100vh;
  }
}
