:root {
  --sec-pad: clamp(3.5rem, 10vh, 7rem);
  --sec-title: clamp(1.75rem, 6.4vw, 3.5rem);
  --stack: clamp(2rem, 6vw, 3.5rem);
}

.menu {
  position: relative;
  flex: none;
}

.menu__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  margin-right: -.625rem;
  list-style: none;
  cursor: pointer;
}

.menu__btn::-webkit-details-marker {
  display: none;
}

.menu__bars,
.menu__bars::before,
.menu__bars::after {
  display: block;
  width: 1.375rem;
  height: 1.5px;
  background: var(--ink);
}

.menu__bars {
  position: relative;
}

.menu__bars::before,
.menu__bars::after {
  content: '';
  position: absolute;
  left: 0;
  transition: transform .3s var(--ease-quiet);
}

.menu__bars::before {
  transform: translateY(-.375rem);
}

.menu__bars::after {
  transform: translateY(.375rem);
}

.menu[open] .menu__bars {
  background: transparent;
}

.menu[open] .menu__bars::before {
  transform: rotate(45deg);
}

.menu[open] .menu__bars::after {
  transform: rotate(-45deg);
}

.menu__panel {
  position: fixed;
  inset: var(--topbar-h) 0 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 2rem;
  padding: 2rem var(--gutter) calc(2rem + env(safe-area-inset-bottom));
  background: var(--paper);
  overflow-y: auto;
  overscroll-behavior: contain;
}

.menu__nav {
  display: grid;
}

.menu__nav a {
  padding: .875rem 0;
  border-bottom: 1px solid var(--line);
  font-size: 1.25rem;
  font-weight: 400;
  letter-spacing: -.02em;
}

.menu__foot {
  display: grid;
  gap: .75rem;
  justify-items: start;
}

.menu__cta {
  width: 100%;
  margin-bottom: .5rem;
}

.menu__phone {
  font-size: 1.5rem;
  font-weight: 600;
  font-variant-numeric: tabular-nums;
  letter-spacing: -.02em;
}

.sec__num {
  display: flex;
  align-items: center;
  gap: .75rem;
  font-size: .75rem;
  font-weight: 600;
  font-variant-numeric: tabular-nums;
  letter-spacing: .08em;
  color: var(--ink-soft);
}

.sec__num::after {
  content: '';
  width: 2.5rem;
  height: 1px;
  background: var(--line);
}

.sec__title {
  margin-top: 1.25rem;
  font-size: var(--sec-title);
  font-weight: 300;
  line-height: 1.04;
  letter-spacing: -.035em;
  text-wrap: balance;
}

.sec__lede {
  margin-top: 1.25rem;
  max-width: 42rem;
  font-size: clamp(1rem, 3vw, 1.125rem);
  color: var(--ink-soft);
}

.zoom {
  position: relative;
  z-index: 5;
  background: var(--paper);
  border-top: 1px solid var(--line);
}

.zoom__intro {
  padding: var(--sec-pad) var(--gutter) clamp(2rem, 5vh, 3rem);
}

.zoom__title {
  margin-top: 1.25rem;
  font-size: var(--sec-title);
  font-weight: 300;
  line-height: 1.04;
  letter-spacing: -.035em;
}

.zoom__lede {
  margin-top: 1.25rem;
  max-width: 38rem;
  font-size: clamp(1rem, 3vw, 1.125rem);
  color: var(--ink-soft);
}

.zoom__viewport {
  padding: 0 var(--gutter) var(--sec-pad);
}

.zoom__stage {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: .5rem;
}

.zoom__frame {
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--sand-deep);
}

.zoom__frame picture {
  display: contents;
}

.zoom__frame img {
  width: 100%;
  height: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.zoom__frame--core {
  grid-column: 1 / -1;
}

.zoom__frame--core img {
  aspect-ratio: 4 / 5;
  object-position: 50% 62%;
}

.zoom__mark {
  margin-top: 1.25rem;
  font-size: .8125rem;
  letter-spacing: .04em;
  color: var(--ink-soft);
}

.houses,
.progress,
.faq {
  position: relative;
  z-index: 5;
  padding: var(--sec-pad) var(--gutter);
  background: var(--paper);
  border-top: 1px solid var(--line);
}

.house {
  display: grid;
  gap: 1.75rem;
  margin-top: var(--stack);
  padding-top: var(--stack);
  border-top: 1px solid var(--line);
}

.house__shot {
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--sand-deep);
}

