@import url(https://fonts.googleapis.com/css?family=Playfair+Display);
@import url(https://fonts.googleapis.com/css?family=Open+Sans:400,300,600);

* {
    box-sizing: border-box;
}

html {
    overflow-x: hidden;
    scroll-behavior: smooth;
}

body {
    overflow-x: hidden;
    padding-top: 70px;
    color: #202020;
    background: #f7f6f3;
    font-family: 'Open Sans', "PingFang SC", "Microsoft YaHei", sans-serif;
    font-size: 16px;
    line-height: 1.8;
    letter-spacing: 0;
}

body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
figure {
    margin: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: #202020;
    font-weight: 300;
}

p {
    font-weight: 300;
}

a,
a:link,
a:hover,
a:focus {
    color: inherit;
}

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

section {
    padding-top: 100px;
    padding-bottom: 100px;
}

.eyebrow {
    margin-bottom: 22px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.18em;
}

.eyebrow.dark {
    color: #73706a;
}

.tlinks {
    text-indent: -9999px;
    height: 0;
    line-height: 0;
    font-size: 0;
    overflow: hidden;
}

/* Navbar */

.navbar-fixed-top .nav {
    padding: 15px 0;
}

.navbar-fixed-top .navbar-brand {
    padding: 0 15px;
}

.navbar-brand img {
    max-height: 50px;
}

.navbar > .container .navbar-brand,
.navbar > .container-fluid .navbar-brand {
    margin-left: 0;
}

.navbar-default {
    background-color: rgba(247, 246, 243, 0.94);
    border-color: rgba(247, 246, 243, 0.94);
    backdrop-filter: blur(16px);
    box-shadow: 0 1px 0 rgba(32, 32, 32, 0.04);
}

.navbar-brand img,
.navbar-default .navbar-nav > li {
    opacity: 1;
}

.navbar-default .navbar-nav > li > a {
    color: #1f1f1f;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.08em;
}

.navbar-default .navbar-nav > li > a:hover {
    color: #74716a;
}

.navbar-toggle * {
    transition: all 0.4s ease;
}

.navbar-toggle {
    border: none;
    border-radius: 0;
    color: #fff;
    cursor: pointer;
    height: 50px;
    padding: 16px;
    width: 50px;
    float: right;
    margin-top: 0;
    margin-bottom: 0;
}

.navbar-default .navbar-toggle:hover,
.navbar-default .navbar-toggle:focus {
    background-color: transparent;
}

.navbar-default .navbar-toggle,
.navbar-default .navbar-collapse,
.navbar-default .navbar-form {
    border-color: rgba(247, 246, 243, 0.94);
}

.navbar-toggle span {
    width: 25px;
    height: 3px;
    margin-bottom: 5px;
    background-color: #222;
    display: block;
}

.navbar-toggle span.bar1 {
    transform: rotate(45deg);
    transform-origin: 1px 3px;
    width: 31px;
}

.navbar-toggle span.bar2 {
    transform: rotate(-360deg) scale(0);
}

.navbar-toggle span.bar3 {
    transform: rotate(-45deg);
    transform-origin: 8px 2px;
    width: 31px;
}

.navbar-toggle.collapsed span.bar1,
.navbar-toggle.collapsed span.bar2,
.navbar-toggle.collapsed span.bar3,
.navbar-toggle.collapsed span.bar4 {
    transform: none;
    width: 30px;
}

@media (min-width: 768px) {
    body {
        padding-top: 80px;
    }

    .navbar-fixed-top .navbar-brand {
        padding: 15px 0;
    }
}

/* Hero */

.hero {
    position: relative;
    min-height: calc(100vh - 80px);
    overflow: hidden;
    background: #111;
}

.poster-hero {
    min-height: calc(100vh - 80px);
    height: calc(100vh - 80px);
    background: #e5dfd4;
    isolation: isolate;
    --hero-shift: 0px;
}

.poster-hero:before,
.poster-hero:after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.poster-hero:before {
    z-index: 2;
    background:
        radial-gradient(circle at 48% 14%, rgba(255, 255, 255, 0.46), transparent 34%),
        linear-gradient(100deg, rgba(247, 246, 243, 0.74) 0%, rgba(247, 246, 243, 0.22) 42%, rgba(247, 246, 243, 0) 76%),
        linear-gradient(180deg, rgba(247, 246, 243, 0.42), rgba(247, 246, 243, 0) 36%);
    mix-blend-mode: screen;
    transform-origin: 50% 18%;
    animation: heroAmbientLight 1800ms cubic-bezier(0.16, 1, 0.3, 1) 80ms both;
}

.poster-hero:after {
    z-index: 1;
    background:
        radial-gradient(circle at 50% 16%, transparent 50%, rgba(22, 18, 14, 0.12) 100%),
        linear-gradient(180deg, rgba(15, 12, 9, 0) 58%, rgba(15, 12, 9, 0.18) 100%);
    opacity: 0.62;
}

.poster-hero-image {
    position: relative;
    z-index: 0;
    width: 100%;
    height: auto;
    min-height: calc(100vh - 80px);
    object-fit: cover;
    object-position: top center;
    opacity: 1;
    filter: brightness(0.97) saturate(0.96) contrast(1.01);
    transform: scale(1.014) translate3d(0, calc(7px + var(--hero-shift)), 0);
    transform-origin: 50% 14%;
    will-change: filter, transform;
    animation: heroImageSettle 1700ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

.hero-image {
    position: absolute;
    inset: 0;
    background-image: url('../img/home/hero-focus.jpg');
    background-position: center;
    background-size: cover;
    transform: scale(1.02);
}

.hero-shade {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(10, 10, 10, 0.72) 0%, rgba(10, 10, 10, 0.36) 42%, rgba(10, 10, 10, 0.12) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    width: min(1120px, calc(100% - 48px));
    margin: 0 auto;
    padding-top: min(18vh, 150px);
    color: #fff;
}

.hero h1 {
    max-width: 760px;
    color: #fff;
    font-family: "PingFang SC", "Microsoft YaHei", sans-serif;
    font-size: clamp(42px, 6vw, 78px);
    font-weight: 300;
    line-height: 1.08;
}

.hero-copy {
    max-width: 520px;
    margin-top: 34px;
    color: rgba(255, 255, 255, 0.78);
    font-size: 16px;
    line-height: 2;
}

.hero-actions {
    display: flex;
    gap: 28px;
    margin-top: 42px;
}

.line-link {
    position: relative;
    padding-bottom: 8px;
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-decoration: none;
}

.line-link:hover,
.line-link:focus {
    color: #fff;
    text-decoration: none;
}

.line-link:after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 1px;
    background: rgba(255, 255, 255, 0.72);
}

.scroll-note {
    position: absolute;
    right: 42px;
    bottom: 36px;
    z-index: 4;
    color: rgba(20, 20, 20, 0.5);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.22em;
    writing-mode: vertical-rl;
    opacity: 0;
    animation: scrollNoteReveal 900ms cubic-bezier(0.16, 1, 0.3, 1) 1200ms both;
}

.hero:not(.poster-hero) .scroll-note {
    color: rgba(255, 255, 255, 0.58);
}

/* Statement */

.intro-statement {
    background: #f7f6f3;
}

.statement-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    gap: 80px;
    align-items: start;
}

.statement-grid h2,
.section-head h2,
.visit-title h2 {
    max-width: 640px;
    font-size: clamp(32px, 4vw, 58px);
    line-height: 1.22;
}

.statement-copy {
    padding-top: 45px;
}

.statement-copy p,
.section-head p,
.feature-panel p,
.sequence-copy p,
.visit-card p {
    color: #4a4844;
    font-family: "PingFang SC", "Microsoft YaHei", sans-serif;
    font-size: 15px;
    line-height: 2.05;
}

/* Feature photo */

.feature-photo {
    position: relative;
    padding: 0;
    min-height: 92vh;
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    align-items: stretch;
}

.feature-media {
    min-height: 92vh;
}

.feature-media img {
    width: 100%;
    height: 100%;
    min-height: 92vh;
    object-fit: cover;
}

.feature-panel {
    position: absolute;
    left: 8vw;
    bottom: 8vw;
    width: min(420px, calc(100% - 48px));
    padding: 38px 42px;
    background: rgba(247, 246, 243, 0.9);
    backdrop-filter: blur(18px);
}

.feature-panel span,
.sequence-card span {
    display: block;
    margin-bottom: 22px;
    color: #77736b;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.16em;
}

.feature-panel h2 {
    margin-bottom: 24px;
    font-size: 34px;
    line-height: 1.28;
}

/* Sequence */

.space-sequence {
    background: #151515;
    color: #f1eee7;
    padding-top: 8vw;
    padding-bottom: 8vw;
}

.sequence-grid {
    display: grid;
    grid-template-columns: 1fr 1.25fr;
    grid-template-rows: auto auto;
    gap: 24px;
    width: min(1400px, calc(100% - 48px));
    margin: 0 auto;
}

.sequence-card {
    position: relative;
    min-height: 520px;
    overflow: hidden;
    background: #222;
}

.sequence-card.tall {
    grid-row: span 2;
}

.sequence-card img {
    width: 100%;
    height: 100%;
    min-height: 520px;
    object-fit: cover;
    opacity: 0.88;
}

.sequence-card div {
    position: absolute;
    left: 34px;
    right: 34px;
    bottom: 32px;
}

.sequence-card h3 {
    color: #fff;
    font-size: 30px;
    line-height: 1.3;
}

.sequence-copy {
    min-height: 250px;
    display: flex;
    align-items: center;
    padding: 40px 48px;
    background: #eeeae2;
}

.sequence-copy p {
    color: #36332f;
}

/* Gallery */

.gallery-section {
    overflow: hidden;
    background: #f7f6f3;
}

.section-head {
    max-width: 760px;
    margin-bottom: 62px;
}

.section-head-action {
    max-width: none;
    display: grid;
    grid-template-columns: minmax(0, 760px) auto;
    gap: clamp(28px, 6vw, 90px);
    align-items: end;
}

.section-head p {
    max-width: 620px;
    margin-top: 26px;
}

.album-entry-button {
    position: relative;
    display: inline-flex;
    align-items: center;
    min-width: 168px;
    min-height: 52px;
    margin-bottom: 4px;
    padding: 0 54px 0 22px;
    overflow: hidden;
    border: 1px solid rgba(32, 32, 32, 0.3);
    border-radius: 2px;
    background: rgba(247, 246, 243, 0.38);
    color: #202020;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-align: left;
    line-height: 1;
    transition: border-color 0.25s ease, background 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

.album-entry-button:before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(110deg, transparent, rgba(255, 255, 255, 0.52), transparent);
    opacity: 0;
    transform: translateX(-80%);
    transition: opacity 0.25s ease, transform 0.45s ease;
}

.album-entry-button:after {
    content: "";
    position: absolute;
    top: 50%;
    right: 20px;
    width: 16px;
    height: 16px;
    border-top: 1px solid currentColor;
    border-right: 1px solid currentColor;
    transform: translateY(-50%) rotate(45deg);
    transition: transform 0.25s ease;
}

.album-entry-button:hover,
.album-entry-button:focus {
    border-color: rgba(32, 32, 32, 0.64);
    background: rgba(255, 255, 255, 0.42);
    box-shadow: 0 12px 28px rgba(35, 34, 31, 0.08);
    outline: none;
    transform: translateY(-2px);
}

.album-entry-button:hover:before,
.album-entry-button:focus:before {
    opacity: 1;
    transform: translateX(80%);
}

.album-entry-button:hover:after,
.album-entry-button:focus:after {
    transform: translate(4px, -50%) rotate(45deg);
}

.photo-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr 0.85fr;
    grid-auto-rows: 360px;
    gap: 18px;
    width: min(1480px, calc(100% - 48px));
    margin: 0 auto;
}

