:root {
  --ink: #1d1d1d;
  --muted: #646464;
  --gold: #b1aa9f;
  --paper: #eeedeb;
  --paper-deep: #e9e3e3;
  --sand: #c9c4bc;
  --white: #ffffff;
  --max: 1216px;
  --gutter: max(28px, calc((100vw - var(--max)) / 2));
  --frame-inset: 40px;
  --font-english-title: "trust-3a", "Noto Serif TC", Georgia, serif;
  --font-english-card-title: "trust-3a", "Noto Serif TC", Georgia, serif;
  --font-english-body: "SF Pro Text", "SF Pro", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-english-button: "trust-3a", "Noto Serif TC", Georgia, serif;
  --font-chinese-title: "Noto Serif TC", Georgia, serif;
  --font-chinese-body: "SF Pro Text", "SF Pro", "PingFang TC", "Heiti TC", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-chinese-button: "Noto Serif TC", Georgia, serif;
  --image-s01-d: url("design_resources/images/laaom-s01-d-v001.jpg");
  --image-s01-m: url("design_resources/images/laaom-s01-m-v001.jpg");
  --image-s03-d: url("design_resources/images/laaom-s03-d-v001.jpg");
  --image-s03-m: var(--image-s03-d);
  --image-s04-01-d: url("design_resources/images/laaom-s04-01-d-v001.jpg?v=96");
  --image-s04-02-d: url("design_resources/images/laaom-s04-02-d-v001.jpg");
  --image-s04-03-d: url("design_resources/images/laaom-s04-03-d-v001.jpg");
  --image-s04-04-d: url("design_resources/images/laaom-s04-04-d-v001.jpg");
  --image-s04-05-d: url("design_resources/images/laaom-s04-05-d-v001.jpg");
  --image-s04-06-d: url("design_resources/images/laaom-s04-06-d-v001.jpg");
  --image-s04-d: var(--image-s04-01-d);
  --image-s04-m: var(--image-s04-d);
  --image-s05-01-d: url("design_resources/images/laaom-s05-01-d-v001.jpg");
  --image-s05-02-d: url("design_resources/images/laaom-s05-02-d-v001.jpg");
  --image-s05-d: var(--image-s05-01-d);
  --image-s05-m: var(--image-s05-d);
  --image-s06-d: url("design_resources/images/laaom-s06-01-d-v001.jpg");
  --image-s06-m: url("design_resources/images/laaom-s06-01-m-v001.jpg");
  --image-s06-02-d: url("design_resources/images/laaom-s06-02-d-v001.jpg");
  --image-s06-03-d: url("design_resources/images/laaom-s06-03-d-v001.jpg");
  --image-s06-04-d: url("design_resources/images/laaom-s06-04-d-v001.jpg");
  --image-s06-02-m: url("design_resources/images/laaom-s06-02-d-v001.jpg");
  --image-s06-03-m: url("design_resources/images/laaom-s06-03-d-v001.jpg");
  --image-s06-04-m: url("design_resources/images/laaom-s06-04-d-v001.jpg");
  --image-s07-d: url("design_resources/images/laaom-s07-d-v001.jpg");
  --image-s07-m: var(--image-s07-d);
  --image-s01: var(--image-s01-d);
  --image-s03: var(--image-s03-d);
  --image-s04: var(--image-s04-d);
  --image-s05: var(--image-s05-d);
  --image-s06: var(--image-s06-d);
  --image-s07: var(--image-s07-d);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

body::before {
  position: fixed;
  inset: 0;
  z-index: 999;
  pointer-events: none;
  content: "";
  background: var(--paper);
  opacity: 1;
  transition: opacity 900ms ease;
}

body.is-ready::before {
  opacity: 0;
}

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

button {
  font: inherit;
}

p,
h1,
h2,
h3 {
  margin: 0;
}

.site-header {
  position: fixed;
  top: var(--frame-inset);
  left: var(--frame-inset);
  right: var(--frame-inset);
  z-index: 30;
  display: grid;
  grid-template-columns: auto minmax(420px, auto);
  align-items: center;
  justify-content: space-between;
  gap: 48px;
  padding: 0;
  color: var(--ink);
  background: transparent;
  border: 0;
  box-shadow: none;
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
  transition:
    color 460ms ease,
    background 460ms ease,
    border-color 460ms ease,
    box-shadow 460ms ease,
    transform 520ms ease;
}

.site-header[data-theme="dark"] {
  color: var(--white);
}

@media (min-width: 781px) {
  .site-header.is-hero-visual[data-theme="dark"] {
    color: var(--muted);
  }
}

.menu-icon {
  display: none;
  width: 28px;
  height: 24px;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  padding: 0;
  border: 0;
  color: inherit;
  background: transparent;
  cursor: pointer;
}

.menu-icon span {
  width: 22px;
  height: 1px;
  background: currentColor;
}

.brand-lockup {
  display: grid;
  gap: 2px;
  justify-self: start;
  text-align: left;
}

.brand-logo {
  display: block;
  color: currentColor;
  background: currentColor;
  -webkit-mask: url("assets/brand/laaom-logo-header-final.svg") center / contain no-repeat;
  mask: url("assets/brand/laaom-logo-header-final.svg") center / contain no-repeat;
}

.brand-lockup .brand-logo {
  width: 132px;
  height: 34px;
  transition: background 460ms ease, opacity 460ms ease;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-self: end;
  justify-content: flex-end;
  gap: 18px;
  font-family: var(--font-english-button);
  font-size: 18px;
  font-weight: 300;
  line-height: 20px;
  text-transform: none;
}

.language-menu {
  position: relative;
  color: inherit;
}

.language-menu summary {
  list-style: none;
}

.language-menu summary::-webkit-details-marker {
  display: none;
}

.language-trigger {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: inherit;
  font-family: var(--font-english-button);
  font-size: 18px;
  font-weight: 300;
  line-height: 20px;
  cursor: pointer;
}

.language-code {
  display: block;
  transform: none;
}

.language-chevron {
  width: 12px;
  height: 12px;
  border-top: 1.35px solid currentColor;
  border-right: 1.35px solid currentColor;
  transform: translateY(-4px) rotate(135deg);
  transition: transform 220ms ease;
}

.language-menu[open] .language-chevron {
  transform: translateY(0) rotate(-45deg);
}

.language-panel {
  position: absolute;
  top: calc(100% + 20px);
  right: 0;
  z-index: 40;
  display: grid;
  width: 138px;
  gap: 12px;
  padding: 18px 20px;
  color: var(--ink);
  background: var(--white);
  box-shadow: 0 12px 32px rgba(29, 29, 29, 0.12);
}

.language-panel a {
  font-family: var(--font-english-body);
  color: var(--ink);
  font-size: 13px;
  font-weight: 400;
  line-height: 18px;
  text-transform: none;
}

.language-panel a + a {
  font-family: var(--font-chinese-body);
}

.menu-backdrop {
  position: fixed;
  inset: 0;
  z-index: 70;
  background: rgb(77, 73, 69);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 300ms cubic-bezier(0.4, 0, 0.2, 1), visibility 300ms ease;
}

.menu-backdrop.is-open {
  opacity: 0.62;
  visibility: visible;
  pointer-events: auto;
}

.menu-drawer {
  position: fixed;
  inset: 0 auto 0 0;
  z-index: 80;
  display: flex;
  width: 640px;
  max-width: 100vw;
  color: var(--ink);
  transform: translateX(-100%);
  transition: transform 600ms cubic-bezier(0.25, 0.5, 0, 1);
  will-change: transform;
}

.menu-drawer.is-open {
  transform: translateX(0);
}

.menu-panel {
  position: relative;
  width: 320px;
  min-height: 100svh;
}

.menu-panel-main {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 58px 0 40px;
  background: var(--white);
  overflow-y: auto;
  overscroll-behavior: contain;
}

.menu-panel-secondary {
  display: grid;
  align-content: start;
  gap: 28px;
  padding: 120px 42px 64px;
  background: var(--paper);
}

.menu-close {
  position: relative;
  width: 28px;
  height: 28px;
  margin-left: 60px;
  padding: 0;
  border: 0;
  color: inherit;
  background: transparent;
  cursor: pointer;
}

.menu-close span {
  position: absolute;
  top: 13px;
  left: 1px;
  width: 26px;
  height: 1px;
  background: currentColor;
}

.menu-close span:first-child {
  transform: rotate(45deg);
}

.menu-close span:last-child {
  transform: rotate(-45deg);
}

.drawer-logo {
  display: block;
  margin: 58px 60px 0;
}

.drawer-logo .brand-logo {
  width: 150px;
  height: 38px;
}

.drawer-nav {
  display: grid;
  gap: 18px;
  margin-top: 54px;
}

.drawer-nav > span,
.drawer-nav > .language-menu {
  display: block;
  padding: 6px 60px;
  font-family: var(--font-english-button);
  font-size: 20px;
  font-weight: 300;
  letter-spacing: 0;
  line-height: 20px;
  text-transform: none;
  opacity: 0;
  transform: translateY(12px);
  transition:
    opacity 360ms ease,
    transform 520ms cubic-bezier(0.25, 0.5, 0, 1);
}

.menu-drawer.is-open .drawer-nav > span,
.menu-drawer.is-open .drawer-nav > .language-menu {
  opacity: 1;
  transform: translateY(0);
}

.menu-drawer.is-open .drawer-nav > :nth-child(1) {
  transition-delay: 120ms;
}

.menu-drawer.is-open .drawer-nav > :nth-child(2) {
  transition-delay: 180ms;
}

.menu-drawer.is-open .drawer-nav > :nth-child(3) {
  transition-delay: 240ms;
}

.menu-drawer.is-open .drawer-nav > :nth-child(4) {
  transition-delay: 300ms;
}

.menu-drawer.is-open .drawer-nav > :nth-child(5) {
  transition-delay: 360ms;
}

.menu-drawer.is-open .drawer-nav > :nth-child(6) {
  transition-delay: 420ms;
}

.drawer-language-choice {
  display: block;
  margin: auto 60px 0;
  font-family: var(--font-english-button);
  color: var(--muted);
  font-size: 20px;
  font-weight: 300;
  letter-spacing: 0;
  line-height: 20px;
  text-transform: none;
}

.drawer-language-choice a {
  color: inherit;
}

.menu-panel-secondary h2 {
  font-family: var(--font-chinese-title);
  font-size: 20px;
  line-height: 32px;
}

.menu-panel-secondary p,
.menu-panel-secondary a {
  color: var(--muted);
  font-size: 14px;
  line-height: 24px;
}

.menu-panel-secondary div {
  display: grid;
  gap: 10px;
  align-self: end;
  margin-top: 300px;
}

body.menu-open {
  overflow: hidden;
}

.hero-section {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  overflow: hidden;
  color: var(--white);
}

.hero-image {
  position: absolute;
  inset: 0;
  background: var(--image-s01) center / cover;
  opacity: 0;
  transform: scale(1.14);
  transform-origin: center;
  transition:
    opacity 3200ms ease,
    transform 3600ms cubic-bezier(0.19, 1, 0.22, 1);
}

.hero-image.is-open {
  opacity: 1;
  transform: scale(1);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  display: none;
  background: transparent;
  opacity: 0;
  transition: opacity 1500ms ease;
}

.hero-overlay.is-open {
  opacity: 1;
}

.hero-copy {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 20px;
  width: min(820px, calc(100vw - (var(--frame-inset) * 2)));
  min-height: 100vh;
  min-height: 100svh;
  align-content: end;
  padding: 0 0 var(--frame-inset);
  margin-left: var(--frame-inset);
}

.eyebrow,
.section-label {
  color: var(--muted);
  font-family: var(--font-english-body);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 18px;
  text-transform: uppercase;
}

.hero-copy .eyebrow {
  color: var(--muted);
  transition: color 900ms ease;
}

.hero-copy.is-invert .eyebrow {
  color: rgba(255, 255, 255, 0.84);
}

h1,
h2,
h3 {
  font-family: var(--font-english-title);
  font-weight: 400;
  letter-spacing: 0;
}

h1 {
  max-width: 820px;
  color: var(--ink);
  font-size: 58px;
  line-height: 72px;
  transition: color 920ms ease;
  transition-delay: 280ms;
}

.hero-copy h1 {
  color: var(--ink);
}

.hero-copy.is-invert h1 {
  color: var(--white);
}

@media (min-width: 781px) {
  .hero-copy.is-invert h1 {
    color: var(--muted);
  }

  .hero-copy.is-invert .eyebrow {
    color: var(--muted);
  }
}

.word-reveal span {
  display: inline-block;
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 760ms ease,
    transform 900ms cubic-bezier(0.19, 1, 0.22, 1),
    color 900ms ease;
  transition-delay: calc(260ms + (var(--word-index) * 92ms));
}

.hero-copy.is-visible .word-reveal span {
  opacity: 1;
  transform: translateY(0);
}

.text-link,
.slider-controls button,
.primary-button {
  width: max-content;
  color: inherit;
  font-family: var(--font-english-button);
  font-size: 20px;
  font-weight: 300;
  line-height: 20px;
  text-transform: uppercase;
}

.text-link {
  display: inline-block;
  padding: 12px 0;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

.text-link-disabled {
  cursor: default;
}

.intro-section {
  display: grid;
  align-content: start;
  align-items: start;
  gap: 24px;
  min-height: 560px;
  padding: 118px var(--gutter) 96px;
}

.intro-section h2 {
  max-width: 990px;
  font-size: 42px;
  line-height: 62px;
}

.intro-body {
  max-width: 760px;
  color: var(--muted);
  font-size: 16px;
  line-height: 30px;
}

.split-section {
  display: grid;
  grid-template-columns: 520px minmax(0, 560px);
  align-items: center;
  gap: 72px;
  min-height: 780px;
  padding: 110px var(--gutter) 120px;
}

.studio-section {
  grid-template-columns: minmax(0, 540px) 560px;
  min-height: 760px;
}

.section-copy {
  display: grid;
  gap: 24px;
  max-width: 560px;
}

.section-copy h2,
.program-section h2 {
  font-size: 42px;
  line-height: 62px;
}

.section-copy p:not(.section-label),
.program-card p,
.experience-body,
.final-section p {
  color: var(--muted);
  font-family: var(--font-english-body);
  font-size: 16px;
  line-height: 30px;
}

.image-panel {
  position: relative;
  overflow: hidden;
  background: var(--image-s03) center / cover;
  isolation: isolate;
}

.card-image {
  background: var(--image-s04) center / cover;
}

.image-s04-01 {
  background: var(--image-s04-01-d) center / cover;
}

.image-s04-02 {
  background: var(--image-s04-02-d) center / cover;
}

.image-s04-03 {
  background: var(--image-s04-03-d) center / cover;
}

.image-s04-04 {
  background: var(--image-s04-04-d) center / cover;
}

.image-s04-05 {
  background: var(--image-s04-05-d) center / cover;
}

.image-s04-06 {
  background: var(--image-s04-06-d) center / cover;
}

.studio-image {
  background: var(--image-s07) center / cover;
}

.image-panel::before,
.image-panel::after {
  position: absolute;
  display: none;
  content: "";
  background: rgba(255, 255, 255, 0.24);
  transform: rotate(-4deg);
}

.image-panel::before {
  top: 18%;
  left: 8%;
  width: 42%;
  height: 68%;
}

.image-panel::after {
  top: 20%;
  right: 8%;
  width: 58%;
  height: 50%;
  background: rgba(29, 29, 29, 0.11);
  transform: rotate(5deg);
}

.image-panel span {
  position: absolute;
  display: none;
  left: 28px;
  bottom: 26px;
  z-index: 1;
  color: rgba(255, 255, 255, 0.78);
  font-size: 12px;
  line-height: 16px;
  text-transform: uppercase;
}

.tall-panel {
  min-height: 620px;
}

.program-section {
  display: grid;
  align-content: start;
  align-items: start;
  gap: 38px;
  min-height: 880px;
  padding: 110px var(--gutter) 120px;
  background: var(--paper-deep);
  overflow: hidden;
}

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

.section-head h2 {
  max-width: 820px;
}

.slider-controls {
  display: flex;
  gap: 18px;
  align-items: center;
  padding-bottom: 4px;
}

.slider-controls button {
  position: relative;
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  padding: 0;
  border: 0;
  border-radius: 50%;
  color: var(--ink);
  background: var(--sand);
  cursor: pointer;
  transition: background 220ms ease, color 220ms ease, opacity 220ms ease;
}

.slider-controls button:hover {
  opacity: 0.82;
}

.slider-controls button:disabled {
  color: rgba(100, 100, 100, 0.42);
  background: rgba(238, 237, 235, 0.68);
  cursor: default;
  opacity: 1;
}

.slider-controls span {
  position: relative;
  display: block;
  width: 16px;
  height: 16px;
}

.slider-controls span::before {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 11px;
  height: 11px;
  content: "";
  border-top: 1px solid currentColor;
  border-right: 1px solid currentColor;
  transform-origin: center;
}

.slider-controls button:first-child span::before {
  transform: translate(-35%, -50%) rotate(-135deg);
}

.slider-controls button:last-child span::before {
  transform: translate(-65%, -50%) rotate(45deg);
}

.program-track {
  display: flex;
  gap: 24px;
  width: min(1188px, 100%);
  overflow-x: auto;
  overflow-y: hidden;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  overscroll-behavior-x: contain;
  overscroll-behavior-y: auto;
  scrollbar-width: none;
  touch-action: pan-y;
  -webkit-overflow-scrolling: touch;
}

.program-track::-webkit-scrollbar {
  display: none;
}

.program-card {
  flex: 0 0 380px;
  display: grid;
  gap: 18px;
  scroll-snap-align: start;
}

.card-image {
  height: 360px;
}

.program-card h3 {
  font-family: var(--font-english-card-title);
  font-size: 30px;
  font-weight: 400;
  line-height: 38px;
}

.program-card p {
  max-width: 340px;
}

.destinations-stage-section {
  position: relative;
  height: 260vh;
  height: 260svh;
  min-height: 1800px;
  overflow: visible;
  color: var(--white);
  background: #7d6f66;
}

.stage-anchor {
  position: absolute;
  top: 128vh;
  top: 128svh;
  width: 1px;
  height: 1px;
  pointer-events: none;
}

.destinations-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  height: 100svh;
  overflow: hidden;
}

.destinations-layer,
.destinations-panel {
  position: absolute;
  inset: 0;
}

.destinations-solid {
  background: #7d6f66;
  opacity: var(--stage-title-bg, 1);
}

.destinations-stage-image {
  background: var(--image-s06) center / cover;
  opacity: var(--stage-image-opacity, 0);
  transform: scale(var(--stage-image-scale, 1.08));
  transform-origin: center;
}

.destinations-panel {
  z-index: 1;
  display: grid;
  padding: var(--gutter);
  pointer-events: none;
}

.destinations-title-panel {
  place-items: center;
  text-align: center;
  opacity: var(--stage-title-opacity, 1);
  transform: translate3d(0, var(--stage-title-y, 0px), 0);
}

.destinations-title-copy {
  display: grid;
  gap: 34px;
  max-width: 820px;
  justify-items: center;
  align-content: start;
  align-items: start;
}

.destinations-title-panel .section-label {
  color: rgba(255, 255, 255, 0.58);
}

.destinations-title-panel h2 {
  color: var(--white);
  font-size: 58px;
  line-height: 76px;
}

.destinations-detail-panel {
  align-items: end;
  justify-items: end;
  padding-bottom: 122px;
}

.destinations-image-copy {
  display: grid;
  gap: 28px;
  width: min(480px, 100%);
  align-content: start;
  align-items: start;
  margin-right: 88px;
  opacity: var(--stage-copy-opacity, 0);
  pointer-events: auto;
  transform: translate3d(0, var(--stage-copy-y, 42px), 0);
}

.destinations-image-copy h2 {
  color: var(--white);
  font-size: 42px;
  line-height: 56px;
}

.destinations-image-copy p {
  color: rgba(255, 255, 255, 0.78);
  font-family: var(--font-english-body);
  font-size: 18px;
  line-height: 32px;
}

.destinations-image-copy .text-link {
  color: var(--white);
  letter-spacing: 0;
  text-transform: uppercase;
  text-decoration-color: rgba(255, 255, 255, 0.7);
  text-underline-offset: 8px;
}

.exhibition-editorial-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 520px);
  grid-template-rows: auto auto auto;
  gap: 72px 56px;
  padding: 110px var(--gutter) 128px;
  color: var(--ink);
  background: var(--paper);
}