.house__shot img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.house__kind {
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

.house__area {
  margin-top: .5rem;
  font-size: clamp(2.5rem, 11vw, 4.5rem);
  font-weight: 300;
  line-height: 1;
  letter-spacing: -.045em;
  font-variant-numeric: tabular-nums;
}

.house__specs {
  display: grid;
  column-gap: clamp(1.5rem, 4vw, 3rem);
  margin-top: 1.75rem;
  border-top: 1px solid var(--line);
}

.house__spec {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  padding: .875rem 0;
  border-bottom: 1px solid var(--line);
}

.house__spec dt {
  font-size: .875rem;
  color: var(--ink-soft);
}

.house__spec dd {
  font-weight: 600;
  font-variant-numeric: tabular-nums;
  text-align: right;
}

.fold {
  margin-top: 1.5rem;
  border-bottom: 1px solid var(--line);
}

.fold__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  padding: 1rem 0;
  font-size: 1rem;
  font-weight: 600;
  list-style: none;
  cursor: pointer;
}

.fold__head::-webkit-details-marker {
  display: none;
}

.fold__head::after {
  content: '';
  flex: none;
  width: .5rem;
  height: .5rem;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg) translate(-1px, -1px);
  transition: transform .3s var(--ease-quiet);
}

.fold[open] .fold__head::after {
  transform: rotate(225deg) translate(-1px, -1px);
}

.fold__body {
  padding-bottom: 1.5rem;
  color: var(--ink-soft);
}

.fold__body p + p {
  margin-top: .875rem;
}

.house__plan {
  width: 100%;
  height: auto;
  margin-bottom: 1.5rem;
  background: #fff;
  border-radius: var(--radius);
}

.rooms {
  display: grid;
  column-gap: clamp(1.5rem, 4vw, 2.5rem);
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: room;
  border-top: 1px solid var(--line);
}

.rooms li {
  display: flex;
  align-items: baseline;
  gap: .75rem;
  padding: .625rem 0;
  border-bottom: 1px solid var(--line);
  font-size: .875rem;
  counter-increment: room;
}

.rooms li::before {
  content: counter(room, decimal-leading-zero);
  flex: none;
  width: 1.5rem;
  font-variant-numeric: tabular-nums;
  color: var(--ink-soft);
}

.rooms span {
  flex: 1;
  color: var(--ink);
}

.rooms b {
  font-weight: 600;
  font-variant-numeric: tabular-nums;
  color: var(--ink);
}

.fold__note {
  margin-top: 1rem;
  font-size: .8125rem;
  line-height: 1.5;
}

.houses__note {
  display: grid;
  gap: 1rem;
  align-items: start;
  margin-top: var(--stack);
  padding-top: var(--stack);
  border-top: 1px solid var(--line);
  max-width: 46rem;
  color: var(--ink-soft);
}

.place {
  position: relative;
  z-index: 5;
  padding: var(--sec-pad) var(--gutter);
  background: var(--paper);
  border-top: 1px solid var(--line);
}

.place__shot {
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--sand-deep);
}

.place__shot img {
  width: 100%;
  aspect-ratio: 16 / 11;
  object-fit: cover;
  object-position: 50% 60%;
}

.place__body {
  margin-top: 2rem;
}

.place__facts {
  display: grid;
  column-gap: clamp(1.5rem, 4vw, 2.5rem);
  margin-top: 2.25rem;
  border-top: 1px solid var(--line);
}

.place__fact {
  padding: .875rem 0;
  border-bottom: 1px solid var(--line);
}

.place__fact dt {
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

.place__fact dd {
  margin-top: .25rem;
  font-size: .9375rem;
}

.belt {
  --tile-w: 15rem;
  --tile-gap: 1rem;
  position: relative;
  z-index: 5;
}

.belt__viewport {
  display: flex;
  flex-direction: column;
  gap: clamp(1.75rem, 5vh, 3rem);
  padding: var(--sec-pad) 0;
  overflow: hidden;
}

.belt::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right, rgba(245, 242, 236, .07) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(245, 242, 236, .07) 1px, transparent 1px);
  background-size: 56px 56px;
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 30%, #000 45%, transparent 100%);
  mask-image: radial-gradient(ellipse 80% 60% at 50% 30%, #000 45%, transparent 100%);
  pointer-events: none;
}

