:root {
  --home-forest: #101711;
  --home-forest-deep: #080d0a;
  --home-night: #0b1313;
  --home-ivory: #eee9df;
  --home-paper: #e4ddd0;
  --home-paper-deep: #d7cebe;
  --home-ink: #20231f;
  --home-muted: #6e7069;
  --home-line: rgba(31, 36, 31, 0.2);
  --home-line-dark: rgba(238, 233, 223, 0.2);
  --home-amber: #b49a70;
  --home-serif: "Yu Mincho", "Hiragino Mincho ProN", "Hiragino Mincho Pro", "Noto Serif JP", Georgia, serif;
  --home-sans: -apple-system, BlinkMacSystemFont, "Hiragino Kaku Gothic ProN", "Yu Gothic", "Noto Sans JP", sans-serif;
  --home-shell: 1240px;
  --header-height: 82px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  background: var(--home-forest-deep);
  color-scheme: light;
  scroll-behavior: smooth;
  text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  overflow-x: clip;
  background: var(--home-ivory);
  color: var(--home-ink);
  font-family: var(--home-sans);
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.9;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

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

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

img {
  height: auto;
}

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

button,
input,
textarea,
select {
  color: inherit;
  font: inherit;
  letter-spacing: 0;
}

button {
  border: 0;
}

::selection {
  background: rgba(180, 154, 112, 0.28);
}

:focus-visible {
  outline: 2px solid var(--home-amber);
  outline-offset: 5px;
}

.home-shell {
  width: min(calc(100% - 96px), var(--home-shell));
  margin-inline: auto;
}

.home-skip {
  position: fixed;
  z-index: 200;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  background: var(--home-ivory);
  color: var(--home-ink);
  font-size: 13px;
  transform: translateY(-160%);
  transition: transform 180ms ease;
}

.home-skip:focus {
  transform: translateY(0);
}

.home-index,
.home-eyebrow {
  margin: 0;
  font-family: var(--home-sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1.5;
  text-transform: uppercase;
}

.home-index {
  color: #6f746c;
}

.home-index--dark {
  color: rgba(238, 233, 223, 0.62);
}

.home-button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 28px;
  padding: 11px 22px;
  border: 1px solid currentColor;
  border-radius: 2px;
  font-family: var(--home-serif);
  font-size: 15px;
  line-height: 1.4;
  transition: color 500ms ease, background-color 500ms ease, border-color 500ms ease, transform 500ms cubic-bezier(.22, .68, .25, 1);
}

.home-button:hover {
  transform: translateY(-2px);
}

.home-button--light {
  border-color: rgba(238, 233, 223, 0.5);
  color: var(--home-ivory);
}

.home-button--light:hover {
  border-color: rgba(238, 233, 223, 0.86);
  background: rgba(238, 233, 223, 0.07);
}

.home-text-link {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: 16px;
  border-bottom: 1px solid rgba(32, 35, 31, 0.35);
  font-size: 12px;
  line-height: 1.4;
  transition: border-color 400ms ease, color 400ms ease;
}

.home-text-link--light {
  border-color: rgba(238, 233, 223, 0.38);
  color: rgba(238, 233, 223, 0.82);
}

.home-text-link:hover {
  border-color: currentColor;
}

.home-header {
  position: fixed;
  z-index: 90;
  top: 0;
  right: 0;
  left: 0;
  display: flex;
  height: var(--header-height);
  align-items: center;
  justify-content: space-between;
  padding: env(safe-area-inset-top) 42px 0;
  color: var(--home-ivory);
  transition: background-color 600ms ease, color 600ms ease, box-shadow 600ms ease;
}

.home-header.is-scrolled {
  background: rgba(9, 14, 11, 0.9);
  box-shadow: 0 1px 0 rgba(238, 233, 223, 0.12);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.home-header__brand,
.home-footer__brand {
  font-family: var(--home-serif);
  font-size: 23px;
  line-height: 1;
}

.home-header__brand {
  display: inline-flex;
  width: 158px;
  height: 54px;
  align-items: center;
}

.home-header__logo {
  display: block;
  width: 100%;
  height: auto;
  filter: invert(91%) sepia(8%) saturate(368%) hue-rotate(348deg) brightness(96%) contrast(91%);
  opacity: 0.76;
  transition: opacity 350ms ease, transform 600ms cubic-bezier(.22, .68, .25, 1);
}

.home-header__brand:hover .home-header__logo {
  opacity: 0.9;
  transform: translateY(-1px);
}

.home-nav {
  display: flex;
  align-items: center;
  gap: 34px;
  font-family: var(--home-serif);
  font-size: 12px;
}

.home-nav a:not(.home-nav__begin) {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  color: rgba(238, 233, 223, 0.76);
  transition: color 350ms ease;
}

.home-nav a:hover {
  color: var(--home-ivory);
}

.home-nav__begin {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  padding: 4px 18px;
  border: 1px solid rgba(238, 233, 223, 0.38);
  border-radius: 999px;
}

.home-menu-button,
.home-mobile-nav {
  display: none;
}

.home-hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  overflow: hidden;
  isolation: isolate;
  background: var(--home-forest-deep);
  color: var(--home-ivory);
}

.home-hero__media,
.home-hero__periphery,
.home-hero__shade {
  position: absolute;
  inset: 0;
}

.home-hero__media img,
.home-hero__periphery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 52% 50%;
  transform: scale(1.012);
  transition: transform 1600ms cubic-bezier(.22, .68, .25, 1), filter 1600ms ease;
}

.home-hero__media img {
  filter: brightness(0.82) saturate(0.88);
}