.exhibition-editorial-copy {
  display: grid;
  align-content: start;
  gap: 28px;
  max-width: 560px;
}

.exhibition-editorial-copy h2 {
  font-size: 38px;
  line-height: 54px;
}

.exhibition-editorial-image {
  min-height: 420px;
  background: var(--image-s06) center / cover;
}

.exhibition-editorial-image-02 {
  min-height: 760px;
  background-image: var(--image-s06-02-d);
}

.exhibition-editorial-image-03 {
  grid-row: 2 / span 2;
  min-height: 760px;
  background-image: var(--image-s06-03-d);
}

.exhibition-editorial-image-04 {
  grid-column: 2;
  min-height: 420px;
  background-image: var(--image-s06-04-d);
}

.exhibition-editorial-body {
  display: grid;
  gap: 24px;
  max-width: 460px;
  align-content: end;
  justify-self: end;
  padding-bottom: 24px;
}

.exhibition-editorial-body p {
  color: var(--muted);
  font-family: var(--font-english-body);
  font-size: 16px;
  line-height: 30px;
}

.exhibition-editorial-body .text-link {
  color: var(--ink);
}

.experience-section {
  display: grid;
  align-content: start;
  align-items: start;
  gap: 48px;
  min-height: 900px;
  padding: 110px var(--gutter) 120px;
  color: var(--ink);
  background: var(--white);
}