.photo-tile {
    position: relative;
    overflow: hidden;
    background: #d8d4cd;
    cursor: pointer;
}

.photo-tile.large {
    grid-row: span 2;
}

.photo-tile img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease, opacity 0.8s ease;
}

.photo-tile:hover img {
    transform: scale(1.035);
    opacity: 0.9;
}

.photo-tile figcaption {
    position: absolute;
    left: 22px;
    bottom: 18px;
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-shadow: 0 1px 18px rgba(0, 0, 0, 0.45);
}

/* Philosophy */

.philosophy-strip {
    padding-top: 70px;
    padding-bottom: 70px;
    background: #f7f6f3;
}

.philosophy-link {
    position: relative;
    overflow: hidden;
    display: grid;
    grid-template-columns: 0.65fr 1fr auto;
    gap: 30px;
    align-items: center;
    min-height: 230px;
    padding: 48px 58px;
    background:
        radial-gradient(circle at 18% 24%, rgba(255, 255, 255, 0.16) 0 1px, transparent 2px),
        radial-gradient(circle at 72% 30%, rgba(255, 255, 255, 0.22) 0 1px, transparent 2px),
        radial-gradient(circle at 48% 78%, rgba(255, 255, 255, 0.14) 0 1px, transparent 2px),
        linear-gradient(135deg, #111113 0%, #1c1c1d 52%, #0b0b0d 100%);
    color: #f6f2ea;
    text-decoration: none;
    transition: transform 0.35s ease, background 0.35s ease;
}

.philosophy-link:before,
.philosophy-link:after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.philosophy-link:before {
    background-image:
        radial-gradient(circle, rgba(255, 255, 255, 0.95) 0 1px, transparent 1.7px),
        radial-gradient(circle, rgba(255, 255, 255, 0.62) 0 1px, transparent 1.6px),
        radial-gradient(circle, rgba(255, 255, 255, 0.4) 0 1px, transparent 1.8px);
    background-size: 113px 97px, 151px 131px, 211px 167px;
    background-position: 18px 12px, 67px 43px, 11px 83px;
    opacity: 0.38;
    animation: star-twinkle 4.8s ease-in-out infinite alternate;
}

.philosophy-link:after {
    background:
        radial-gradient(circle at 78% 22%, rgba(255, 255, 255, 0.18), transparent 11rem),
        radial-gradient(circle at 20% 86%, rgba(255, 255, 255, 0.1), transparent 14rem);
    opacity: 0.75;
}

.philosophy-link:hover,
.philosophy-link:focus {
    color: #f6f2ea;
    text-decoration: none;
    transform: translateY(-3px);
}

.philosophy-link span,
.philosophy-link strong,
.philosophy-link small,
.philosophy-link em {
    position: relative;
    z-index: 1;
}

.philosophy-link span,
.philosophy-link em {
    color: rgba(246, 242, 234, 0.62);
    font-size: 13px;
    font-style: normal;
    font-weight: 600;
    letter-spacing: 0.12em;
}

.philosophy-link strong {
    color: #f6f2ea;
    font-size: clamp(38px, 5vw, 72px);
    font-weight: 300;
    line-height: 1.1;
}

.philosophy-link small {
    color: rgba(246, 242, 234, 0.72);
    font-size: 17px;
    font-weight: 300;
    line-height: 1.8;
}

.philosophy-link em {
    position: relative;
    justify-self: end;
    padding: 17px 58px 17px 24px;
    border: 1px solid rgba(246, 242, 234, 0.38);
    color: #f6f2ea;
    white-space: nowrap;
}

.philosophy-link em:after {
    content: "";
    position: absolute;
    top: 50%;
    right: 22px;
    width: 18px;
    height: 18px;
    border-top: 1px solid currentColor;
    border-right: 1px solid currentColor;
    transform: translateY(-50%) rotate(45deg);
}

/* Story */

.story-section {
    background: #f7f6f3;
    padding-top: 72px;
    padding-bottom: 86px;
}

.story-head {
    margin-bottom: 0;
}

.story-layout {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
    width: min(1320px, calc(100% - 48px));
    margin: 0 auto;
    align-items: stretch;
}

.story-card,
.object-card {
    position: relative;
    display: flex;
    min-height: 100%;
    flex-direction: column;
    overflow: visible;
}

.story-card img,
.object-card img {
    width: 100%;
    height: clamp(360px, 38vw, 540px);
    flex: 1 1 auto;
    object-fit: contain;
    background: #dedbd4;
}

.story-card figcaption,
.object-card figcaption,
.story-main figcaption {
    margin-top: 12px;
    color: #4b4944;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-shadow: none;
}

.story-section .story-card figcaption,
.merch-section .object-card figcaption {
    display: none;
}

.album-card,
.photo-tile {
    cursor: pointer;
}

.album-card:after,
.photo-tile:after {
    content: "VIEW ALBUM";
    position: absolute;
    right: 14px;
    top: 14px;
    padding: 7px 10px;
    background: rgba(20, 20, 20, 0.72);
    color: #fff;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.12em;
    opacity: 0;
    transition: opacity 0.25s ease;
}

.album-card:hover:after,
.photo-tile:hover:after {
    opacity: 1;
}

/* Motion system */

.motion-ready .statement-grid,
.motion-ready .feature-media,
.motion-ready .feature-panel,
.motion-ready .sequence-card,
.motion-ready .sequence-copy,
.motion-ready .section-head,
.motion-ready .photo-tile,
.motion-ready .philosophy-link,
.motion-ready .visit-title,
.motion-ready .visit-card {
    opacity: 0;
    filter: blur(12px);
    transform: translate3d(0, 46px, 0) scale(0.985);
    transition:
        opacity 900ms cubic-bezier(0.16, 1, 0.3, 1),
        filter 900ms cubic-bezier(0.16, 1, 0.3, 1),
        transform 900ms cubic-bezier(0.16, 1, 0.3, 1);
    transition-delay: var(--reveal-delay, 0ms);
    will-change: opacity, filter, transform;
}

.motion-ready .feature-media,
.motion-ready .sequence-card,
.motion-ready .photo-tile {
    transform: translate3d(0, 56px, 0) scale(0.975);
}

.motion-ready .is-inview {
    opacity: 1;
    filter: blur(0);
    transform: translate3d(0, 0, 0) scale(1);
}

.motion-ready .feature-media img,
.motion-ready .sequence-card img,
.motion-ready .photo-tile img {
    transform: translate3d(0, var(--media-shift, 0px), 0) scale(1.035);
    transition:
        opacity 0.8s ease,
        transform 1.1s cubic-bezier(0.16, 1, 0.3, 1);
}

.motion-ready .feature-media.is-inview img,
.motion-ready .sequence-card.is-inview img,
.motion-ready .photo-tile.is-inview img {
    transform: translate3d(0, var(--media-shift, 0px), 0) scale(1);
}

.motion-ready .photo-tile:hover img,
.motion-ready .sequence-card:hover img {
    transform: translate3d(0, var(--media-shift, 0px), 0) scale(1.035);
}

/* Designed objects */

.merch-section {
    background: #ebe7df;
    padding-top: 86px;
    padding-bottom: 86px;
}

.objects-head {
    max-width: 720px;
    margin-bottom: 0;
}

.objects-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 22px;
    align-items: stretch;
    max-width: 1040px;
}