.home-hero__periphery {
  opacity: 0.82;
  mask-image: radial-gradient(circle at 58% 53%, transparent 0, transparent 29%, #000 67%, #000 100%);
  -webkit-mask-image: radial-gradient(circle at 58% 53%, transparent 0, transparent 29%, #000 67%, #000 100%);
  transition: opacity 1500ms ease, transform 1500ms cubic-bezier(.22, .68, .25, 1);
}

.home-hero__periphery img {
  filter: blur(1.4px) brightness(0.76) saturate(0.82);
}

.home-hero__shade {
  z-index: 1;
  background: linear-gradient(90deg, rgba(5, 8, 6, 0.72) 0%, rgba(5, 8, 6, 0.42) 43%, rgba(5, 8, 6, 0.18) 72%, rgba(5, 8, 6, 0.34) 100%);
  box-shadow: inset 0 -110px 110px rgba(5, 8, 6, 0.3);
  transition: background-color 1500ms ease;
}

.home-hero.is-focused .home-hero__media img {
  filter: brightness(0.86) saturate(0.9);
  transform: scale(1.005);
}

.home-hero.is-focused .home-hero__periphery {
  opacity: 0.46;
  transform: scale(1.025);
}

.home-hero.is-focused .home-hero__periphery img {
  filter: blur(0.7px) brightness(0.82) saturate(0.86);
  transform: scale(1.005);
}

.home-hero__inner {
  position: relative;
  z-index: 3;
  display: flex;
  min-height: 100vh;
  min-height: 100svh;
  align-items: center;
  padding-block: calc(var(--header-height) + 48px) 92px;
}

.home-hero__copy {
  width: min(660px, 64%);
  margin-left: 4%;
}

.home-eyebrow {
  margin-bottom: 26px;
  color: rgba(238, 233, 223, 0.6);
}

.home-hero h1 {
  margin: 0;
  font-family: var(--home-serif);
  font-size: 52px;
  font-weight: 400;
  line-height: 1.52;
}

.home-hero h1 span {
  display: block;
}

.home-hero__lead {
  margin: 30px 0 0;
  color: rgba(238, 233, 223, 0.78);
  font-size: 14px;
  line-height: 2;
}

.home-hero__actions {
  display: flex;
  align-items: center;
  gap: 32px;
  margin-top: 34px;
}

.home-hero__hint {
  position: absolute;
  z-index: 3;
  right: 38px;
  bottom: 34px;
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0;
  color: rgba(238, 233, 223, 0.45);
  font-size: 9px;
  line-height: 1;
  writing-mode: vertical-rl;
}

.home-hero__hint span {
  display: block;
  width: 1px;
  height: 58px;
  background: rgba(238, 233, 223, 0.35);
}

html:not(.no-js) [data-hero-step] {
  opacity: 0;
  transform: translateY(9px);
}

html:not(.no-js).home-ready [data-hero-step] {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 1200ms cubic-bezier(.22, .68, .25, 1) var(--hero-delay, 0ms), transform 1200ms cubic-bezier(.22, .68, .25, 1) var(--hero-delay, 0ms);
}

.home-hero.is-focused .home-button {
  animation: heroBorderOnce 1450ms ease 1;
}

@keyframes heroBorderOnce {
  0%, 100% { border-color: rgba(238, 233, 223, 0.5); }
  48% { border-color: rgba(238, 233, 223, 0.92); }
}

.home-message {
  position: relative;
  overflow: hidden;
  padding-block: 220px 250px;
  background: var(--home-ivory);
}

.home-message__layout {
  display: grid;
  grid-template-columns: minmax(320px, 0.82fr) minmax(520px, 1.38fr);
  align-items: center;
  gap: 9%;
}

.home-message__copy {
  position: relative;
  z-index: 2;
  max-width: 520px;
}

.home-message h2,
.home-fragments h2,
.home-forms h2,
.home-question h2,
.home-final h2 {
  margin: 24px 0 0;
  font-family: var(--home-serif);
  font-size: 40px;
  font-weight: 400;
  line-height: 1.62;
}

.home-message__rule {
  display: block;
  width: 0;
  height: 1px;
  margin: 34px 0 32px;
  background: rgba(32, 35, 31, 0.44);
  transition: width 1200ms cubic-bezier(.22, .68, .25, 1);
}

.home-message.is-opened .home-message__rule {
  width: 44px;
}

.home-message__body p {
  margin: 0 0 24px;
  color: #4f534d;
  font-family: var(--home-serif);
  font-size: 15px;
  line-height: 2.05;
}

.home-message__body p:last-child {
  margin-bottom: 0;
}

.home-message__still {
  position: relative;
  width: calc(100% + 5vw);
  margin: 0;
}

.home-message__still::before {
  position: absolute;
  z-index: 1;
  inset: 0;
  content: "";
  box-shadow: inset 0 0 40px rgba(238, 233, 223, 0.2);
  pointer-events: none;
}

.home-message__still img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  filter: blur(0.9px) saturate(0.84);
  transform: scale(1);
  transition: filter 1500ms ease, transform 1500ms cubic-bezier(.22, .68, .25, 1);
}

.home-message.is-opened .home-message__still img {
  filter: blur(0.2px) saturate(0.9);
  transform: scale(1.005);
}

.home-message__still figcaption {
  position: absolute;
  right: 22px;
  bottom: -34px;
  color: #777971;
  font-family: var(--home-serif);
  font-size: 11px;
}

html:not(.no-js) .home-message [data-message-part] {
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 1100ms cubic-bezier(.22, .68, .25, 1), transform 1100ms cubic-bezier(.22, .68, .25, 1);
}

html:not(.no-js) .home-message.is-visible [data-message-part] {
  opacity: 1;
  transform: translateY(0);
}

.home-message.is-visible .home-message__body p:nth-child(1) { transition-delay: 250ms; }
.home-message.is-visible .home-message__body p:nth-child(2) { transition-delay: 450ms; }
.home-message.is-visible .home-message__body p:nth-child(3) { transition-delay: 650ms; }
.home-message.is-visible .home-message__still { transition-delay: 300ms; }

.home-fragments {
  position: relative;
  overflow: clip;
  padding-block: 220px 260px;
  background: var(--home-forest-deep);
  color: var(--home-ivory);
}

.home-fragments__head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: end;
  margin-bottom: 170px;
}

.home-fragments__head .home-index {
  grid-column: 1 / -1;
}