.experience-section .section-label {
  color: var(--muted);
}

.experience-section h2 {
  max-width: 1120px;
  color: var(--ink);
  font-size: 42px;
  line-height: 62px;
}

.experience-row {
  display: flex;
  gap: 28px;
  overflow: hidden;
}

.dark-image {
  width: 560px;
  height: 360px;
  flex: 0 0 560px;
  background: var(--image-s05) center / cover;
}

.dark-image.image-detail {
  background: var(--image-s05-02-d) center / cover;
}

.dark-image::before {
  display: none;
  background: rgba(177, 170, 159, 0.22);
}

.dark-image::after {
  display: none;
  background: rgba(255, 255, 255, 0.12);
}

.experience-body {
  max-width: 680px;
  color: var(--muted);
}

.studio-image {
  height: 520px;
}

.final-section {
  display: flex;
  min-height: 360px;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
  padding: 96px var(--gutter);
  color: var(--white);
  background: var(--ink);
}

.final-section h2 {
  color: var(--white);
  font-size: 42px;
  line-height: 62px;
}

.final-section p {
  color: rgba(255, 255, 255, 0.76);
  line-height: 28px;
}

.primary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 12px 22px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 999px;
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
}

.site-footer {
  display: grid;
  align-content: start;
  align-items: start;
  grid-template-columns: minmax(0, 1fr) minmax(180px, 0.5fr) minmax(220px, 0.5fr);
  gap: 72px 96px;
  min-height: 320px;
  padding: 72px var(--gutter) 96px;
  background: var(--paper);
}