.object-card-wide img {
    height: auto;
    min-height: 0;
    aspect-ratio: 900 / 383;
    object-fit: cover;
    background: #f7f6f3;
}

.object-card img {
    transition: transform 0.8s ease, opacity 0.8s ease;
}

.object-card:hover img {
    transform: translateY(-3px);
    opacity: 0.92;
}

/* Album modal */

.album-open {
    overflow: hidden;
}

.album-modal {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 2147483640;
}

.album-modal.is-open {
    display: block;
}

.album-content {
    position: fixed;
    inset: 0;
    min-height: 100vh;
    background: rgba(12, 12, 12, 0.96);
    border: none;
    border-radius: 0;
    box-shadow: none;
}

.album-stage {
    position: fixed;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 72px 90px 92px;
}

.album-stage img {
    max-width: 100%;
    max-height: calc(100vh - 170px);
    object-fit: contain;
}

.album-stage p {
    position: fixed;
    left: 42px;
    bottom: 30px;
    color: rgba(255, 255, 255, 0.78);
    font-family: "PingFang SC", "Microsoft YaHei", sans-serif;
    font-size: 14px;
}

.album-stage span {
    position: fixed;
    right: 42px;
    bottom: 30px;
    color: rgba(255, 255, 255, 0.58);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.14em;
}