.home-fragments__head h2 {
  margin-top: 0;
}

.home-fragments__head > p:last-child {
  max-width: 520px;
  margin: 0 0 8px;
  color: rgba(238, 233, 223, 0.56);
  font-family: var(--home-serif);
  font-size: 13px;
  line-height: 2;
}

.home-fragments__collection {
  display: grid;
  gap: 210px;
}

.memory-fragment {
  position: relative;
  width: min(calc(100% - 96px), 1240px);
  margin-inline: auto;
  outline: 0;
}

.memory-fragment__stage {
  position: relative;
  min-height: 760px;
  border-bottom: 1px solid rgba(238, 233, 223, 0.12);
}

.memory-fragment__number {
  position: absolute;
  top: 0;
  left: 2%;
  margin: 0;
  color: rgba(238, 233, 223, 0.38);
  font-family: var(--home-serif);
  font-size: 12px;
}

.memory-fragment__photo {
  position: absolute;
  margin: 0;
  overflow: hidden;
  background: #141914;
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.14);
}

.memory-fragment__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: blur(0.9px) brightness(0.9) saturate(0.84);
  transform: scale(1.004);
  transition: filter 1400ms ease, transform 1400ms cubic-bezier(.22, .68, .25, 1);
}

.memory-fragment__photo--main {
  top: 82px;
  left: 5%;
  width: 57%;
  aspect-ratio: 3 / 2;
}

.memory-fragment__photo--detail {
  z-index: 2;
  top: 46px;
  right: 4%;
  width: 23%;
  aspect-ratio: 4 / 3;
  border: 7px solid rgba(220, 211, 195, 0.92);
  transform: rotate(1.3deg);
}

.memory-fragment__photo--detail img {
  object-position: 72% 50%;
}

.memory-fragment__title {
  position: absolute;
  z-index: 3;
  top: 328px;
  right: 5%;
  width: 31%;
}

.memory-fragment__title p {
  margin: 0 0 10px;
  color: rgba(238, 233, 223, 0.47);
  font-size: 11px;
  line-height: 1.5;
}

.memory-fragment__title h3 {
  margin: 0;
  font-family: var(--home-serif);
  font-size: 28px;
  font-weight: 400;
  line-height: 1.55;
}

.memory-fragment__quote {
  position: absolute;
  top: 555px;
  left: 14%;
  margin: 0;
  color: rgba(238, 233, 223, 0.68);
  font-family: var(--home-serif);
  font-size: 14px;
  font-style: normal;
  line-height: 2;
}

.memory-fragment__paper {
  position: absolute;
  top: 520px;
  right: 11%;
  display: grid;
  width: 180px;
  min-height: 112px;
  align-content: center;
  gap: 3px;
  padding: 18px 22px;
  background: #cfc6b5;
  box-shadow: 3px 5px 14px rgba(0, 0, 0, 0.16);
  color: rgba(32, 35, 31, 0.58);
  font-family: var(--home-serif);
  font-size: 9px;
  line-height: 1.7;
  transform: rotate(-1.2deg);
}

.memory-fragment__relation {
  position: absolute;
  z-index: 1;
  top: 178px;
  left: 24%;
  width: 55%;
  height: 390px;
  overflow: visible;
  pointer-events: none;
}

.memory-fragment__relation path {
  fill: none;
  stroke: rgba(180, 154, 112, 0.36);
  stroke-dasharray: 1;
  stroke-dashoffset: 1;
  stroke-linecap: round;
  stroke-width: 0.7;
  vector-effect: non-scaling-stroke;
  transition: stroke-dashoffset 1500ms cubic-bezier(.22, .68, .25, 1) 650ms;
}

.memory-fragment__entrance {
  position: absolute;
  right: 5%;
  bottom: 34px;
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: 20px;
  border-bottom: 1px solid rgba(238, 233, 223, 0.22);
  color: rgba(238, 233, 223, 0.58);
  font-family: var(--home-serif);
  font-size: 12px;
  transition: color 700ms ease, border-color 700ms ease;
}

.memory-fragment__entrance--plain {
  border-bottom: 0;
  color: rgba(238, 233, 223, 0.3);
}

.memory-fragment a.memory-fragment__entrance:hover {
  color: var(--home-ivory);
  border-color: rgba(238, 233, 223, 0.7);
}

.memory-fragment--kitchen .memory-fragment__number {
  right: 2%;
  left: auto;
}

.memory-fragment--kitchen .memory-fragment__photo--main {
  right: 5%;
  left: auto;
}

.memory-fragment--kitchen .memory-fragment__photo--detail {
  right: auto;
  left: 4%;
  transform: rotate(-1.4deg);
}

.memory-fragment--kitchen .memory-fragment__photo--detail img {
  object-position: 20% 52%;
}

.memory-fragment--kitchen .memory-fragment__title {
  right: auto;
  left: 5%;
}

.memory-fragment--kitchen .memory-fragment__quote {
  right: 14%;
  left: auto;
}

.memory-fragment--kitchen .memory-fragment__paper {
  right: auto;
  left: 11%;
  transform: rotate(1.1deg);
}

.memory-fragment--kitchen .memory-fragment__entrance {
  right: auto;
  left: 5%;
}

.memory-fragment--kitchen .memory-fragment__relation {
  right: 24%;
  left: auto;
  transform: scaleX(-1);
}

.memory-fragment--name .memory-fragment__photo--detail img {
  object-position: 72% 72%;
}

.memory-fragment [data-fragment-piece] {
  opacity: 0.88;
  translate: var(--piece-x, 0) var(--piece-y, 0);
  transition: opacity 1100ms cubic-bezier(.22, .68, .25, 1) var(--piece-delay, 0ms), translate 1400ms cubic-bezier(.22, .68, .25, 1) var(--piece-delay, 0ms), filter 1400ms ease var(--piece-delay, 0ms);
}

.memory-fragment.is-opened [data-fragment-piece] {
  opacity: 1;
  translate: 0 0;
}