.footer-brand .brand-logo {
  width: 180px;
  height: 46px;
}

.footer-section {
  display: grid;
  gap: 22px;
  align-content: start;
}

.footer-section h2 {
  font-family: var(--font-english-button);
  font-size: 20px;
  font-weight: 300;
  line-height: 20px;
}

.footer-section nav,
.footer-brand p {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-style: normal;
  font-size: 15px;
  line-height: 24px;
}

.footer-section .social-links {
  display: flex;
  gap: 14px;
  align-items: center;
}

.footer-section .social-links .social-link {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: var(--ink);
  border: 1px solid rgba(100, 100, 100, 0.36);
  border-radius: 50%;
  transition: background 220ms ease, color 220ms ease, border-color 220ms ease;
}

.footer-section .social-links svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.4;
}

.footer-section .social-links path {
  fill: currentColor;
  stroke: none;
}

.footer-copyright {
  grid-column: 1 / -1;
  color: var(--muted);
  font-family: var(--font-english-body);
  font-size: 13px;
  line-height: 18px;
}

.reveal-item {
  opacity: 0;
  transform: translateY(34px);
  transition:
    opacity 900ms ease,
    transform 1000ms cubic-bezier(0.19, 1, 0.22, 1);
}

body.is-ready .reveal-item.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.motion-image {
  will-change: transform;
  transition:
    opacity 900ms ease,
    transform 1000ms cubic-bezier(0.19, 1, 0.22, 1);
}