.belt__head,
.belt__perks {
  position: relative;
  padding-inline: var(--gutter);
}

.belt__lede {
  margin-top: 1.25rem;
  max-width: 34rem;
  font-size: clamp(1rem, 3vw, 1.125rem);
  color: var(--ink-soft);
}

.belt__lane {
  position: relative;
  display: flex;
  gap: var(--tile-gap);
  margin: 0;
  padding-inline: var(--gutter);
  list-style: none;
  counter-reset: tile;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  overscroll-behavior-x: contain;
  scrollbar-width: none;
}

.belt__lane::-webkit-scrollbar {
  display: none;
}

.tile {
  flex: none;
  display: flex;
  flex-direction: column;
  width: var(--tile-w);
  min-height: 13.5rem;
  padding: 1.5rem 1.375rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(245, 242, 236, .04);
  scroll-snap-align: start;
  counter-increment: tile;
}

.tile::before {
  content: counter(tile, decimal-leading-zero);
  font-size: .6875rem;
  font-weight: 600;
  font-variant-numeric: tabular-nums;
  letter-spacing: .1em;
  color: var(--ink-soft);
}

.tile__label {
  margin-top: 1.75rem;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

.tile__value {
  margin-top: .375rem;
  font-size: clamp(1.5rem, 5.4vw, 2.125rem);
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: -.035em;
}

.tile__note {
  margin-top: auto;
  padding-top: 1.25rem;
  font-size: .875rem;
  line-height: 1.5;
  color: var(--ink-soft);
}

.tile--turn .tile__value {
  color: var(--accent);
}

.belt__perks {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  margin: 0;
  list-style: none;
}

@media (min-width: 900px) {
  .belt {
    --tile-w: 19rem;
  }
}

.belt__perks li {
  padding: .5rem 1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-size: .8125rem;
  color: var(--ink-soft);
}

.progress__grid {
  display: grid;
  gap: var(--stack);
  margin: var(--stack) 0 2.5rem;
}

.reel {
  margin: 0;
}

.reel__video {
  width: 100%;
  height: auto;
  max-height: 70svh;
  aspect-ratio: 9 / 16;
  object-fit: cover;
  border-radius: var(--radius);
  background: var(--sand-deep);
}

.reel__cap {
  margin-top: .875rem;
  font-size: .8125rem;
  color: var(--ink-soft);
}

.track {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.track__step {
  position: relative;
  padding: 1.25rem 0 1.25rem 1.75rem;
  border-top: 1px solid var(--line);
}

.track__step:last-child {
  border-bottom: 1px solid var(--line);
}

.track__step::before {
  content: '';
  position: absolute;
  left: 0;
  top: 1.75rem;
  width: .4375rem;
  height: .4375rem;
  border: 1px solid var(--ink-soft);
  border-radius: 50%;
}

.track__step--now::before {
  background: var(--accent);
  border-color: var(--accent);
}

.track__step b {
  display: block;
  font-size: 1rem;
  font-weight: 600;
  font-variant-numeric: tabular-nums;
}

.track__step span {
  display: block;
  margin-top: .375rem;
  font-size: .9375rem;
  color: var(--ink-soft);
}

.progress__more {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem 1.75rem;
}

.btn--outline {
  background: transparent;
  border-color: var(--ink);
  color: var(--ink);
}

.btn--outline:hover {
  background: var(--ink);
  color: var(--paper);
}

.faq__list {
  margin-top: var(--stack);
  max-width: 54rem;
}

.faq__list .fold:first-child {
  border-top: 1px solid var(--line);
}

.faq__list .fold__head {
  padding: 1.25rem 0;
  font-size: clamp(1rem, 3.4vw, 1.125rem);
}

.view {
  position: relative;
  z-index: 5;
  padding: var(--sec-pad) var(--gutter);
}

.view :focus-visible,
.foot :focus-visible {
  outline-color: var(--ink);
}

.view__title {
  margin-top: 1.25rem;
  font-size: clamp(2.25rem, 9vw, 4.5rem);
  font-weight: 300;
  line-height: 1;
  letter-spacing: -.04em;
}

.view__lede {
  margin-top: 1.25rem;
  max-width: 34rem;
  color: var(--ink-soft);
}

.view__grid {
  display: grid;
  gap: var(--stack);
  margin-top: var(--stack);
}

.lead__row {
  display: grid;
  gap: 1rem;
}

.field {
  display: block;
}

.field__label {
  display: block;
  margin-bottom: .5rem;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

.field__input {
  width: 100%;
  min-height: 3.25rem;
  padding: .875rem 1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: transparent;
  color: var(--ink);
  font-family: inherit;
  font-size: 1rem;
  font-variant-numeric: tabular-nums;
}

.field__input::placeholder {
  color: var(--ink-soft);
}

.field__input:focus-visible {
  outline: 2px solid var(--ink);
  outline-offset: 2px;
}

.btn--light {
  margin-top: 1.5rem;
  width: 100%;
}

.lead__note {
  margin-top: 1rem;
  font-size: .8125rem;
  color: var(--ink-soft);
}

.lead__note a {
  text-decoration: underline;
  text-underline-offset: 2px;
}

.contacts {
  display: grid;
  column-gap: clamp(1.5rem, 4vw, 2.5rem);
  border-top: 1px solid var(--line);
}

.contacts__item {
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--line);
}

.contacts__label {
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

.contacts__value {
  display: inline-block;
  margin-top: .5rem;
  font-size: clamp(1.125rem, 4vw, 1.375rem);
  font-weight: 500;
  letter-spacing: -.01em;
}

a.contacts__value {
  margin-top: 0;
  margin-bottom: -.5rem;
  padding-block: .5rem;
}

a.contacts__value:hover {
  color: var(--ink);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.contacts__value--plain {
  font-size: 1rem;
  font-weight: 400;
  color: var(--ink-soft);
}

.contacts__map {
  margin-top: .375rem;
  margin-bottom: -.5rem;
  font-size: .875rem;
}

.foot {
  display: grid;
  gap: 2rem;
  padding: clamp(2.5rem, 6vh, 4rem) var(--gutter);
  border-top: 1px solid var(--line);
}

.foot__main {
  display: grid;
  gap: 2rem;
}

.brand--foot .brand__suffix {
  color: var(--ink-soft);
}

.foot__nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0 1.5rem;
  font-size: .9375rem;
  color: var(--ink-soft);
}

.foot__nav a {
  padding-block: .625rem;
}

.foot__nav a:hover {
  color: var(--ink);
}

.social {
  display: flex;
  gap: .25rem;
  margin: 0 0 0 -.6875rem;
  padding: 0;
  list-style: none;
}

.social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  color: var(--ink-soft);
  transition: color .25s var(--ease-quiet);
}

.social a:hover {
  color: var(--ink);
}

.social svg {
  width: 1.1875rem;
  height: 1.1875rem;
  fill: currentColor;
}

.foot__legal {
  display: grid;
  gap: .5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
}

.foot__meta {
  display: grid;
  gap: .375rem;
  font-size: .8125rem;
  color: var(--ink-soft);
}

.foot__policy {
  justify-self: start;
  padding-block: .625rem;
  font-size: .8125rem;
  color: var(--ink-soft);
  text-decoration: underline;
  text-decoration-color: var(--line);
  text-underline-offset: 3px;
}

.foot__policy:hover {
  color: var(--ink);
  text-decoration-color: currentColor;
}

.modal {
  width: 100%;
  max-width: none;
  height: 100%;
  max-height: none;
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
  overflow: hidden;
}

.modal[open],
.modal:target {
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.modal:target {
  position: fixed;
  inset: 0;
  z-index: 30;
  background: rgba(24, 22, 19, .72);
}

.modal::backdrop {
  background: rgba(24, 22, 19, .72);
}

html:has(.modal[open]) {
  overflow: hidden;
}

.modal__box {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-height: 92%;
  overflow: hidden;
  border-radius: var(--radius) var(--radius) 0 0;
  background: var(--paper);
  color: var(--ink);
}

.modal__box:focus {
  outline: none;
}

.modal__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem var(--gutter);
  border-bottom: 1px solid var(--line);
}

.modal__title {
  font-size: clamp(1.125rem, 4vw, 1.5rem);
  font-weight: 500;
  letter-spacing: -.025em;
}

.modal__close {
  position: relative;
  flex: none;
  width: 2.75rem;
  height: 2.75rem;
  margin-right: -.75rem;
  border: 0;
  background: none;
  cursor: pointer;
}

.modal__close::before,
.modal__close::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  width: 1.125rem;
  height: 1.5px;
  margin: -.75px 0 0 -.5625rem;
  background: var(--ink);
}

.modal__close::before {
  transform: rotate(45deg);
}

.modal__close::after {
  transform: rotate(-45deg);
}

.modal__body {
  padding: 1.5rem var(--gutter) calc(2rem + env(safe-area-inset-bottom));
  overflow-y: auto;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
  font-size: .9375rem;
  line-height: 1.6;
  color: var(--ink-soft);
}

.modal__body h3 {
  margin-top: 1.75rem;
  font-size: 1rem;
  font-weight: 600;
  color: var(--ink);
}

.modal__body p + p,
.modal__body h3 + p {
  margin-top: .75rem;
}

.modal__body ul {
  display: grid;
  gap: .5rem;
  margin: .75rem 0 0;
  padding: 0;
  list-style: none;
}

.modal__body li {
  position: relative;
  padding-left: 1.125rem;
}

.modal__body li::before {
  content: '';
  position: absolute;
  left: 0;
  top: .625rem;
  width: .25rem;
  height: .25rem;
  border-radius: 50%;
  background: var(--accent);
}

.modal__foot {
  margin-top: 2rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--line);
}

