:root {
  --ink: #090a09;
  --ink-soft: #121512;
  --paper: #f3efe7;
  --paper-deep: #ddd4c5;
  --warm: #e7cfad;
  --green: #9db38f;
  --serif: "Fraunces Variable", Georgia, serif;
  --sans: "Inter Variable", "Helvetica Neue", Arial, sans-serif;
  --mono: "Inter Variable", "Helvetica Neue", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

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

html.is-watching {
  scroll-behavior: auto;
}

body {
  margin: 0;
  color: var(--paper);
  background: var(--ink);
  font-family: var(--sans);
}

body.is-loading {
  overflow: hidden;
  touch-action: none;
}

button,
a {
  color: inherit;
  font: inherit;
}

button {
  cursor: pointer;
}

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

a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--warm);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  z-index: 1200;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  color: var(--ink);
  background: var(--paper);
  transform: translateY(-160%);
}

.skip-link:focus {
  transform: none;
}

.site-shell {
  opacity: 0;
  transition: opacity 800ms ease;
}

body.is-ready .site-shell {
  opacity: 1;
}

.loader {
  --loader-progress: 0%;
  position: fixed;
  z-index: 1000;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 24px;
  color: var(--paper);
  background: var(--ink);
  transition: opacity 750ms cubic-bezier(0.65, 0, 0.2, 1), visibility 750ms;
}

.loader::before {
  content: "";
  position: absolute;
  top: 38%;
  left: 50%;
  width: min(880px, 90vw);
  height: min(440px, 52vh);
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(231, 207, 173, 0.055), transparent 68%);
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.loader[data-state="releasing"] {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loader[data-state="released"] {
  display: none;
}

.loader-inner {
  position: relative;
  z-index: 1;
  width: min(1200px, 100%);
  text-align: center;
}

.loader-arabic {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(100px, 18vw, 270px);
  font-weight: 300;
  line-height: 0.72;
  letter-spacing: -0.055em;
  animation: greeting-in 1.4s cubic-bezier(0.2, 0.75, 0.2, 1) both;
}

.loader-latin {
  margin: clamp(30px, 5vh, 70px) 0 0;
  color: var(--warm);
  font-family: var(--serif);
  font-size: clamp(34px, 5.5vw, 86px);
  font-style: italic;
  font-weight: 300;
  line-height: 1;
  animation: greeting-in 1.4s 0.18s cubic-bezier(0.2, 0.75, 0.2, 1) both;
}

.loader-status {
  width: min(420px, 82vw);
  margin: 48px auto 0;
  display: flex;
  justify-content: space-between;
  color: rgba(243, 239, 231, 0.46);
  font-family: var(--mono);
  font-size: 8px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.loader-status b {
  font-weight: 400;
}

.loader-meter {
  width: min(420px, 82vw);
  height: 1px;
  margin: 12px auto 0;
  overflow: hidden;
  background: rgba(243, 239, 231, 0.14);
}

.loader-meter i {
  display: block;
  width: var(--loader-progress);
  height: 100%;
  background: var(--warm);
  box-shadow: 0 0 16px rgba(231, 207, 173, 0.36);
  transition: width 180ms linear;
}

.site-header {
  position: absolute;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  min-height: 76px;
  padding: 0 clamp(22px, 4vw, 68px);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  border-bottom: 1px solid rgba(243, 239, 231, 0.14);
}

.brand,
.site-header p,
.site-header nav a {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.16em;
  text-decoration: none;
  text-transform: uppercase;
}

.site-header nav {
  display: flex;
  gap: clamp(20px, 3vw, 42px);
}

.site-header p {
  justify-self: end;
  margin: 0;
  color: rgba(243, 239, 231, 0.6);
}

.site-header p span {
  margin: 0 8px;
  color: var(--warm);
}

.welcome {
  position: relative;
  min-height: 112svh;
  display: grid;
  align-items: center;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(9, 10, 9, 0.9), rgba(9, 10, 9, 0.26) 70%, rgba(9, 10, 9, 0.46)),
    url("/assets/pov-2k/library/plan-a/main-route/07-plan-a-03-main-floor-geometry-v3.png") 58% center / cover;
}

.welcome::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 36%;
  background: linear-gradient(transparent, var(--ink));
}