.memory-fragment.is-opened .memory-fragment__photo img {
  filter: blur(0) brightness(0.96) saturate(0.9);
  transform: scale(1);
}

.memory-fragment.is-opened .memory-fragment__relation path {
  stroke-dashoffset: 0;
}

.memory-fragment.is-opened .memory-fragment__entrance {
  color: rgba(238, 233, 223, 0.92);
  border-color: rgba(238, 233, 223, 0.5);
}

.memory-fragment:focus-visible .memory-fragment__stage {
  outline: 1px solid rgba(180, 154, 112, 0.78);
  outline-offset: 12px;
}

.memory-fragment.is-breathing .memory-fragment__photo--main img {
  animation: memoryBreath 12s ease-in-out infinite alternate;
}

.memory-fragment.is-breathing .memory-fragment__photo--detail img {
  animation: memoryBreathDetail 14s ease-in-out infinite alternate;
}

.memory-fragment.is-breathing .memory-fragment__paper {
  animation: paperBreath 13s ease-in-out infinite alternate;
}

@keyframes memoryBreath {
  from { transform: translate3d(0, 0, 0) scale(1); filter: blur(0) brightness(0.95) saturate(0.9); }
  to { transform: translate3d(1px, -0.5px, 0) scale(1.004); filter: blur(0.15px) brightness(0.97) saturate(0.9); }
}

@keyframes memoryBreathDetail {
  from { transform: translate3d(0, 0, 0) scale(1); }
  to { transform: translate3d(1.5px, -0.7px, 0) scale(1.005); }
}

@keyframes paperBreath {
  from { box-shadow: 3px 5px 14px rgba(0, 0, 0, 0.16); }
  to { box-shadow: 4px 6px 17px rgba(0, 0, 0, 0.19); }
}

.home-forms {
  position: relative;
  overflow: clip;
  padding-block: 230px 250px;
  background: var(--home-paper);
}

.home-forms__head {
  display: grid;
  grid-template-columns: minmax(360px, 0.8fr) 1fr;
  gap: 8%;
  align-items: end;
  margin-bottom: 110px;
}

.home-forms__head .home-index {
  grid-column: 1 / -1;
}

.home-forms__head h2 {
  margin-top: 18px;
}

.home-forms__head > p:last-child {
  max-width: 430px;
  margin: 0 0 12px;
  color: #5c6059;
  font-family: var(--home-serif);
  font-size: 14px;
  line-height: 2;
}

.memory-form {
  position: relative;
}

.memory-form__tabs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--home-line);
  border-bottom: 1px solid var(--home-line);
}

.memory-form__tabs button {
  position: relative;
  display: flex;
  min-height: 84px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 12px 18px;
  border-right: 1px solid var(--home-line);
  background: transparent;
  cursor: pointer;
  transition: color 600ms ease, background-color 600ms ease;
}

.memory-form__tabs button:last-child {
  border-right: 0;
}

.memory-form__tabs button::after {
  position: absolute;
  right: 18%;
  bottom: -1px;
  left: 18%;
  height: 1px;
  background: var(--home-ink);
  content: "";
  opacity: 0;
  transform: scaleX(0.25);
  transition: opacity 600ms ease, transform 800ms cubic-bezier(.22, .68, .25, 1);
}

.memory-form__tabs button[aria-selected="true"] {
  background: rgba(255, 255, 255, 0.2);
}

.memory-form__tabs button[aria-selected="true"]::after {
  opacity: 1;
  transform: scaleX(1);
}

.memory-form__tabs span {
  font-family: var(--home-serif);
  font-size: 20px;
}

.memory-form__tabs small {
  color: #777970;
  font-size: 11px;
}

.memory-form__stage {
  position: relative;
  min-height: 780px;
  overflow: hidden;
  border-bottom: 1px solid var(--home-line);
}

.memory-form__core {
  position: absolute;
  z-index: 8;
  top: 58px;
  left: 6%;
  max-width: 410px;
}

.memory-form__core p {
  margin: 0 0 8px;
  color: #74776f;
  font-size: 10px;
}

.memory-form__core h3 {
  margin: 0;
  font-family: var(--home-serif);
  font-size: 25px;
  font-weight: 400;
  line-height: 1.6;
}

.memory-form__core > span {
  display: block;
  margin-top: 10px;
  color: #676a63;
  font-family: var(--home-serif);
  font-size: 12px;
}

.memory-mode {
  position: absolute;
  z-index: 1;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 700ms ease;
}

.memory-mode.is-active {
  z-index: 3;
  opacity: 1;
  pointer-events: auto;
}

.memory-mode [data-mode-piece] {
  opacity: 0;
  translate: 0 9px;
  transition: opacity 900ms cubic-bezier(.22, .68, .25, 1) var(--mode-delay, 0ms), translate 1100ms cubic-bezier(.22, .68, .25, 1) var(--mode-delay, 0ms), filter 800ms ease;
}

.memory-mode.is-active.is-settled [data-mode-piece] {
  opacity: 1;
  translate: 0 0;
}

.memory-mode__photo {
  position: absolute;
  top: 180px;
  left: 18%;
  width: 64%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #20261f;
  box-shadow: 0 18px 42px rgba(39, 36, 30, 0.12);
}

.memory-mode__photo::after {
  position: absolute;
  inset: 0;
  background: rgba(19, 24, 19, 0.08);
  content: "";
  pointer-events: none;
}

.memory-mode__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.82) brightness(0.94);
  transform: scale(1);
  transition: opacity 650ms ease, object-position 650ms ease, filter 1100ms ease, transform 1200ms cubic-bezier(.22, .68, .25, 1);
}

.memory-mode--web.is-active.is-settled .memory-mode__photo img {
  filter: saturate(0.9) brightness(0.97);
  transform: scale(1.007);
}

.memory-mode__place {
  position: absolute;
  top: 306px;
  left: 7%;
  display: grid;
  gap: 3px;
  color: #777970;
  font-family: var(--home-serif);
  font-size: 9px;
}