@media (min-width: 640px) {
  .zoom__stage {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .zoom__frame--core {
    grid-column: 1 / -1;
  }

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

  .btn--light {
    width: auto;
    min-width: 15rem;
  }

  .modal[open],
  .modal:target {
    align-items: center;
    padding: 2rem;
  }

  .modal__box {
    width: min(44rem, 100%);
    max-height: 100%;
    border-radius: var(--radius);
  }

  .modal__head,
  .modal__body {
    padding-inline: clamp(1.75rem, 4vw, 2.5rem);
  }
}

@media (min-width: 768px) {
  .house__specs {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .place__facts {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    border-top: 0;
  }

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

  .place__shot img {
    aspect-ratio: 16 / 9;
  }

  .contacts {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    border-top: 0;
  }

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

  .foot__main {
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 2.5rem;
  }

  .foot__nav {
    justify-content: center;
  }

  .social {
    margin-right: -.6875rem;
    margin-left: 0;
  }

  .foot__legal {
    grid-template-columns: 1fr auto;
    align-items: center;
  }

  .foot__policy {
    justify-self: end;
  }
}

@media (min-width: 768px) {
  .progress__grid {
    grid-template-columns: minmax(0, 2.5fr) minmax(0, 1fr);
    column-gap: clamp(2rem, 5vw, 4rem);
    align-items: start;
  }

  .reel__video {
    max-height: 27rem;
  }
}

@media (min-width: 900px) {
  .zoom__frame--core img {
    aspect-ratio: 16 / 10;
    object-position: 50% 50%;
  }

  .house {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    column-gap: clamp(2rem, 5vw, 4.5rem);
    align-items: start;
  }

  .house--flip .house__shot {
    order: 2;
  }

  .houses__note {
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    max-width: none;
  }

  .place {
    display: grid;
    grid-template-columns: minmax(0, .82fr) minmax(0, 1.18fr);
    column-gap: clamp(2rem, 6vw, 5.5rem);
    align-items: stretch;
  }

  .place__body {
    margin-top: 0;
  }

  .place__shot {
    min-height: 33rem;
  }

  .place__shot img {
    height: 100%;
    aspect-ratio: auto;
    object-position: 50% 60%;
  }

  .place__body {
    display: flex;
    flex-direction: column;
  }

  .place__facts {
    margin-top: auto;
    margin-bottom: clamp(4rem, 14vh, 8.5rem);
    padding-top: 2.5rem;
  }

  .view__grid {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    column-gap: clamp(2rem, 6vw, 5rem);
  }

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

}

@keyframes belt-run {
  0% {
    transform: translate3d(0, 0, 0);
  }
  100% {
    transform: translate3d(calc(-1 * (10 * var(--tile-w) + 9 * var(--tile-gap) + 2 * var(--gutter) - 100vw)), 0, 0);
  }
}

@keyframes rise {
  0% {
    opacity: 0;
    transform: translate3d(0, .875rem, 0);
  }
  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes zoom-grow {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(var(--s));
  }
}

@keyframes zoom-mark {
  0%,
  86% {
    opacity: 0;
  }
  96%,
  100% {
    opacity: 1;
  }
}

@media (min-width: 640px) {
  .no-timeline .zoom__stage {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (prefers-reduced-motion: reduce) {
  .fold__head::after {
    transition: none;
  }

  .reel__video {
    display: none;
  }
}