.album-close {
    position: fixed;
    top: 22px;
    right: 30px;
    z-index: 10;
    border: none;
    background: transparent;
    color: #fff;
    font-size: 48px;
    font-weight: 200;
    line-height: 1;
}

.album-control {
    position: fixed;
    top: 50%;
    z-index: 10;
    width: 54px;
    height: 54px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    background: rgba(255, 255, 255, 0.03);
    transform: translateY(-50%);
}

.album-control:before {
    content: "";
    position: absolute;
    top: 17px;
    width: 18px;
    height: 18px;
    border-top: 1px solid #fff;
    border-left: 1px solid #fff;
}

.album-prev {
    left: 30px;
}

.album-next {
    right: 30px;
}

.album-prev:before {
    left: 20px;
    transform: rotate(-45deg);
}

.album-next:before {
    right: 20px;
    transform: rotate(135deg);
}

/* Visit */

.visit-section {
    background: #ebe7df;
}

.visit-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(260px, 0.8fr) minmax(260px, 0.8fr);
    gap: 42px;
    align-items: start;
}

.visit-card {
    padding-top: 12px;
}

.visit-card h4 {
    margin-bottom: 24px;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.14em;
}

.visit-card p + p {
    margin-top: 10px;
}

.visit-card a {
    text-decoration: underline;
    text-underline-offset: 4px;
}