.memory-mode__place::before {
  width: 34px;
  height: 34px;
  margin-bottom: 8px;
  border: 1px solid rgba(32, 35, 31, 0.32);
  border-radius: 50%;
  content: "";
}

.memory-mode__statement {
  position: absolute;
  right: 4%;
  bottom: 108px;
  margin: 0;
  color: #4f534d;
  font-family: var(--home-serif);
  font-size: 15px;
  line-height: 1.9;
}

.memory-mode__link {
  position: absolute;
  right: 4%;
  bottom: 38px;
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: 18px;
  border-bottom: 1px solid rgba(32, 35, 31, 0.28);
  font-family: var(--home-serif);
  font-size: 12px;
}

.memory-mode__link:hover {
  border-color: var(--home-ink);
}

.memory-mode--film .memory-mode__photo img {
  object-position: 34% 50%;
}

.memory-mode--film .memory-mode__photo.is-changing img {
  opacity: 0.24;
}

.film-timeline {
  position: absolute;
  bottom: 104px;
  left: 8%;
  display: flex;
  width: 52%;
  align-items: center;
  justify-content: space-between;
}

.film-timeline > span {
  position: absolute;
  right: 0;
  left: 0;
  height: 1px;
  background: rgba(32, 35, 31, 0.28);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 1200ms cubic-bezier(.22, .68, .25, 1) 260ms;
}

.memory-mode--film.is-active.is-settled .film-timeline > span {
  transform: scaleX(1);
}

.film-timeline button {
  position: relative;
  z-index: 2;
  width: 44px;
  height: 44px;
  padding: 0;
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
}

.film-timeline button::before {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 7px;
  height: 7px;
  border: 1px solid #6d7068;
  border-radius: 50%;
  background: var(--home-paper);
  content: "";
  transform: translate(-50%, -50%);
  transition: background-color 400ms ease, transform 400ms ease;
}

.film-timeline button[aria-current="true"]::before {
  background: var(--home-ink);
  transform: translate(-50%, -50%) scale(1.25);
}

.film-timeline__caption {
  position: absolute;
  bottom: 48px;
  left: 8%;
  margin: 0;
  color: #565a53;
  font-family: var(--home-serif);
  font-size: 12px;
  transition: opacity 500ms ease;
}

.film-timeline__caption.is-changing {
  opacity: 0;
}

.memory-mode--music .memory-mode__photo::after {
  background: rgba(7, 13, 12, 0.42);
}

.memory-mode--music .memory-mode__photo img {
  filter: saturate(0.58) brightness(0.74);
}

.music-wave {
  position: absolute;
  z-index: 3;
  top: 392px;
  left: 22%;
  width: 56%;
  height: 92px;
  overflow: visible;
}

.music-wave path {
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.2;
  vector-effect: non-scaling-stroke;
}

.music-wave__base {
  stroke: rgba(238, 233, 223, 0.36);
}

.music-wave__progress {
  stroke: rgba(216, 185, 130, 0.82);
  stroke-dasharray: 1;
  stroke-dashoffset: calc(1 - var(--audio-progress, 0));
  transition: stroke-dashoffset 120ms linear;
}

.music-control {
  position: absolute;
  z-index: 4;
  right: 6%;
  bottom: 56px;
  display: flex;
  align-items: center;
  gap: 14px;
  color: #6e716a;
  font-size: 11px;
}

.music-control button {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 1px solid rgba(32, 35, 31, 0.28);
  border-radius: 50%;
  background: transparent;
}

.music-control button:not(:disabled) {
  cursor: pointer;
}

.music-control button:disabled {
  opacity: 0.5;
}

.memory-mode--music .memory-mode__statement {
  right: auto;
  bottom: 50px;
  left: 6%;
}

.memory-mode--letter .memory-mode__photo img {
  filter: saturate(0.45) brightness(1.08);
  opacity: 0.28;
}

.memory-letter {
  position: absolute;
  z-index: 4;
  top: 212px;
  left: 28%;
  width: 44%;
  min-height: 390px;
  padding: 62px 72px;
  background: rgba(235, 228, 214, 0.96);
  box-shadow: 3px 5px 12px rgba(52, 46, 37, 0.14);
  clip-path: polygon(0 1.5%, 97% 0, 100% 97%, 2% 100%);
  font-family: var(--home-serif);
}

.memory-letter p {
  margin: 0 0 24px;
  font-size: 13px;
  line-height: 2;
}

.memory-letter p:first-child {
  font-size: 17px;
}

.memory-mode--letter.is-active.is-settled .memory-letter p {
  animation: letterParagraph 800ms ease both;
}

.memory-mode--letter.is-active.is-settled .memory-letter p:nth-child(2) { animation-delay: 210ms; }
.memory-mode--letter.is-active.is-settled .memory-letter p:nth-child(3) { animation-delay: 440ms; }

@keyframes letterParagraph {
  from { opacity: 0; transform: translateY(6px); }
  to { opacity: 1; transform: translateY(0); }
}

.home-question {
  position: relative;
  min-height: 1000px;
  padding-block: 220px;
  background: var(--home-ivory);
}