.welcome-copy {
  position: relative;
  z-index: 2;
  width: min(860px, calc(100vw - 48px));
  margin-left: clamp(24px, 8vw, 150px);
  padding: 16svh 0 20svh;
}

.eyebrow {
  margin: 0 0 24px;
  color: var(--warm);
  font-family: var(--mono);
  font-size: 9px;
  line-height: 1.5;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.welcome h1,
.proof-copy h2,
.route-break h2,
.section-heading h2,
.closing h2 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 300;
  letter-spacing: -0.055em;
}

.welcome h1 {
  font-size: clamp(78px, 11vw, 174px);
  line-height: 0.78;
}

.welcome h1 em,
.route-break h2 em,
.closing h2 em {
  color: var(--warm);
  font-weight: 300;
}

.welcome-lede {
  max-width: 520px;
  margin: 36px 0 0;
  color: rgba(243, 239, 231, 0.72);
  font-size: 14px;
  line-height: 1.8;
}

.enter-film {
  margin-top: 34px;
  padding: 14px 0;
  border: 0;
  border-bottom: 1px solid rgba(243, 239, 231, 0.5);
  display: inline-flex;
  gap: 56px;
  background: transparent;
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.welcome-note {
  margin: 26px 0 0;
  color: rgba(243, 239, 231, 0.44);
  font-family: var(--mono);
  font-size: 8px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.film-track {
  position: relative;
  background: #050605;
}

.film-track-entry {
  height: 1250svh;
}

.film-track-upper {
  height: 620svh;
}

.film-stage {
  position: sticky;
  top: 0;
  height: 100svh;
  min-height: 540px;
  overflow: hidden;
  background: #050605;
}

.film,
.film-poster,
.film-poster img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.film,
.film-poster img {
  object-fit: cover;
}

.film-poster {
  margin: 0;
}

.film {
  z-index: 1;
  opacity: 0;
  transition: opacity 500ms ease;
}

.film.is-ready {
  opacity: 1;
}

.film-vignette {
  position: absolute;
  z-index: 2;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(5, 6, 5, 0.28), transparent 30%, transparent 78%, rgba(5, 6, 5, 0.22)),
    linear-gradient(0deg, rgba(5, 6, 5, 0.38), transparent 28%, transparent 80%, rgba(5, 6, 5, 0.2));
}

.film-beats {
  position: absolute;
  z-index: 4;
  left: clamp(22px, 4vw, 68px);
  bottom: max(72px, 9vh);
  width: min(440px, calc(100vw - 44px));
  min-height: 72px;
}

.film-beat {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: translateY(8px);
  pointer-events: none;
  transition: opacity 420ms ease, transform 500ms ease;
}

.film-beat.is-visible {
  opacity: 0.84;
  transform: translateY(0);
}

.film-beat p {
  margin: 0 0 7px;
  color: var(--warm);
  font-family: var(--mono);
  font-size: 8px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.film-beat h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(38px, 4vw, 62px);
  font-weight: 300;
  line-height: 0.9;
  letter-spacing: -0.04em;
}

.film-controls {
  position: absolute;
  z-index: 7;
  right: clamp(22px, 4vw, 68px);
  bottom: max(25px, 4vh);
}

.film-controls button {
  padding: 10px 0;
  border: 0;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(243, 239, 231, 0.78);
  background: transparent;
  font-family: var(--mono);
  font-size: 8px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.film-controls button span:first-child {
  color: var(--warm);
}

.scroll-cue,
.film-status {
  position: absolute;
  z-index: 5;
  margin: 0;
  font-family: var(--mono);
  font-size: 8px;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.scroll-cue {
  left: clamp(22px, 4vw, 68px);
  bottom: max(27px, 4vh);
  transition: opacity 450ms ease;
}

.scroll-cue.is-hidden {
  opacity: 0;
}

.film-status {
  top: max(24px, 4vh);
  right: clamp(22px, 4vw, 68px);
  padding: 9px 11px;
  color: rgba(243, 239, 231, 0.54);
  border: 1px solid rgba(243, 239, 231, 0.2);
  background: rgba(5, 6, 5, 0.35);
  backdrop-filter: blur(10px);
}

.main-floor-proof {
  min-height: 100svh;
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  background: var(--ink-soft);
}

.proof-copy {
  padding: clamp(80px, 9vw, 145px) clamp(24px, 6vw, 92px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.proof-copy h2,
.route-break h2,
.section-heading h2 {
  font-size: clamp(58px, 7.5vw, 116px);
  line-height: 0.88;
}

.proof-copy > p:not(.eyebrow) {
  max-width: 470px;
  margin: 34px 0 0;
  color: rgba(243, 239, 231, 0.64);
  font-size: 13px;
  line-height: 1.8;
}

.proof-copy dl {
  margin: 46px 0 0;
  border-top: 1px solid rgba(243, 239, 231, 0.16);
}

.proof-copy dl div {
  padding: 14px 0;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  border-bottom: 1px solid rgba(243, 239, 231, 0.16);
}

.proof-copy dt,
.proof-copy dd {
  margin: 0;
  font-size: 10px;
}

.proof-copy dt {
  color: rgba(243, 239, 231, 0.48);
  font-family: var(--mono);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.main-floor-proof > figure {
  position: relative;
  min-height: 780px;
  margin: 0;
  overflow: hidden;
}

.main-floor-proof > figure picture {
  height: 100%;
  display: block;
}

.main-floor-proof > figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.main-floor-proof > figure figcaption {
  position: absolute;
  right: 20px;
  bottom: 20px;
  left: 20px;
  padding: 15px 17px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 22px;
  color: var(--paper);
  background: rgba(9, 10, 9, 0.78);
  backdrop-filter: blur(12px);
}

.main-floor-proof figcaption span {
  color: var(--warm);
  font-family: var(--mono);
  font-size: 8px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.main-floor-proof figcaption p {
  margin: 0;
  font-size: 10px;
}

.route-break {
  min-height: 72svh;
  padding: clamp(90px, 12vw, 180px) clamp(24px, 9vw, 160px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  background:
    radial-gradient(circle at 80% 20%, rgba(231, 207, 173, 0.08), transparent 30rem),
    var(--ink);
}

.route-break > p:not(.eyebrow) {
  max-width: 560px;
  margin: 34px 0 0;
  color: rgba(243, 239, 231, 0.58);
  font-size: 13px;
  line-height: 1.8;
}

.drawings,
.essential-views {
  padding: clamp(90px, 10vw, 150px) clamp(22px, 6vw, 100px);
  color: var(--ink);
}

.drawings {
  background: var(--paper);
}

.essential-views {
  background: var(--paper-deep);
}

.section-heading {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 60px;
}

.section-heading > p {
  max-width: 440px;
  margin: 0;
  color: rgba(9, 10, 9, 0.62);
  font-size: 12px;
  line-height: 1.75;
}

.drawing-grid {
  margin-top: 62px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.drawing-grid figure {
  margin: 0;
  padding: 18px;
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto;
  background: white;
}

.drawing-grid figure > div {
  display: flex;
  align-items: center;
  gap: 12px;
}

.drawing-grid figure > div span {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  color: var(--paper);
  background: var(--ink);
  font-family: var(--serif);
  font-size: 20px;
  font-style: italic;
}

.drawing-grid figure > div p {
  margin: 0;
  font-family: var(--mono);
  font-size: 8px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.drawing-grid img {
  width: 100%;
  height: min(72svh, 820px);
  margin-top: 18px;
  object-fit: contain;
}

.drawing-grid figcaption {
  padding-top: 14px;
  color: rgba(9, 10, 9, 0.58);
  font-size: 11px;
}

.room-index {
  margin: 46px 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  list-style: none;
  border-top: 1px solid rgba(9, 10, 9, 0.18);
}

.room-index li {
  padding: 13px 8px 13px 0;
  color: rgba(9, 10, 9, 0.56);
  border-bottom: 1px solid rgba(9, 10, 9, 0.18);
  font-family: var(--mono);
  font-size: 8px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.view-grid {
  margin-top: 30px;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 18px;
}

.view-card {
  grid-column: span 5;
  margin: 0;
  background: var(--paper);
}

.view-card-wide {
  grid-column: span 7;
}

.view-card-full {
  grid-column: 1 / -1;
}

.view-card-solo {
  grid-column: 3 / span 8;
}

.gallery-divider {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(120px, 0.28fr) 1fr;
  gap: 24px;
  align-items: end;
  margin: 52px 0 8px;
  padding: 18px 0 16px;
  border-top: 1px solid rgba(9, 10, 9, 0.32);
}

.gallery-divider:first-child {
  margin-top: 4px;
}

.gallery-divider p,
.gallery-divider h3 {
  margin: 0;
}

.gallery-divider p {
  color: rgba(9, 10, 9, 0.55);
  font-family: var(--mono);
  font-size: 8px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.gallery-divider h3 {
  max-width: 680px;
  font-family: var(--serif);
  font-size: clamp(24px, 3vw, 44px);
  font-weight: 400;
  line-height: 0.98;
}

.view-card picture,
.view-card img {
  display: block;
}

.view-card img {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.view-card figcaption {
  min-height: 150px;
  padding: 18px;
}

.view-card figcaption span,
.view-card figcaption p {
  font-family: var(--mono);
  font-size: 8px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.view-card figcaption span {
  color: #627358;
}

.view-card h3 {
  margin: 9px 0 0;
  font-family: var(--serif);
  font-size: clamp(28px, 3vw, 44px);
  font-weight: 300;
  line-height: 1;
  letter-spacing: -0.035em;
}

.view-card figcaption p {
  margin: 19px 0 0;
  color: rgba(9, 10, 9, 0.48);
  line-height: 1.55;
}

.visualization-note {
  max-width: 760px;
  margin: 36px 0 0;
  color: rgba(9, 10, 9, 0.58);
  font-family: var(--mono);
  font-size: 8px;
  line-height: 1.8;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.cinematic-moments {
  padding: clamp(90px, 10vw, 150px) clamp(22px, 6vw, 100px);
  background:
    radial-gradient(circle at 88% 10%, rgba(231, 207, 173, 0.08), transparent 28rem),
    var(--ink-soft);
}

.cinematic-heading {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 60px;
}

.cinematic-heading h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(58px, 8vw, 126px);
  font-weight: 300;
  line-height: 0.84;
  letter-spacing: -0.05em;
}

.cinematic-heading h2 em {
  color: var(--warm);
  font-weight: 300;
}

.cinematic-heading > p {
  max-width: 440px;
  margin: 0;
  color: rgba(243, 239, 231, 0.58);
  font-size: 12px;
  line-height: 1.75;
}

.cinematic-grid {
  margin-top: 62px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.cinematic-card {
  margin: 0;
  overflow: hidden;
  color: var(--ink);
  background: var(--paper);
}

.cinematic-card video {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  display: block;
  object-fit: cover;
  background: #050605;
}

.cinematic-card > div {
  min-height: 190px;
  padding: 22px;
}

.cinematic-meta,
.cinematic-card > div > p:last-child,
.cinematic-caveat {
  font-family: var(--mono);
  font-size: 8px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.cinematic-meta {
  margin: 0;
  color: #627358;
}

.cinematic-card h3 {
  margin: 13px 0 0;
  font-family: var(--serif);
  font-size: clamp(31px, 3.2vw, 48px);
  font-weight: 300;
  line-height: 0.96;
  letter-spacing: -0.04em;
}

.cinematic-card > div > p:last-child {
  max-width: 620px;
  margin: 24px 0 0;
  color: rgba(9, 10, 9, 0.5);
  line-height: 1.65;
}

.cinematic-card-featured {
  margin-top: 62px;
  display: block;
}

.cinematic-card-featured > div {
  align-self: center;
}

.cinematic-caveat {
  max-width: 860px;
  margin: 28px 0 0;
  color: rgba(243, 239, 231, 0.42);
  line-height: 1.8;
}

.closing {
  min-height: 82svh;
  padding: clamp(90px, 12vw, 180px) clamp(24px, 8vw, 150px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  background:
    linear-gradient(90deg, rgba(9, 10, 9, 0.95), rgba(9, 10, 9, 0.48) 72%, rgba(9, 10, 9, 0.7)),
    url("/assets/pov-2k/library/plan-a/main-route/11-plan-a-living-reverse-v3.png") center / cover;
}

.closing h2 {
  max-width: 1120px;
  font-size: clamp(64px, 9.5vw, 148px);
  line-height: 0.84;
}

.closing-actions {
  margin-top: 48px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.closing-actions a,
.closing-actions button {
  min-height: 48px;
  padding: 0 18px;
  border: 1px solid rgba(243, 239, 231, 0.48);
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
  background: rgba(9, 10, 9, 0.28);
  font-family: var(--mono);
  font-size: 8px;
  letter-spacing: 0.1em;
  text-decoration: none;
  text-transform: uppercase;
}

.closing-actions a {
  color: var(--ink);
  background: var(--warm);
  border-color: var(--warm);
}

footer {
  padding: 28px clamp(22px, 4vw, 68px);
  display: flex;
  justify-content: space-between;
  gap: 40px;
  border-top: 1px solid rgba(243, 239, 231, 0.16);
}

footer p {
  margin: 0;
  color: rgba(243, 239, 231, 0.46);
  font-family: var(--mono);
  font-size: 8px;
  line-height: 1.7;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.noscript-films {
  padding: 80px 20px;
  background: var(--ink);
}

.noscript-films h2 {
  font-family: var(--serif);
  font-size: 48px;
  font-weight: 300;
}

.noscript-films video {
  width: min(100%, 960px);
  margin: 20px auto;
}

@keyframes greeting-in {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 960px) {
  .main-floor-proof {
    grid-template-columns: 1fr;
  }

  .main-floor-proof > figure {
    min-height: 68svh;
  }

  .film-poster img {
    object-position: center;
    object-fit: cover;
    filter: blur(18px) brightness(0.44);
    transform: scale(1.08);
  }

  .film {
    object-fit: contain;
    object-position: center;
  }
}

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

  .site-header p {
    display: none;
  }

  .welcome {
    background-position: 64% center;
  }

  .welcome-copy {
    margin-left: 22px;
  }

  .welcome h1 {
    font-size: clamp(72px, 24vw, 116px);
  }

  .film-track-entry {
    height: 1100svh;
  }

  .film-track-upper {
    height: 520svh;
  }

  .film-stage {
    min-height: 0;
  }

  .film-status {
    top: 18px;
    right: 18px;
    max-width: calc(100vw - 36px);
    font-size: 7px;
  }

  .proof-copy {
    padding-left: 20px;
    padding-right: 20px;
  }

  .section-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 24px;
  }

  .cinematic-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 24px;
  }

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

  .cinematic-card-featured {
    grid-template-columns: 1fr;
  }

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

  .drawing-grid img {
    height: min(72svh, 700px);
  }

  .view-grid {
    display: block;
  }

  .room-index {
    grid-template-columns: 1fr 1fr;
  }

  .view-card {
    margin-bottom: 14px;
  }

  .gallery-divider {
    grid-template-columns: 1fr;
    gap: 8px;
    margin-top: 42px;
  }

  footer {
    flex-direction: column;
    gap: 12px;
  }
}

@media (max-width: 430px) {
  .site-header {
    min-height: 64px;
    padding-inline: 16px;
  }

  .site-header nav {
    gap: 14px;
  }

  .welcome-copy {
    width: calc(100vw - 32px);
    margin-left: 16px;
  }

  .enter-film {
    width: 100%;
    justify-content: space-between;
  }

  .film-beats {
    left: 16px;
    width: calc(100vw - 32px);
  }

  .film-controls {
    right: 16px;
  }

  .scroll-cue {
    left: 16px;
  }

  .proof-copy,
  .route-break,
  .drawings,
  .essential-views,
  .cinematic-moments,
  .closing {
    padding-left: 16px;
    padding-right: 16px;
  }

  .main-floor-proof > figure {
    min-height: 58svh;
  }

  .main-floor-proof > figure figcaption {
    grid-template-columns: 1fr;
    gap: 7px;
  }

  .room-index {
    grid-template-columns: 1fr;
  }

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

  .closing-actions a,
  .closing-actions button {
    width: 100%;
  }
}

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

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

  .film-track {
    height: 100svh;
  }

  .scroll-cue {
    display: none;
  }
}