.visit-search {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    min-width: min(100%, 330px);
    margin: 20px 0 14px;
    padding: 14px 18px 14px 44px;
    overflow: hidden;
    border: 1px solid rgba(35, 34, 31, 0.34);
    background: rgba(247, 246, 243, 0.78);
    color: #20201d;
    box-shadow: 0 10px 26px rgba(35, 34, 31, 0.07);
    animation: visit-pulse 3.8s ease-in-out infinite;
}

.visit-search:before {
    content: "";
    position: absolute;
    left: 17px;
    top: 50%;
    width: 12px;
    height: 12px;
    border: 1px solid currentColor;
    border-radius: 50%;
    transform: translateY(-50%);
}

.visit-search:after {
    content: "";
    position: absolute;
    inset: -1px auto -1px 0;
    width: 52px;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.62), rgba(255, 255, 255, 0));
    animation: searchSweep 3.6s ease-in-out infinite;
}

.visit-search span {
    color: #625f58;
    font-family: "PingFang SC", "Microsoft YaHei", sans-serif;
    font-size: 13px;
    font-weight: 300;
}

.visit-search b {
    position: relative;
    z-index: 1;
    font-size: 18px;
    line-height: inherit;
    letter-spacing: 0.08em;
}

@keyframes star-twinkle {
    0% {
        opacity: 0.22;
        transform: translate3d(0, 0, 0);
    }

    45% {
        opacity: 0.52;
    }

    100% {
        opacity: 0.34;
        transform: translate3d(12px, -8px, 0);
    }
}