.home-question__inner {
  display: flex;
  min-height: 560px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.home-question h2 {
  max-width: 830px;
  font-size: 38px;
}

.home-question__lead {
  margin: 28px 0 0;
  color: #676a63;
  font-family: var(--home-serif);
  font-size: 13px;
  line-height: 2;
}

.home-question__choices {
  display: grid;
  width: min(780px, 100%);
  grid-template-columns: repeat(3, 1fr);
  margin-top: 80px;
  border-top: 1px solid var(--home-line);
  border-bottom: 1px solid var(--home-line);
}

.home-question__choices button {
  display: flex;
  min-height: 110px;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 16px;
  border-right: 1px solid var(--home-line);
  background: transparent;
  font-family: var(--home-serif);
  font-size: 16px;
  cursor: pointer;
  transition: color 600ms ease, opacity 600ms ease, background-color 600ms ease;
}

.home-question__choices button:last-child {
  border-right: 0;
}

.home-question__choices button span {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  color: #777970;
  font-family: Georgia, serif;
  font-size: 17px;
}

.home-question__choices.has-selection button:not(.is-selected) {
  opacity: 0.4;
}

.home-question__choices button.is-selected {
  background: rgba(180, 154, 112, 0.08);
  color: #111511;
}

.home-question__response {
  width: min(650px, 100%);
  margin-top: 66px;
  animation: quietAnswer 900ms cubic-bezier(.22, .68, .25, 1) both;
}

.home-question__response p {
  margin: 0;
  font-family: var(--home-serif);
  font-size: 26px;
  line-height: 1.75;
}

.home-question__response > span {
  display: block;
  margin-top: 30px;
  color: #686b64;
  font-family: var(--home-serif);
  font-size: 13px;
  line-height: 2;
}

.home-question__response button {
  min-height: 44px;
  margin-top: 32px;
  padding: 8px 4px;
  border-bottom: 1px solid rgba(32, 35, 31, 0.3);
  background: transparent;
  color: #676a63;
  font-size: 11px;
  cursor: pointer;
}

@keyframes quietAnswer {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

.home-final {
  position: relative;
  display: grid;
  min-height: 96vh;
  min-height: 96svh;
  overflow: hidden;
  place-items: center;
  isolation: isolate;
  background: var(--home-forest-deep);
  color: var(--home-ivory);
}

.home-final__media,
.home-final__shade {
  position: absolute;
  inset: 0;
}

.home-final__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 50%;
  filter: brightness(0.74) saturate(0.88);
  transform: scale(1.006);
}

.home-final__shade {
  z-index: 1;
  background: rgba(3, 8, 7, 0.3);
  box-shadow: inset 0 0 180px rgba(2, 5, 4, 0.58);
}

.home-final__light {
  position: absolute;
  z-index: 2;
  right: 16%;
  bottom: 22%;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: rgba(218, 174, 104, 0.09);
  box-shadow: 0 0 42px 18px rgba(218, 174, 104, 0.08);
  animation: lanternBreath 8s ease-in-out infinite alternate;
  pointer-events: none;
}

@keyframes lanternBreath {
  from { opacity: 0.88; transform: scale(0.98); }
  to { opacity: 1; transform: scale(1.03); }
}

.home-final__inner {
  position: relative;
  z-index: 3;
  max-width: 720px;
  text-align: center;
}

.home-final h2 {
  margin-top: 24px;
  font-size: 42px;
}

.home-final__inner > p:not(.home-index) {
  margin: 28px 0 36px;
  color: rgba(238, 233, 223, 0.7);
  font-family: var(--home-serif);
  font-size: 14px;
  line-height: 2;
}

.home-final.is-visible .home-button {
  animation: finalBorderOnce 1500ms ease 900ms 1 both;
}

@keyframes finalBorderOnce {
  0%, 100% { border-color: rgba(238, 233, 223, 0.5); }
  52% { border-color: rgba(238, 233, 223, 0.92); }
}

.home-footer {
  padding-block: 68px max(56px, env(safe-area-inset-bottom));
  background: #080c09;
  color: rgba(238, 233, 223, 0.68);
}

.home-footer__inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 58px;
}

.home-footer__brand {
  color: var(--home-ivory);
  font-size: 21px;
}

.home-footer__inner > div p {
  margin: 14px 0 0;
  font-family: var(--home-serif);
  font-size: 11px;
}

.home-footer nav {
  display: flex;
  align-items: flex-start;
  gap: 28px;
  font-size: 11px;
}

.home-footer nav a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
}

.home-footer__copyright {
  grid-column: 1 / -1;
  margin: 18px 0 0;
  padding-top: 28px;
  border-top: 1px solid rgba(238, 233, 223, 0.12);
  font-size: 10px;
}

html:not(.no-js) .home-reveal {
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 1100ms cubic-bezier(.22, .68, .25, 1), transform 1100ms cubic-bezier(.22, .68, .25, 1);
}

html:not(.no-js) .home-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1100px) {
  .home-shell,
  .memory-fragment {
    width: min(calc(100% - 64px), var(--home-shell));
  }

  .home-header {
    padding-inline: 30px;
  }

  .home-nav {
    gap: 22px;
  }

  .home-hero h1 {
    font-size: 44px;
  }

  .home-message__layout {
    grid-template-columns: minmax(300px, 0.88fr) minmax(440px, 1.12fr);
    gap: 6%;
  }

  .memory-fragment__title h3 {
    font-size: 24px;
  }

  .memory-form__stage {
    min-height: 720px;
  }

  .memory-mode__photo {
    top: 176px;
  }

  .memory-letter {
    top: 205px;
    padding: 50px 58px;
  }
}