@media (max-width: 980px) {
  :root {
    --gutter: 28px;
    --frame-inset: 28px;
    --image-s01: var(--image-s01-m);
    --image-s03: var(--image-s03-m);
    --image-s04: var(--image-s04-m);
    --image-s05: var(--image-s05-m);
    --image-s06: var(--image-s06-m);
    --image-s06-02-d: var(--image-s06-02-m);
    --image-s06-03-d: var(--image-s06-03-m);
    --image-s06-04-d: var(--image-s06-04-m);
    --image-s07: var(--image-s07-m);
  }

  .site-header {
    top: var(--gutter);
    grid-template-columns: 28px 1fr 28px;
    gap: 24px;
    justify-content: stretch;
    padding: 0;
  }

  .menu-icon {
    display: inline-flex;
  }

  .brand-lockup {
    justify-self: center;
  }

  .site-nav {
    display: none;
  }

  .hero-section {
    min-height: 100vh;
    min-height: 100svh;
  }

  .hero-copy {
    width: calc(100vw - 56px);
    min-height: 100vh;
    min-height: 100svh;
    padding-bottom: var(--gutter);
  }

  h1 {
    font-size: 46px;
    line-height: 56px;
  }

  .intro-section,
  .split-section,
  .program-section,
  .destinations-stage-section,
  .exhibition-editorial-section,
  .experience-section,
  .final-section,
  .site-footer {
    padding-left: 28px;
    padding-right: 28px;
  }

  .intro-section {
    min-height: 520px;
    padding-top: 64px;
  }

  .intro-section h2,
  .section-copy h2,
  .program-section h2 {
    font-size: 32px;
    line-height: 44px;
  }

  .split-section,
  .studio-section {
    grid-template-columns: 1fr;
    gap: 36px;
    min-height: auto;
    padding-top: 64px;
    padding-bottom: 64px;
  }

  .studio-section .section-copy {
    order: 2;
  }

  .tall-panel,
  .studio-image {
    min-height: 300px;
    height: 300px;
  }

  .program-section,
  .experience-section {
    min-height: auto;
    padding-top: 64px;
    padding-bottom: 72px;
  }

  .section-head {
    display: grid;
  }

  .slider-controls {
    padding-bottom: 0;
  }

  .program-card {
    flex-basis: min(337px, calc(100vw - 56px));
  }

  .card-image {
    height: 300px;
  }

  .destinations-stage-section {
    height: 260vh;
    height: 260svh;
    min-height: 1500px;
    padding-left: 0;
    padding-right: 0;
  }

  .destinations-title-copy {
    gap: 24px;
    max-width: 640px;
  }

  .destinations-title-panel h2 {
    font-size: 38px;
    line-height: 50px;
  }

  .destinations-detail-panel {
    justify-items: start;
    padding-bottom: 72px;
  }

  .destinations-image-copy {
    width: min(100%, 440px);
    gap: 22px;
    margin-right: 0;
  }

  .destinations-image-copy h2 {
    font-size: 34px;
    line-height: 44px;
  }

  .destinations-image-copy p {
    font-size: 16px;
    line-height: 28px;
  }

  .experience-section h2 {
    font-size: 32px;
    line-height: 44px;
  }

  .experience-row {
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .experience-row::-webkit-scrollbar {
    display: none;
  }

  .dark-image {
    width: min(337px, calc(100vw - 56px));
    height: 300px;
    flex-basis: min(337px, calc(100vw - 56px));
    scroll-snap-align: start;
  }

  .final-section {
    display: grid;
    min-height: 340px;
  }

  .final-section h2 {
    font-size: 32px;
    line-height: 42px;
  }

  .site-footer {
    display: grid;
    min-height: 260px;
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .footer-brand .brand-logo {
    width: 160px;
    height: 42px;
  }

  .menu-drawer {
    width: min(100vw, 393px);
  }

  .menu-panel-main {
    width: min(100vw, 393px);
    padding-top: 48px;
  }

  .menu-panel-secondary {
    display: none;
  }

  .menu-close {
    margin-left: 28px;
  }

  .drawer-logo {
    margin-left: 28px;
    margin-right: 28px;
  }

  .drawer-nav > span,
  .drawer-nav > .language-menu {
    padding-left: 28px;
    padding-right: 28px;
  }

  .drawer-language-choice {
    margin-left: 28px;
    margin-right: 28px;
  }

  .exhibition-editorial-section {
    grid-template-columns: 1fr;
    gap: 42px;
    padding: 128px 0 84px;
  }

  .exhibition-editorial-copy,
  .exhibition-editorial-body {
    width: min(100% - 56px, 420px);
    margin-left: auto;
    margin-right: auto;
  }

  .exhibition-editorial-copy,
  .exhibition-editorial-body {
    width: calc(100% - 56px);
    max-width: 520px;
    margin-left: 28px;
    margin-right: 28px;
  }

  .exhibition-editorial-copy h2 {
    font-size: 32px;
    line-height: 44px;
  }

  .exhibition-editorial-image,
  .exhibition-editorial-image-02,
  .exhibition-editorial-image-03,
  .exhibition-editorial-image-04 {
    width: min(100% - 56px, 520px);
    min-height: 0;
    aspect-ratio: 1 / 1.08;
    margin-left: auto;
    margin-right: auto;
    grid-column: auto;
    grid-row: auto;
  }

  .exhibition-editorial-image-03 {
    margin-left: auto;
    margin-right: auto;
  }

  .exhibition-editorial-image-02,
  .exhibition-editorial-image-03 {
    width: min(calc(100% - 112px), 360px);
    aspect-ratio: 0.68 / 1;
  }

  .exhibition-editorial-image-02 {
    margin-left: 28px;
    margin-right: auto;
  }

  .exhibition-editorial-image-03 {
    margin-left: auto;
    margin-right: 28px;
  }

  .exhibition-editorial-image-04 {
    width: calc(100% - 84px);
    aspect-ratio: 1.24 / 1;
    margin-left: 0;
    margin-right: auto;
    order: 4;
  }

  .exhibition-editorial-body {
    justify-self: start;
    padding-bottom: 0;
    order: 5;
  }

  .exhibition-editorial-body p {
    font-size: 16px;
    line-height: 28px;
  }
}