@keyframes searchSweep {
    0% {
        transform: translateX(-64px);
        opacity: 0;
    }

    18% {
        opacity: 1;
    }

    52% {
        opacity: 0.85;
    }

    100% {
        transform: translateX(350px);
        opacity: 0;
    }
}

@keyframes visit-pulse {
    0%,
    100% {
        border-color: rgba(35, 34, 31, 0.28);
        box-shadow: 0 10px 26px rgba(35, 34, 31, 0.06);
    }

    50% {
        border-color: rgba(35, 34, 31, 0.58);
        box-shadow: 0 14px 34px rgba(35, 34, 31, 0.12);
    }
}

@keyframes heroImageSettle {
    0% {
        filter: brightness(0.94) saturate(0.9) contrast(0.99);
        transform: scale(1.014) translate3d(0, calc(7px + var(--hero-shift)), 0);
    }

    100% {
        filter: brightness(1) saturate(1) contrast(1);
        transform: scale(1) translate3d(0, var(--hero-shift), 0);
    }
}

@keyframes heroAmbientLight {
    0% {
        opacity: 0.84;
        transform: scale(1.04);
    }

    54% {
        opacity: 0.3;
    }

    100% {
        opacity: 0;
        transform: scale(1);
    }
}

@keyframes scrollNoteReveal {
    0% {
        opacity: 0;
        filter: blur(3px);
    }

    100% {
        opacity: 1;
        filter: blur(0);
    }
}