@media (max-width: 860px) {
  :root {
    --header-height: 70px;
  }

  .home-shell,
  .memory-fragment {
    width: min(calc(100% - 48px), 720px);
  }

  .home-header {
    padding-inline: 22px;
  }

  .home-header__brand {
    width: 146px;
    height: 50px;
  }

  .home-nav {
    display: none;
  }

  .home-menu-button {
    position: relative;
    z-index: 102;
    display: grid;
    width: 48px;
    height: 48px;
    place-content: center;
    gap: 7px;
    padding: 0;
    background: transparent;
    color: inherit;
    cursor: pointer;
  }

  .home-menu-button span {
    display: block;
    width: 25px;
    height: 1px;
    background: currentColor;
    transition: transform 350ms ease;
  }

  .home-menu-button[aria-expanded="true"] span:first-child {
    transform: translateY(4px) rotate(45deg);
  }

  .home-menu-button[aria-expanded="true"] span:last-child {
    transform: translateY(-4px) rotate(-45deg);
  }

  .home-mobile-nav {
    position: fixed;
    z-index: 100;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 0;
    padding: 96px 28px max(40px, env(safe-area-inset-bottom));
    background: #0a0f0c;
    color: var(--home-ivory);
  }

  .home-mobile-nav[hidden] {
    display: none;
  }

  .home-mobile-nav a {
    display: grid;
    min-height: 72px;
    grid-template-columns: 44px 1fr;
    align-items: center;
    border-bottom: 1px solid rgba(238, 233, 223, 0.14);
    font-family: var(--home-serif);
    font-size: 20px;
  }

  .home-mobile-nav a span {
    color: rgba(238, 233, 223, 0.42);
    font-family: var(--home-sans);
    font-size: 9px;
  }

  .home-hero__copy {
    width: 82%;
    margin-left: 0;
  }

  .home-hero h1 {
    font-size: 39px;
  }

  .home-message {
    padding-block: 180px 210px;
  }

  .home-message__layout {
    grid-template-columns: 1fr;
    gap: 94px;
  }

  .home-message__copy {
    width: min(100%, 560px);
  }

  .home-message__still {
    width: 100%;
  }

  .home-message__still figcaption {
    right: 0;
  }

  .home-fragments {
    padding-block: 190px 220px;
  }

  .home-fragments__head {
    grid-template-columns: 1fr;
    gap: 28px;
    margin-bottom: 150px;
  }

  .home-fragments__head .home-index {
    grid-column: auto;
  }

  .home-fragments__collection {
    gap: 170px;
  }

  .memory-fragment__stage {
    min-height: 840px;
  }

  .memory-fragment__photo--main,
  .memory-fragment--kitchen .memory-fragment__photo--main {
    top: 80px;
    right: auto;
    left: 0;
    width: 86%;
  }

  .memory-fragment__photo--detail,
  .memory-fragment--kitchen .memory-fragment__photo--detail {
    top: 300px;
    right: 0;
    left: auto;
    width: 34%;
  }

  .memory-fragment__title,
  .memory-fragment--kitchen .memory-fragment__title {
    top: 500px;
    right: auto;
    left: 3%;
    width: 75%;
  }

  .memory-fragment__quote,
  .memory-fragment--kitchen .memory-fragment__quote {
    top: 625px;
    right: auto;
    left: 10%;
  }

  .memory-fragment__paper,
  .memory-fragment--kitchen .memory-fragment__paper {
    top: 610px;
    right: 2%;
    left: auto;
    width: 150px;
    min-height: 96px;
    padding: 14px 18px;
  }

  .memory-fragment__relation,
  .memory-fragment--kitchen .memory-fragment__relation {
    top: 300px;
    right: auto;
    left: 18%;
    width: 66%;
    transform: none;
  }

  .memory-fragment__entrance,
  .memory-fragment--kitchen .memory-fragment__entrance {
    right: 0;
    bottom: 30px;
    left: auto;
  }

  .home-forms {
    padding-block: 190px 210px;
  }

  .home-forms__head {
    grid-template-columns: 1fr;
    gap: 28px;
    margin-bottom: 90px;
  }

  .home-forms__head .home-index {
    grid-column: auto;
  }

  .memory-form__stage {
    min-height: 710px;
  }

  .memory-mode__photo {
    left: 9%;
    width: 82%;
  }

  .memory-mode__place {
    top: 510px;
    left: 9%;
  }

  .memory-mode__statement {
    right: 9%;
    bottom: 95px;
  }

  .memory-mode__link {
    right: 9%;
  }

  .film-timeline {
    left: 9%;
    width: 58%;
  }

  .film-timeline__caption {
    left: 9%;
  }

  .music-wave {
    top: 355px;
    left: 16%;
    width: 68%;
  }

  .memory-letter {
    top: 215px;
    left: 20%;
    width: 60%;
  }

  .home-question {
    min-height: 940px;
    padding-block: 190px;
  }

  .home-question h2 {
    font-size: 34px;
  }

  .home-footer__inner {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .home-footer nav {
    flex-wrap: wrap;
    gap: 8px 24px;
  }

  .home-footer__copyright {
    grid-column: auto;
  }
}

@media (max-width: 560px) {
  .home-shell,
  .memory-fragment {
    width: calc(100% - 40px);
  }

  .home-header {
    height: calc(var(--header-height) + env(safe-area-inset-top));
    padding-top: env(safe-area-inset-top);
    padding-inline: 18px;
  }

  .home-header__brand {
    font-size: 20px;
  }

  .home-hero {
    min-height: 104svh;
  }

  .home-hero__media img,
  .home-hero__periphery img {
    object-position: 58% 50%;
  }

  .home-hero__shade {
    background: rgba(5, 8, 6, 0.48);
    box-shadow: inset 0 150px 120px rgba(5, 8, 6, 0.3), inset 0 -170px 140px rgba(5, 8, 6, 0.5);
  }

  .home-hero__inner {
    min-height: 104svh;
    align-items: flex-end;
    padding-block: calc(var(--header-height) + env(safe-area-inset-top) + 30px) 116px;
  }

  .home-hero__copy {
    width: 100%;
  }

  .home-eyebrow {
    margin-bottom: 18px;
    font-size: 9px;
  }

  .home-hero h1 {
    font-size: 32px;
    line-height: 1.6;
  }

  .home-hero h1 span:first-child {
    white-space: nowrap;
  }

  .home-hero__lead {
    margin-top: 24px;
    font-size: 12px;
    line-height: 2;
  }

  .home-hero__actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
    margin-top: 28px;
  }

  .home-button {
    min-height: 48px;
    padding-inline: 18px;
    font-size: 13px;
  }

  .home-hero__hint {
    right: 12px;
    bottom: 26px;
  }

  .home-message {
    padding-block: 165px 190px;
  }

  .home-message__layout {
    gap: 82px;
  }

  .home-message h2,
  .home-fragments h2,
  .home-forms h2,
  .home-question h2,
  .home-final h2 {
    font-size: 29px;
    line-height: 1.7;
  }

  .home-message__body p {
    font-size: 14px;
  }

  .home-message__still {
    width: calc(100% + 20px);
    margin-left: -10px;
  }

  .home-message__still img {
    aspect-ratio: 4 / 5;
    object-position: 68% 50%;
  }

  .home-fragments {
    padding-block: 165px 200px;
  }

  .home-fragments__head {
    margin-bottom: 135px;
  }

  .home-fragments__head > p:last-child {
    font-size: 12px;
  }

  .home-fragments__collection {
    gap: 145px;
  }

  .memory-fragment__stage {
    min-height: 790px;
  }

  .memory-fragment__photo--main,
  .memory-fragment--kitchen .memory-fragment__photo--main {
    top: 70px;
    width: 91%;
  }

  .memory-fragment__photo--detail,
  .memory-fragment--kitchen .memory-fragment__photo--detail {
    top: 260px;
    width: 40%;
    border-width: 5px;
  }

  .memory-fragment__title,
  .memory-fragment--kitchen .memory-fragment__title {
    top: 430px;
    left: 0;
    width: 92%;
  }

  .memory-fragment__title h3 {
    font-size: 22px;
  }

  .memory-fragment__quote,
  .memory-fragment--kitchen .memory-fragment__quote {
    top: 548px;
    left: 2%;
    font-size: 13px;
  }

  .memory-fragment__paper,
  .memory-fragment--kitchen .memory-fragment__paper {
    top: 636px;
    right: 0;
    width: 138px;
    min-height: 84px;
    padding: 12px 14px;
  }

  .memory-fragment__relation,
  .memory-fragment--kitchen .memory-fragment__relation {
    top: 282px;
    left: 8%;
    width: 84%;
    height: 360px;
  }

  .memory-fragment__entrance,
  .memory-fragment--kitchen .memory-fragment__entrance {
    right: auto;
    bottom: 18px;
    left: 0;
  }

  .home-forms {
    padding-block: 165px 190px;
  }

  .home-forms__head {
    margin-bottom: 76px;
  }

  .memory-form__tabs {
    grid-template-columns: 1fr;
  }

  .memory-form__tabs button {
    min-height: 58px;
    justify-content: space-between;
    padding-inline: 8px;
    border-right: 0;
    border-bottom: 1px solid var(--home-line);
  }

  .memory-form__tabs button:last-child {
    border-bottom: 0;
  }

  .memory-form__tabs button::after {
    top: 16px;
    right: auto;
    bottom: 16px;
    left: -1px;
    width: 1px;
    height: auto;
    transform: scaleY(0.25);
  }

  .memory-form__tabs button[aria-selected="true"]::after {
    transform: scaleY(1);
  }

  .memory-form__tabs span {
    font-size: 18px;
  }

  .memory-form__stage {
    min-height: 735px;
  }

  .memory-form__core {
    top: 42px;
    left: 0;
    width: 100%;
  }

  .memory-form__core h3 {
    font-size: 21px;
  }

  .memory-mode__photo {
    top: 180px;
    left: 0;
    width: 100%;
    aspect-ratio: 4 / 3;
  }

  .memory-mode__place {
    top: 490px;
    left: 0;
  }

  .memory-mode__statement,
  .memory-mode--music .memory-mode__statement {
    right: auto;
    bottom: 82px;
    left: 0;
    font-size: 14px;
  }

  .memory-mode__link {
    right: auto;
    bottom: 20px;
    left: 0;
  }

  .film-timeline {
    bottom: 108px;
    left: 0;
    width: 100%;
  }

  .film-timeline__caption {
    bottom: 57px;
    left: 0;
    font-size: 11px;
  }

  .memory-mode--film .memory-mode__link {
    bottom: 4px;
  }

  .music-wave {
    top: 338px;
    left: 8%;
    width: 84%;
  }

  .music-control {
    right: 0;
    bottom: 18px;
  }

  .memory-mode--music .memory-mode__statement {
    bottom: 88px;
  }

  .memory-letter {
    top: 205px;
    left: 6%;
    width: 88%;
    min-height: 390px;
    padding: 48px 30px;
  }

  .memory-letter p {
    font-size: 12px;
  }

  .memory-mode--letter .memory-mode__link {
    bottom: 20px;
  }

  .home-question {
    min-height: 980px;
    padding-block: 175px;
  }

  .home-question__lead {
    font-size: 12px;
  }

  .home-question__choices {
    grid-template-columns: 1fr;
    margin-top: 64px;
  }

  .home-question__choices button {
    min-height: 74px;
    justify-content: flex-start;
    padding-inline: 22px;
    border-right: 0;
    border-bottom: 1px solid var(--home-line);
  }

  .home-question__choices button:last-child {
    border-bottom: 0;
  }

  .home-question__response p {
    font-size: 22px;
  }

  .home-final {
    min-height: 100svh;
  }

  .home-final__media img {
    object-position: 55% 50%;
  }

  .home-final__inner {
    width: calc(100% - 40px);
  }

  .home-final__light {
    right: 8%;
    bottom: 20%;
  }

  .home-footer {
    padding-block: 58px max(46px, env(safe-area-inset-bottom));
  }
}

@media (max-width: 350px) {
  .home-shell,
  .memory-fragment {
    width: calc(100% - 32px);
  }

  .home-hero h1 {
    font-size: 28px;
  }

  .home-hero h1 span:first-child {
    white-space: normal;
  }

  .memory-fragment__title h3 {
    font-size: 20px;
  }

  .memory-fragment__paper {
    opacity: 0.7;
  }
}

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

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

  html:not(.no-js) [data-hero-step],
  html:not(.no-js) .home-reveal,
  html:not(.no-js) .home-message [data-message-part],
  .memory-mode [data-mode-piece] {
    opacity: 1;
    transform: none;
    translate: 0 0;
  }

  .home-hero__media img,
  .home-hero__periphery img,
  .home-message__still img,
  .memory-fragment__photo img {
    filter: none;
    transform: none;
  }

  .home-hero__periphery {
    display: none;
  }

  .memory-fragment [data-fragment-piece] {
    opacity: 1;
    translate: 0 0;
  }

  .memory-fragment__relation path {
    stroke-dashoffset: 0;
  }

  .home-final__light {
    animation: none;
  }
}