@media (prefers-reduced-motion: reduce) {
    .poster-hero:before,
    .poster-hero-image,
    .scroll-note,
    .visit-search,
    .visit-search:after {
        animation: none;
    }

    .poster-hero-image,
    .scroll-note {
        opacity: 1;
        filter: none;
        transform: none;
    }

    .poster-hero:before {
        display: none;
    }

    .visit-search:after {
        display: none;
    }
}

/* Footer */

footer {
    padding-top: 70px;
    padding-bottom: 85px;
    background: #f7f6f3;
}

footer img {
    display: inline-block;
}

footer hr {
    width: 80%;
    margin: 36px auto 22px;
    border: none;
    border-top: 1px solid #d8d4cd;
}

footer p {
    color: #68645d;
    font-family: 'Open Sans', sans-serif;
    font-size: 0.72em;
    font-weight: 300;
    text-transform: uppercase;
}

.cd-top {
    display: inline-block;
    height: 40px;
    width: 40px;
    position: fixed;
    bottom: 40px;
    right: 10px;
    overflow: hidden;
    text-indent: 100%;
    white-space: nowrap;
    background: url(../img/arrow-up.png) no-repeat center 50%;
    background-size: cover;
    visibility: hidden;
    opacity: 0;
    transition: opacity .3s 0s, visibility 0s .3s;
}

.cd-top.cd-is-visible,
.cd-top.cd-fade-out,
.no-touch .cd-top:hover {
    transition: opacity .3s 0s, visibility 0s 0s;
}

.cd-top.cd-is-visible {
    visibility: visible;
    opacity: 1;
}

.cd-top.cd-fade-out {
    opacity: .5;
}

.no-touch .cd-top:hover {
    background-color: transparent;
    opacity: 1;
}

@media only screen and (min-width: 768px) {
    .cd-top {
        right: 20px;
        bottom: 20px;
    }
}

@media only screen and (min-width: 1024px) {
    .cd-top {
        height: 60px;
        width: 60px;
        right: 30px;
        bottom: 30px;
    }
}

@media (max-width: 991px) {
    section {
        padding-top: 76px;
        padding-bottom: 76px;
    }

    .statement-grid,
    .visit-grid {
        grid-template-columns: 1fr;
        gap: 34px;
    }

    .statement-copy {
        padding-top: 0;
    }

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

    .sequence-card.tall {
        grid-row: auto;
    }

    .photo-grid {
        grid-template-columns: 1fr 1fr;
        grid-auto-rows: 300px;
    }

    .photo-tile.large {
        grid-column: span 2;
        grid-row: span 1;
    }

    .philosophy-link {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .philosophy-link em {
        justify-self: start;
    }

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

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

@media (max-width: 767px) {
    body {
        padding-top: 50px;
        font-size: 15px;
    }

    .navbar-fixed-top .nav {
        padding: 0 0 12px;
    }

    .navbar-brand img {
        max-height: 42px;
    }

    .navbar-default .navbar-nav > li > a {
        padding: 13px 15px;
    }

    .hero {
        min-height: calc(100vh - 50px);
    }

    .poster-hero {
        min-height: 0;
        height: auto;
    }

    .poster-hero-image {
        width: 100%;
        height: auto;
        min-height: 0;
        object-fit: contain;
        object-position: top center;
    }

    .hero-image {
        background-position: 58% center;
    }

    .hero-shade {
        background: linear-gradient(180deg, rgba(8, 8, 8, 0.18) 0%, rgba(8, 8, 8, 0.78) 100%);
    }

    .hero-content {
        width: calc(100% - 36px);
        min-height: calc(100vh - 50px);
        display: flex;
        flex-direction: column;
        justify-content: flex-end;
        padding-top: 0;
        padding-bottom: 80px;
    }

    .hero h1 {
        font-size: 42px;
    }

    .hero-copy {
        margin-top: 24px;
        font-size: 14px;
        line-height: 1.9;
    }

    .hero-actions {
        margin-top: 30px;
    }

    .scroll-note {
        display: none;
    }

    .statement-grid h2,
    .section-head h2,
    .visit-title h2 {
        font-size: 34px;
    }

    .feature-photo,
    .feature-media,
    .feature-media img {
        min-height: auto;
    }

    .feature-media img {
        height: 72vh;
    }

    .feature-panel {
        position: relative;
        left: auto;
        bottom: auto;
        width: auto;
        margin: -74px 18px 0;
        padding: 28px 26px;
    }

    .feature-panel h2 {
        font-size: 28px;
    }

    .sequence-grid {
        width: calc(100% - 28px);
        gap: 14px;
    }

    .sequence-card,
    .sequence-card img {
        min-height: 460px;
    }

    .sequence-card.wide,
    .sequence-card.wide img {
        min-height: 300px;
    }

    .sequence-card div {
        left: 22px;
        right: 22px;
        bottom: 24px;
    }

    .sequence-card h3 {
        font-size: 24px;
    }

    .sequence-copy {
        min-height: auto;
        padding: 28px 26px;
    }

    .photo-grid {
        width: calc(100% - 28px);
        grid-template-columns: 1fr;
        grid-auto-rows: 420px;
        gap: 14px;
    }

    .photo-tile.large {
        grid-column: auto;
    }

    .photo-tile.large,
    .photo-tile:first-child {
        grid-row: auto;
    }

    .photo-tile.large {
        height: 300px;
    }

    .section-head {
        margin-bottom: 40px;
    }

    .section-head-action {
        grid-template-columns: 1fr;
        gap: 22px;
        align-items: start;
    }

    .album-entry-button {
        justify-self: start;
        width: min(100%, 248px);
        min-height: 50px;
        margin-bottom: 0;
        padding-left: 20px;
        background: rgba(247, 246, 243, 0.52);
    }

    .story-section .album-entry-button,
    .merch-section .album-entry-button {
        width: min(100%, 248px);
    }

    .philosophy-link strong {
        font-size: 40px;
    }

    .philosophy-link {
        min-height: 0;
        padding: 34px 26px;
    }

    .philosophy-link small {
        font-size: 15px;
    }

    .philosophy-link em {
        width: 100%;
        margin-top: 10px;
    }

    .story-layout {
        width: calc(100% - 28px);
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .story-card img,
    .object-card img {
        height: clamp(340px, 118vw, 500px);
    }

    .merch-section {
        padding-top: 76px;
        padding-bottom: 76px;
    }

    .objects-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .album-card:after,
    .photo-tile:after {
        opacity: 1;
        top: 10px;
        right: 10px;
        font-size: 9px;
        padding: 6px 8px;
    }

    .album-stage {
        padding: 58px 18px 86px;
    }

    .album-stage img {
        max-height: calc(100vh - 150px);
    }

    .album-stage p {
        left: 18px;
        right: 18px;
        bottom: 42px;
        font-size: 13px;
    }

    .album-stage span {
        left: 18px;
        right: auto;
        bottom: 18px;
    }

    .album-close {
        top: 14px;
        right: 16px;
        font-size: 40px;
    }

    .album-control {
        top: auto;
        bottom: 16px;
        width: 44px;
        height: 44px;
        transform: none;
    }

    .album-prev {
        left: auto;
        right: 72px;
    }

    .album-next {
        right: 18px;
    }

    .visit-grid {
        gap: 28px;
    }

    footer {
        padding-bottom: 60px;
    }
}
