@keyframes scroll-bounce {
  0%, 100% {
    transform: translate(-50%, 0);
  }
  50% {
    transform: translate(-50%, 8px);
  }
}
.scroll-track {
  --scene-scroll: 185vh;
}

.scroll-anchor {
  height: var(--scene-scroll, 100vh);
  pointer-events: none;
}

.photo-backdrop {
  position: fixed;
  inset: 0;
  z-index: 0;
  background: #000;
  transform: translateZ(0);
}

.photo-layer {
  position: absolute;
  inset: 0;
  opacity: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 1;
  transform: translateZ(0);
  will-change: opacity;
}
.photo-layer.is-active {
  pointer-events: auto;
}

.photo-layer[data-layer=cover] {
  z-index: 4;
}

.photo-layer[data-layer=intro] {
  z-index: 3;
}

.photo-layer[data-layer=legacy] {
  z-index: 2;
}

.photo-layer > img {
  filter: none !important;
  opacity: 1;
  transform: scale3d(1.03, 1.03, 1);
  transform-origin: center center;
  backface-visibility: hidden;
  will-change: transform;
}

.photo-layer::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 10;
  pointer-events: none;
  background: rgba(0, 0, 0, 0.22);
}

.photo-layer[data-layer=intro]::after,
.photo-layer[data-layer=legacy]::after {
  background: rgba(0, 0, 0, 0.32);
}

.photo-layer > .content {
  backface-visibility: hidden;
  will-change: transform, opacity;
}

@keyframes hero-fade {
  0% {
    opacity: 0;
  }
  6% {
    opacity: 0.12;
  }
  16% {
    opacity: 1;
  }
  84% {
    opacity: 1;
  }
  94% {
    opacity: 0.12;
  }
  100% {
    opacity: 0;
  }
}
@keyframes hero-zoom {
  from {
    transform: scale3d(1.03, 1.03, 1);
  }
  to {
    transform: scale3d(1.18, 1.18, 1);
  }
}
@keyframes hero-text {
  0% {
    opacity: 0;
    transform: translate3d(0, 40px, 0);
  }
  6% {
    opacity: 0.12;
  }
  16% {
    opacity: 1;
  }
  84% {
    opacity: 1;
  }
  94% {
    opacity: 0.12;
  }
  100% {
    opacity: 0;
    transform: translate3d(0, -40px, 0);
  }
}
@supports (animation-timeline: view()) {
  body {
    timeline-scope: --hero-cover, --hero-intro, --hero-legacy;
  }
  .scroll-anchor[data-layer=cover] {
    view-timeline: --hero-cover block;
  }
  .scroll-anchor[data-layer=intro] {
    view-timeline: --hero-intro block;
  }
  .scroll-anchor[data-layer=legacy] {
    view-timeline: --hero-legacy block;
  }
  .photo-layer,
  .photo-layer > img,
  .photo-layer > .content {
    animation-duration: auto;
    animation-timing-function: linear;
    animation-fill-mode: both;
  }
  .photo-layer {
    animation-name: hero-fade;
  }
  .photo-layer > img {
    animation-name: hero-zoom;
  }
  .photo-layer > .content {
    animation-name: hero-text;
  }
  .photo-layer[data-layer=cover],
  .photo-layer[data-layer=cover] > img,
  .photo-layer[data-layer=cover] > .content {
    animation-timeline: --hero-cover;
  }
  .photo-layer[data-layer=intro],
  .photo-layer[data-layer=intro] > img,
  .photo-layer[data-layer=intro] > .content {
    animation-timeline: --hero-intro;
  }
  .photo-layer[data-layer=legacy],
  .photo-layer[data-layer=legacy] > img,
  .photo-layer[data-layer=legacy] > .content {
    animation-timeline: --hero-legacy;
  }
}
@media (prefers-reduced-motion: reduce) {
  .photo-layer,
  .photo-layer > img,
  .photo-layer > .content {
    animation: none !important;
  }
  .photo-layer > img,
  .photo-layer > .content {
    transform: none !important;
  }
  .photo-layer.is-active {
    opacity: 1;
  }
}
@media (max-width: 1139px) {
  .home #hva-du-kan-forvente {
    scroll-margin-top: 76px;
  }
  .home .photo-layer {
    width: 100%;
    height: 100vh;
  }
  .home .photo-layer .overlay-top {
    width: 100%;
    height: 300px;
    position: absolute;
    top: 0;
    left: 0;
    pointer-events: none;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.55), transparent);
    z-index: 40;
  }
  .home .photo-layer img {
    display: block;
    width: 100%;
    height: 100vh;
    object-fit: cover;
    z-index: 9;
  }
  .home .photo-layer .overlay-bottom {
    width: 100%;
    height: 90%;
    position: absolute;
    bottom: 0;
    left: 0;
    pointer-events: none;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.65), transparent);
    z-index: 40;
  }
  .home .photo-layer .content {
    position: absolute;
    inset: 0;
    z-index: 50;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 24px;
    color: var(--cream);
  }
  .home .photo-layer .content h2 {
    font-family: var(--font-serif);
    font-weight: 500;
    font-size: 30px;
    line-height: 1.3;
    margin-bottom: 20px;
  }
  .home .photo-layer .content .hero-divider {
    display: block;
    width: 180px;
    height: auto;
    margin-bottom: 24px;
  }
  .home [data-layer=cover] img {
    filter: brightness(78%);
  }
  .home [data-layer=cover] .content {
    align-items: center;
    text-align: center;
  }
  .home [data-layer=cover] .content .text {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .home [data-layer=cover] .content .text h1 {
    font-family: var(--font-serif);
    font-weight: 500;
    font-size: 30px;
    line-height: 1.3;
    margin-bottom: 22px;
  }
  .home [data-layer=cover] .content .text .hero-divider {
    display: block;
    width: 200px;
    height: auto;
    margin-bottom: 30px;
  }
  .home [data-layer=cover] .content .text .button {
    padding: 11px 24px;
  }
  .home [data-layer=cover] .content .scroll-indicator {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--cream);
    font-size: 18px;
    animation: scroll-bounce 2s ease-in-out infinite;
  }
  .home [data-layer=intro] img {
    filter: brightness(70%);
  }
  .home [data-layer=legacy] img {
    filter: brightness(70%);
  }
  .home [data-layer=legacy] .content {
    align-items: flex-end;
    text-align: right;
  }
  .home .story {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    background: var(--primary);
  }
  .home .story .story-panel {
    order: 2;
    padding: 48px 24px;
    color: var(--cream);
  }
  .home .story .story-panel h2 {
    font-family: var(--font-serif);
    font-weight: 500;
    font-size: 30px;
    line-height: 1.3;
    margin-bottom: 20px;
  }
  .home .story .story-panel .hero-divider {
    display: block;
    height: auto;
    margin-bottom: 24px;
  }
  .home .story .story-panel p {
    font-size: 16px;
    line-height: 1.6;
    opacity: 0.92;
    max-width: 480px;
    margin-bottom: 28px;
  }
  .home .story .story-photo {
    order: 1;
    width: 100%;
    height: 280px;
    overflow: hidden;
  }
  .home .story .story-photo img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    will-change: transform;
  }
  .home .cta {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 100vh;
  }
  .home .cta .overlay-top {
    width: 100%;
    height: 300px;
    position: absolute;
    top: 0;
    left: 0;
    pointer-events: none;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.55), transparent);
    z-index: 40;
  }
  .home .cta img {
    display: block;
    width: 100%;
    height: 100vh;
    filter: brightness(65%);
    object-fit: cover;
    z-index: 9;
  }
  .home .cta .overlay-bottom {
    width: 100%;
    height: 90%;
    position: absolute;
    bottom: 0;
    left: 0;
    pointer-events: none;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
    z-index: 40;
  }
  .home .cta .content {
    position: absolute;
    inset: 0;
    z-index: 50;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 24px;
    color: var(--cream);
  }
  .home .cta .content h2 {
    font-family: var(--font-serif);
    font-weight: 500;
    font-size: 30px;
    line-height: 1.3;
    margin-bottom: 16px;
  }
  .home .cta .content p {
    font-size: 16px;
    line-height: 1.6;
    opacity: 0.92;
    max-width: 420px;
    margin-bottom: 24px;
  }
  .home .foundation {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background: var(--primary);
    padding: 60px 24px 120px;
    gap: 32px;
  }
  .home .foundation .foundation-panel {
    color: var(--cream);
  }
  .home .foundation .foundation-panel h2 {
    font-family: var(--font-serif);
    font-weight: 500;
    font-size: 30px;
    line-height: 1.3;
    margin-bottom: 20px;
  }
  .home .foundation .foundation-panel .hero-divider {
    display: block;
    height: auto;
    margin: 0 auto 24px;
  }
  .home .foundation .foundation-panel p {
    font-size: 16px;
    line-height: 1.6;
    opacity: 0.92;
    margin-bottom: 28px;
  }
  .home .foundation .foundation-photo {
    width: min(260px, 80%);
  }
  .home .foundation .foundation-photo img {
    display: block;
    width: 100%;
    aspect-ratio: 522/745;
    object-fit: cover;
    clip-path: url("#foundation-arch-clip");
    filter: drop-shadow(0 20px 45px rgba(0, 0, 0, 0.35));
  }
  .home .glimpse {
    position: relative;
    z-index: 1;
    background: var(--primary);
    padding: 60px 24px 96px;
    text-align: center;
  }
  .home .glimpse h2 {
    font-family: var(--font-serif);
    font-weight: 500;
    color: var(--cream);
    font-size: 30px;
    line-height: 1.3;
    margin-bottom: 32px;
  }
  .home .glimpse .glimpse-inner {
    text-align: left;
  }
  .home .glimpse .glimpse-gallery {
    overflow: hidden;
    margin-bottom: 44px;
  }
  .home .glimpse .glimpse-track {
    display: flex;
    width: max-content;
    gap: 14px;
    transition: transform 0.7s ease;
    will-change: transform;
  }
  .home .glimpse .glimpse-track img {
    flex: 0 0 auto;
    display: block;
    aspect-ratio: 512/735;
    object-fit: cover;
  }
  .home .showcase {
    position: sticky;
    top: 0;
    z-index: 1;
    background: var(--primary);
  }
  .home .showcase .showcase-grid {
    display: flex;
    flex-direction: column;
  }
  .home .showcase .showcase-secondary {
    display: flex;
  }
  .home .showcase .showcase-main img {
    display: block;
    width: 100%;
    object-fit: cover;
    aspect-ratio: 3/2;
  }
  .home .showcase .showcase-secondary img {
    display: block;
    flex: 1;
    min-width: 0;
    width: 100%;
    object-fit: cover;
    aspect-ratio: 2/3;
  }
  .home .stairs {
    position: relative;
    z-index: 2;
    margin-top: -85vh;
  }
  .home .stairs .stairs-photo {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1512/1545;
    background: linear-gradient(to bottom, transparent calc(100% - 180px), var(--cream) calc(100% - 180px));
  }
  .home .stairs .stairs-photo img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform-origin: center center;
    will-change: transform;
  }
  .home .stairs .stairs-fade {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 180px;
    pointer-events: none;
    background: linear-gradient(to bottom, rgba(255, 236, 225, 0), var(--cream) 85%);
  }
  .home .stairs .stairs-content {
    background: var(--cream);
    padding: 16px 24px 110px;
    display: flex;
    flex-direction: column;
    gap: 28px;
  }
  .home .stairs .stairs-photo-small {
    width: min(260px, 70%);
  }
  .home .stairs .stairs-photo-small img {
    display: block;
    width: 100%;
    aspect-ratio: 512/735;
    object-fit: cover;
  }
  .home .stairs .stairs-text h2 {
    font-family: var(--font-serif);
    font-weight: 500;
    color: var(--primary);
    font-size: 30px;
    line-height: 1.3;
    margin-bottom: 16px;
  }
  .home .stairs .stairs-text .hero-divider {
    display: block;
    height: auto;
    margin-bottom: 20px;
  }
  .home .stairs .stairs-text p {
    font-size: 16px;
    line-height: 1.6;
    color: var(--primary);
    opacity: 0.85;
  }
  .home .meeting {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 100vh;
  }
  .home .meeting .overlay-top {
    width: 100%;
    height: 300px;
    position: absolute;
    top: 0;
    left: 0;
    pointer-events: none;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.55), transparent);
    z-index: 40;
  }
  .home .meeting img {
    display: block;
    width: 100%;
    height: 100vh;
    filter: brightness(65%);
    object-fit: cover;
    z-index: 9;
  }
  .home .meeting .overlay-bottom {
    width: 100%;
    height: 90%;
    position: absolute;
    bottom: 0;
    left: 0;
    pointer-events: none;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
    z-index: 40;
  }
  .home .meeting .content {
    position: absolute;
    inset: 0;
    z-index: 50;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 24px;
    color: var(--cream);
  }
  .home .meeting .content h2 {
    font-family: var(--font-serif);
    font-weight: 500;
    font-size: 30px;
    line-height: 1.3;
    margin-bottom: 16px;
  }
  .home .meeting .content p {
    font-size: 16px;
    line-height: 1.6;
    opacity: 0.92;
    max-width: 420px;
    margin-bottom: 24px;
  }
  .home .tea {
    position: relative;
    z-index: 2;
    overflow: hidden;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: var(--cream);
  }
  .home .tea .tea-logo {
    position: absolute;
    left: 58%;
    top: 63%;
    transform: translate(-50%, -50%);
    width: 300px;
    height: auto;
    opacity: 0.5;
    pointer-events: none;
    z-index: 1;
  }
  .home .tea .tea-row {
    display: flex;
    flex-direction: column;
    width: 100%;
  }
  .home .tea .tea-text {
    order: 2;
    position: relative;
    z-index: 2;
    padding: 32px 24px 0;
    color: var(--primary);
  }
  .home .tea .tea-text h2 {
    font-family: var(--font-serif);
    font-weight: 500;
    font-size: 30px;
    line-height: 1.3;
    margin-bottom: 16px;
  }
  .home .tea .tea-text .hero-divider {
    display: block;
    height: auto;
    margin-bottom: 20px;
  }
  .home .tea .tea-text p {
    font-size: 16px;
    line-height: 1.6;
    color: var(--primary);
    opacity: 0.85;
    margin-bottom: 24px;
  }
  .home .tea .tea-photo {
    order: 1;
    position: relative;
    z-index: 2;
    width: min(260px, 65%);
    margin: 0 auto;
  }
  .home .tea .tea-photo img {
    display: block;
    width: 100%;
    height: auto;
  }
}
.home .foundation {
  overflow: hidden;
}
.home .foundation .foundation-squiggle {
  position: absolute;
  left: -5%;
  bottom: 24px;
  width: 110%;
  height: auto;
  pointer-events: none;
  z-index: 0;
}
.home .foundation .foundation-panel,
.home .foundation .foundation-photo {
  position: relative;
  z-index: 1;
}
.home .stairs .stairs-content {
  position: relative;
  overflow: hidden;
}
.home .stairs .stairs-content .stairs-squiggle {
  position: absolute;
  left: -5%;
  bottom: 28px;
  width: 110%;
  height: auto;
  pointer-events: none;
  z-index: 0;
}
.home .stairs .stairs-content .stairs-photo-small,
.home .stairs .stairs-content .stairs-text {
  position: relative;
  z-index: 1;
}
@media only screen and (min-width: 1140px) {
  .home #hva-du-kan-forvente {
    scroll-margin-top: 95px;
  }
  .home .photo-layer {
    width: 100%;
    height: 100vh;
  }
  .home .photo-layer .overlay-top {
    width: 100%;
    height: 300px;
    position: absolute;
    top: 0;
    left: 0;
    pointer-events: none;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.55), transparent);
    z-index: 40;
  }
  .home .photo-layer .overlay-bottom {
    width: 100%;
    height: 100%;
    position: absolute;
    bottom: 0;
    left: 0;
    pointer-events: none;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.55), transparent);
    z-index: 40;
  }
  .home .photo-layer img {
    display: block;
    width: 100%;
    height: 100vh;
    object-fit: cover;
    z-index: 9;
  }
  .home .photo-layer .content {
    position: absolute;
    inset: 0;
    z-index: 50;
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-width: 1460px;
    margin-inline: auto;
    padding: 0 35px;
    color: var(--cream);
  }
  .home .photo-layer .content h2 {
    font-family: var(--font-serif);
    font-weight: 500;
    font-size: 62px;
    line-height: 1.3;
    margin-bottom: 28px;
  }
  .home .photo-layer .content .hero-divider {
    display: block;
    width: 260px;
    height: auto;
    margin-bottom: 32px;
  }
  .home [data-layer=cover] img {
    filter: brightness(86%);
  }
  .home [data-layer=cover] .content {
    align-items: center;
    text-align: center;
  }
  .home [data-layer=cover] .content .text {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: var(--cream);
  }
  .home [data-layer=cover] .content .text h1 {
    font-family: var(--font-serif);
    font-weight: 500;
    font-size: 62px;
    line-height: 1.25;
    text-align: center;
    margin-bottom: 32px;
  }
  .home [data-layer=cover] .content .text .hero-divider {
    display: block;
    width: 320px;
    height: auto;
    margin-bottom: 40px;
  }
  .home [data-layer=cover] .content .text .button {
    padding: 10px 22px;
    font-size: 14px;
  }
  .home [data-layer=cover] .content .text .button i {
    font-size: 13px;
  }
  .home [data-layer=cover] .content .scroll-indicator {
    position: absolute;
    bottom: 48px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--cream);
    font-size: 20px;
    animation: scroll-bounce 2s ease-in-out infinite;
  }
  .home [data-layer=intro] img {
    filter: brightness(72%);
  }
  .home [data-layer=intro] .content {
    align-items: flex-start;
  }
  .home [data-layer=legacy] img {
    filter: brightness(72%);
  }
  .home [data-layer=legacy] .content {
    align-items: flex-end;
    text-align: right;
  }
  .home .story {
    position: relative;
    z-index: 1;
    height: 780px;
    background: var(--primary);
    overflow: hidden;
  }
  .home .story .content {
    display: flex;
    align-items: center;
    width: 100%;
    height: 100%;
    padding: 0 35px;
    max-width: 1460px;
    margin-inline: auto;
  }
  .home .story .story-panel {
    position: relative;
    z-index: 2;
    width: 50%;
    max-width: 560px;
    padding: 0 clamp(30px, 6vw, 90px) 0 0;
    color: var(--cream);
  }
  .home .story .story-panel h2 {
    font-family: var(--font-serif);
    font-weight: 500;
    font-size: 44px;
    line-height: 1.25;
    min-width: max-content;
    margin-bottom: 26px;
  }
  .home .story .story-panel .hero-divider {
    display: block;
    height: auto;
    margin-bottom: 28px;
  }
  .home .story .story-panel p {
    font-size: 16px;
    line-height: 1.7;
    opacity: 0.92;
    max-width: 460px;
    margin-bottom: 32px;
  }
  .home .story .story-photo {
    position: absolute;
    top: 0;
    right: 0;
    width: 75%;
    height: 100%;
    overflow: hidden;
    clip-path: url("#story-wave-clip");
  }
  .home .story .story-photo img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    will-change: transform;
  }
  .home .cta {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 100vh;
  }
  .home .cta .overlay-top {
    width: 100%;
    height: 300px;
    position: absolute;
    top: 0;
    left: 0;
    pointer-events: none;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.55), transparent);
    z-index: 40;
  }
  .home .cta .overlay-bottom {
    width: 100%;
    height: 100%;
    position: absolute;
    bottom: 0;
    left: 0;
    pointer-events: none;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
    z-index: 40;
  }
  .home .cta img {
    display: block;
    width: 100%;
    height: 100vh;
    filter: brightness(65%);
    object-fit: cover;
    z-index: 9;
  }
  .home .cta .content {
    position: absolute;
    inset: 0;
    z-index: 50;
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-width: 1460px;
    margin-inline: auto;
    padding: 0 35px;
    color: var(--cream);
  }
  .home .cta .content h2 {
    font-family: var(--font-serif);
    font-weight: 500;
    font-size: 44px;
    line-height: 1.25;
    margin-bottom: 22px;
  }
  .home .cta .content p {
    font-size: 16px;
    line-height: 1.6;
    opacity: 0.92;
    max-width: 540px;
    margin-bottom: 30px;
  }
  .home .foundation {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 100vh;
    background: var(--primary);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 max(35px, (100% - 1460px) / 2 + 35px);
    gap: 60px;
  }
  .home .foundation .foundation-squiggle {
    left: -3%;
    bottom: 10%;
    width: 106%;
  }
  .home .foundation .foundation-panel {
    max-width: 560px;
    color: var(--cream);
  }
  .home .foundation .foundation-panel h2 {
    font-family: var(--font-serif);
    font-weight: 500;
    font-size: 44px;
    line-height: 1.25;
    margin-bottom: 26px;
  }
  .home .foundation .foundation-panel .hero-divider {
    display: block;
    height: auto;
    margin-bottom: 28px;
  }
  .home .foundation .foundation-panel p {
    font-size: 16px;
    line-height: 1.7;
    opacity: 0.92;
    margin-bottom: 32px;
  }
  .home .foundation .foundation-photo {
    flex: 0 0 auto;
    width: min(400px, 36%);
  }
  .home .foundation .foundation-photo img {
    display: block;
    width: 100%;
    aspect-ratio: 522/745;
    object-fit: cover;
    clip-path: url("#foundation-arch-clip");
    filter: drop-shadow(0 30px 70px rgba(0, 0, 0, 0.35));
  }
  .home .glimpse {
    position: relative;
    z-index: 1;
    box-sizing: border-box;
    width: 100%;
    min-height: 100vh;
    background: var(--primary);
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 85px 0 80px;
    text-align: center;
  }
  .home .glimpse h2 {
    font-family: var(--font-serif);
    font-weight: 500;
    color: var(--cream);
    font-size: 44px;
    line-height: 1.25;
    margin-bottom: 20px;
  }
  .home .glimpse .glimpse-inner {
    width: 100%;
    min-width: 0;
    max-width: 1460px;
    margin: 0 auto;
    padding: 0 35px;
    text-align: left;
  }
  .home .glimpse .glimpse-gallery {
    overflow: hidden;
    margin-bottom: 40px;
  }
  .home .glimpse .glimpse-track {
    display: flex;
    width: max-content;
    gap: 40px;
    transition: transform 0.7s ease;
    will-change: transform;
  }
  .home .glimpse .glimpse-track img {
    flex: 0 0 auto;
    display: block;
    aspect-ratio: 512/735;
    object-fit: cover;
  }
  .home .showcase {
    position: sticky;
    top: 0;
    z-index: 1;
    width: 100%;
    background: var(--primary);
  }
  .home .showcase .showcase-grid {
    display: flex;
    flex-direction: column;
  }
  .home .showcase .showcase-secondary {
    display: flex;
  }
  .home .showcase .showcase-main img {
    display: block;
    width: 100%;
    object-fit: cover;
    aspect-ratio: 3/2;
  }
  .home .showcase .showcase-secondary img {
    display: block;
    flex: 1;
    min-width: 0;
    width: 100%;
    object-fit: cover;
    aspect-ratio: 2/3;
  }
  .home .stairs {
    position: relative;
    z-index: 2;
    margin-top: -110vh;
  }
  .home .stairs .stairs-photo {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1512/1545;
    background: linear-gradient(to bottom, transparent calc(100% - 260px), var(--cream) calc(100% - 260px));
  }
  .home .stairs .stairs-photo img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform-origin: center center;
    will-change: transform;
  }
  .home .stairs .stairs-fade {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 260px;
    pointer-events: none;
    background: linear-gradient(to bottom, rgba(255, 236, 225, 0), var(--cream) 85%);
  }
  .home .stairs .stairs-content {
    background: var(--cream);
    padding: 16px clamp(30px, 6vw, 90px) 100px;
    display: flex;
    align-items: flex-start;
    gap: 60px;
    max-width: 1460px;
    margin: 0 auto;
  }
  .home .stairs .stairs-content .stairs-squiggle {
    left: -4%;
    bottom: 20%;
    width: 108%;
  }
  .home .stairs .stairs-photo-small {
    flex: 0 0 auto;
    width: min(340px, 30%);
  }
  .home .stairs .stairs-photo-small img {
    display: block;
    width: 100%;
    aspect-ratio: 512/735;
    object-fit: cover;
  }
  .home .stairs .stairs-text {
    max-width: 560px;
  }
  .home .stairs .stairs-text h2 {
    font-family: var(--font-serif);
    font-weight: 500;
    color: var(--primary);
    font-size: 44px;
    line-height: 1.25;
  }
  .home .stairs .stairs-text .hero-divider {
    display: block;
    height: auto;
    margin-bottom: 28px;
  }
  .home .stairs .stairs-text p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--primary);
    opacity: 0.85;
  }
  .home .meeting {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 100vh;
  }
  .home .meeting .overlay-top {
    width: 100%;
    height: 300px;
    position: absolute;
    top: 0;
    left: 0;
    pointer-events: none;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.55), transparent);
    z-index: 40;
  }
  .home .meeting .overlay-bottom {
    width: 100%;
    height: 100%;
    position: absolute;
    bottom: 0;
    left: 0;
    pointer-events: none;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
    z-index: 40;
  }
  .home .meeting img {
    display: block;
    width: 100%;
    height: 100vh;
    filter: brightness(65%);
    object-fit: cover;
    z-index: 9;
  }
  .home .meeting .content {
    position: absolute;
    inset: 0;
    z-index: 50;
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-width: 1460px;
    margin-inline: auto;
    padding: 0 35px;
    color: var(--cream);
  }
  .home .meeting .content h2 {
    font-family: var(--font-serif);
    font-weight: 500;
    font-size: 44px;
    line-height: 1.25;
    margin-bottom: 22px;
  }
  .home .meeting .content p {
    font-size: 16px;
    line-height: 1.6;
    opacity: 0.92;
    max-width: 540px;
    margin-bottom: 30px;
  }
  .home .tea {
    position: relative;
    z-index: 2;
    overflow: hidden;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--cream);
  }
  .home .tea .tea-logo {
    position: absolute;
    left: 500px;
    top: 70%;
    transform: translateY(-50%);
    width: 700px;
    height: auto;
    opacity: 0.5;
    pointer-events: none;
    z-index: 1;
  }
  .home .tea .tea-row {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 60px;
    width: 100%;
    max-width: 1460px;
    margin-inline: auto;
    padding: 0 35px;
  }
  .home .tea .tea-text {
    position: relative;
    z-index: 2;
    max-width: 520px;
    color: var(--primary);
  }
  .home .tea .tea-text h2 {
    font-family: var(--font-serif);
    font-weight: 500;
    font-size: 44px;
    line-height: 1.25;
    margin-bottom: 26px;
  }
  .home .tea .tea-text .hero-divider {
    display: block;
    height: auto;
    margin-bottom: 28px;
  }
  .home .tea .tea-text p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--primary);
    opacity: 0.85;
    max-width: 460px;
    margin-bottom: 32px;
  }
  .home .tea .tea-photo {
    position: relative;
    z-index: 2;
    flex: 0 0 auto;
    width: min(390px, 30%);
  }
  .home .tea .tea-photo img {
    display: block;
    width: 100%;
    height: auto;
  }
}

.video-hero {
  position: relative;
  width: 100%;
  height: 100svh;
  overflow: hidden;
  background: var(--black);
}

.video-hero-media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
}

.video-hero-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  padding: 0 24px;
  text-align: center;
  color: var(--cream);
}
.video-hero-content h1 {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: 42px;
  line-height: 1.2;
}
.video-hero-content .hero-divider {
  display: block;
  width: 180px;
  height: auto;
  margin: 24px 0;
}
.video-hero-content p {
  font-size: 18px;
  line-height: 1.5;
  max-width: 520px;
}

@media only screen and (min-width: 1140px) {
  .video-hero-content h1 {
    font-size: 56px;
  }
  .video-hero-content .hero-divider {
    width: 220px;
    margin: 30px 0;
  }
  .video-hero-content p {
    font-size: 22px;
    max-width: 640px;
  }
}
@media (max-width: 1139px) {
  .tea {
    position: relative;
    z-index: 2;
    overflow: hidden;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: var(--primary);
  }
  .tea .tea-logo {
    position: absolute;
    left: 58%;
    top: 63%;
    transform: translate(-50%, -50%);
    width: 300px;
    height: auto;
    opacity: 0.5;
    pointer-events: none;
    z-index: 1;
  }
  .tea .tea-row {
    display: flex;
    flex-direction: column;
    width: 100%;
  }
  .tea .tea-text {
    order: 2;
    position: relative;
    z-index: 2;
    padding: 32px 24px 0;
    color: var(--cream);
  }
  .tea .tea-text h2 {
    font-family: var(--font-serif);
    font-weight: 500;
    font-size: 30px;
    line-height: 1.3;
    margin-bottom: 16px;
  }
  .tea .tea-text .hero-divider {
    display: block;
    height: auto;
    margin-bottom: 20px;
  }
  .tea .tea-text p {
    font-size: 16px;
    line-height: 1.6;
    color: var(--cream);
    opacity: 0.85;
    margin-bottom: 24px;
  }
  .tea .tea-photo {
    order: 1;
    position: relative;
    z-index: 2;
    width: min(260px, 65%);
    margin: 0 auto;
  }
  .tea .tea-photo img {
    display: block;
    width: 100%;
    height: auto;
  }
}
@media only screen and (min-width: 1140px) {
  .tea {
    position: relative;
    z-index: 2;
    overflow: hidden;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary);
  }
  .tea .tea-logo {
    position: absolute;
    left: 500px;
    top: 70%;
    transform: translateY(-50%);
    width: 700px;
    height: auto;
    opacity: 0.5;
    pointer-events: none;
    z-index: 1;
  }
  .tea .tea-row {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 60px;
    width: 100%;
    max-width: 1460px;
    margin-inline: auto;
    padding: 0 35px;
  }
  .tea .tea-text {
    position: relative;
    z-index: 2;
    max-width: 520px;
    color: var(--cream);
  }
  .tea .tea-text h2 {
    font-family: var(--font-serif);
    font-weight: 500;
    font-size: 50px;
    line-height: 1.25;
    margin-bottom: 26px;
  }
  .tea .tea-text .hero-divider {
    display: block;
    height: auto;
    margin-bottom: 28px;
  }
  .tea .tea-text p {
    font-size: 20px;
    line-height: 1.7;
    color: var(--cream);
    opacity: 0.85;
    max-width: 460px;
    margin-bottom: 32px;
  }
  .tea .tea-photo {
    position: relative;
    z-index: 2;
    flex: 0 0 auto;
    width: min(390px, 30%);
  }
  .tea .tea-photo img {
    display: block;
    width: 100%;
    height: auto;
  }
}
@media (max-width: 1139px) {
  .meeting {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 100vh;
  }
  .meeting .overlay-top {
    width: 100%;
    height: 300px;
    position: absolute;
    top: 0;
    left: 0;
    pointer-events: none;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.55), transparent);
    z-index: 40;
  }
  .meeting img {
    display: block;
    width: 100%;
    height: 100vh;
    filter: brightness(65%);
    object-fit: cover;
    z-index: 9;
  }
  .meeting .overlay-bottom {
    width: 100%;
    height: 90%;
    position: absolute;
    bottom: 0;
    left: 0;
    pointer-events: none;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
    z-index: 40;
  }
  .meeting .content {
    position: absolute;
    inset: 0;
    z-index: 50;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 24px;
    color: var(--cream);
  }
  .meeting .content h2 {
    font-family: var(--font-serif);
    font-weight: 500;
    font-size: 30px;
    line-height: 1.3;
    margin-bottom: 16px;
  }
  .meeting .content p {
    font-size: 16px;
    line-height: 1.6;
    opacity: 0.92;
    max-width: 420px;
    margin-bottom: 24px;
  }
}
@media only screen and (min-width: 1140px) {
  .meeting {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 100vh;
  }
  .meeting .overlay-top {
    width: 100%;
    height: 300px;
    position: absolute;
    top: 0;
    left: 0;
    pointer-events: none;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.55), transparent);
    z-index: 40;
  }
  .meeting .overlay-bottom {
    width: 100%;
    height: 100%;
    position: absolute;
    bottom: 0;
    left: 0;
    pointer-events: none;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
    z-index: 40;
  }
  .meeting img {
    display: block;
    width: 100%;
    height: 100vh;
    filter: brightness(65%);
    object-fit: cover;
    z-index: 9;
  }
  .meeting .content {
    position: absolute;
    inset: 0;
    z-index: 50;
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-width: 1460px;
    margin-inline: auto;
    padding: 0 35px;
    color: var(--cream);
  }
  .meeting .content h2 {
    font-family: var(--font-serif);
    font-weight: 500;
    font-size: 50px;
    line-height: 1.25;
    margin-bottom: 22px;
  }
  .meeting .content p {
    font-size: 20px;
    line-height: 1.6;
    opacity: 0.92;
    max-width: 540px;
    margin-bottom: 30px;
  }
}
.gather {
  position: relative;
  z-index: 1;
  height: 250vh;
  background: var(--primary);
  color: var(--cream);
}
.gather .gather-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 28px;
  padding: 40px 24px;
}
.gather .gather-squiggle {
  display: none;
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  pointer-events: none;
  z-index: 0;
}
.gather .gather-gallery,
.gather .gather-panel {
  position: relative;
  z-index: 1;
}
.gather .gather-gallery {
  display: flex;
  gap: 14px;
}
.gather .gather-photo--tall {
  flex: 0 0 52%;
  display: flex;
}
.gather .gather-photo--tall img {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
  border-radius: 12px;
}
.gather .gather-photo-stack {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.gather .gather-photo-stack img {
  display: block;
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
  border-radius: 12px;
}
.gather .gather-panel h2 {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: 30px;
  line-height: 1.3;
  margin-bottom: 20px;
}
.gather .gather-panel .hero-divider {
  display: block;
  height: auto;
  margin-bottom: 20px;
}
.gather .gather-panel p {
  font-size: 16px;
  line-height: 1.6;
  opacity: 0.92;
}
.gather .gather-panel .button {
  margin-top: 24px;
}

@media only screen and (min-width: 1140px) {
  .gather .gather-sticky {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 56px;
    padding: 0 var(--page-edge);
  }
  .gather .gather-squiggle {
    display: block;
    left: -8%;
    right: auto;
    width: 116%;
    object-position: left center;
  }
  .gather .gather-gallery {
    flex: 0 0 auto;
    width: min(720px, 55%);
    gap: 16px;
  }
  .gather .gather-photo-stack {
    gap: 16px;
  }
  .gather .gather-panel {
    max-width: 520px;
  }
  .gather .gather-panel h2 {
    font-size: 50px;
    line-height: 1.25;
    margin-bottom: 26px;
  }
  .gather .gather-panel .hero-divider {
    margin-bottom: 28px;
  }
  .gather .gather-panel p {
    font-size: 20px;
    line-height: 1.7;
    max-width: 440px;
  }
  .gather .gather-panel .button {
    margin-top: 28px;
  }
}
.finale {
  position: relative;
  z-index: 2;
  margin-top: -100vh;
}
.finale::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: min(45vh, 360px);
  pointer-events: none;
  z-index: 3;
  background: linear-gradient(to bottom, rgba(255, 236, 225, 0), var(--cream));
}
.finale .tribute-reveal {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1/1;
}
.finale .tribute-reveal-fill {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  transform-origin: center center;
  will-change: transform;
}

.plan {
  position: relative;
  z-index: 1;
  overflow: hidden;
  background: var(--cream);
  color: var(--primary);
  padding: 60px 24px;
}
.plan .plan-inner {
  max-width: 820px;
}
.plan .plan-flower {
  display: none;
}
.plan h2 {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: 30px;
  line-height: 1.3;
  margin-bottom: 20px;
}
.plan .hero-divider {
  display: block;
  height: auto;
  margin-bottom: 24px;
}
.plan p {
  font-size: 16px;
  line-height: 1.6;
  opacity: 0.9;
  margin-bottom: 28px;
}

@media only screen and (min-width: 1140px) {
  .plan {
    padding: 120px var(--page-edge);
  }
  .plan .plan-inner {
    position: relative;
    z-index: 1;
  }
  .plan .plan-flower {
    display: block;
    position: absolute;
    top: 50%;
    right: var(--page-edge);
    transform: translateY(-50%);
    width: min(460px, 40%);
    height: auto;
    opacity: 0.3;
    pointer-events: none;
  }
  .plan h2 {
    font-size: 50px;
    line-height: 1.25;
    margin-bottom: 26px;
  }
  .plan .hero-divider {
    margin-bottom: 28px;
  }
  .plan p {
    font-size: 20px;
    line-height: 1.7;
    max-width: 640px;
    margin-bottom: 32px;
  }
}
.cta {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 250vh;
}
.cta .cta-sticky {
  position: sticky;
  top: 0;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}
.cta .overlay-top {
  width: 100%;
  height: 300px;
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: none;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.55), transparent);
  z-index: 40;
}
.cta img {
  display: block;
  width: 100%;
  height: 100vh;
  filter: brightness(65%);
  object-fit: cover;
  z-index: 9;
}
.cta .overlay-bottom {
  width: 100%;
  height: 90%;
  position: absolute;
  bottom: 0;
  left: 0;
  pointer-events: none;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
  z-index: 40;
}
.cta .content {
  position: absolute;
  inset: 0;
  z-index: 50;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 24px;
  color: var(--cream);
}
.cta .content h2 {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: 30px;
  line-height: 1.3;
  margin-bottom: 16px;
}
.cta .content p {
  font-size: 16px;
  line-height: 1.6;
  opacity: 0.92;
  max-width: 420px;
  margin-bottom: 24px;
}

@media only screen and (min-width: 1140px) {
  .cta .overlay-bottom {
    height: 100%;
  }
  .cta .content {
    max-width: 1460px;
    margin-inline: auto;
    padding: 0 35px;
  }
  .cta .content h2 {
    font-size: 50px;
    line-height: 1.25;
    margin-bottom: 22px;
  }
  .cta .content p {
    font-size: 20px;
    line-height: 1.6;
    max-width: 540px;
    margin-bottom: 30px;
  }
}
.foundation {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background: var(--primary);
  padding: 60px 24px;
  gap: 32px;
}
.foundation .foundation-panel {
  color: var(--cream);
}
.foundation .foundation-panel h2 {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: 30px;
  line-height: 1.3;
  margin-bottom: 20px;
}
.foundation .foundation-panel .hero-divider {
  display: block;
  height: auto;
  margin: 0 auto 24px;
}
.foundation .foundation-panel p {
  font-size: 16px;
  line-height: 1.6;
  opacity: 0.92;
  margin-bottom: 28px;
}
.foundation .foundation-photo {
  width: min(260px, 80%);
}
.foundation .foundation-photo img {
  display: block;
  width: 100%;
  aspect-ratio: 522/745;
  object-fit: cover;
  clip-path: url("#foundation-arch-clip");
}

@media only screen and (min-width: 1140px) {
  .foundation {
    width: 100%;
    height: 100vh;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 0 var(--page-edge);
    gap: 60px;
  }
  .foundation .foundation-panel {
    max-width: 560px;
    text-align: left;
  }
  .foundation .foundation-panel h2 {
    font-size: 50px;
    line-height: 1.25;
    margin-bottom: 26px;
  }
  .foundation .foundation-panel .hero-divider {
    margin: 0 0 28px;
  }
  .foundation .foundation-panel p {
    font-size: 20px;
    line-height: 1.7;
    margin-bottom: 32px;
  }
  .foundation .foundation-photo {
    flex: 0 0 auto;
    width: min(400px, 36%);
  }
}
.fact {
  position: relative;
  z-index: 1;
  background: var(--primary);
  padding: 24px 24px 90px;
}

.fact-media {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
}
.fact-media > img {
  display: block;
  width: 100%;
  height: auto;
}

.fact-bubble {
  position: absolute;
  left: -200px;
  top: 50%;
  transform: translateY(-50%) translateX(-100vw);
  opacity: 0;
  width: calc(100% - 32px);
  max-width: 320px;
  transition: transform 1.8s cubic-bezier(0.16, 1, 0.3, 1), opacity 1.4s ease;
}
.fact-bubble.is-visible {
  transform: translateY(-50%) translateX(0);
  opacity: 1;
}

.fact-bubble-shape {
  display: block;
  width: 100%;
  height: auto;
}

.fact-bubble-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 24px 34% 24px 26px;
  color: var(--primary);
}
.fact-bubble-content h2 {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: 22px;
  line-height: 1.2;
  margin-bottom: 10px;
}
.fact-bubble-content .fact-divider {
  display: block;
  width: 90px;
  height: auto;
  margin-bottom: 12px;
}
.fact-bubble-content p {
  font-size: 16px;
  line-height: 1.5;
  color: var(--primary);
}

@media only screen and (min-width: 1140px) {
  .fact {
    padding: 40px var(--page-edge) 90px;
  }
  .fact-media {
    margin-right: 0;
    margin-left: auto;
  }
  .fact-bubble {
    left: -270px;
    max-width: 460px;
  }
  .fact-bubble-content {
    padding: 36px 34% 36px 48px;
  }
  .fact-bubble-content h2 {
    font-size: 30px;
    margin-bottom: 14px;
  }
  .fact-bubble-content .fact-divider {
    width: 110px;
    margin-bottom: 18px;
  }
  .fact-bubble-content p {
    font-size: 16px;
    line-height: 1.6;
  }
}
.essence {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background: var(--primary);
  padding: 60px 24px;
  gap: 32px;
}
.essence .essence-photo {
  width: min(280px, 82%);
}
.essence .essence-photo img {
  display: block;
  width: 100%;
  height: auto;
}
.essence .essence-panel {
  color: var(--cream);
}
.essence .essence-panel h2 {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: 30px;
  line-height: 1.3;
  margin-bottom: 20px;
}
.essence .essence-panel .essence-divider {
  display: block;
  height: auto;
  margin: 0 auto 24px;
}
.essence .essence-panel p {
  font-size: 16px;
  line-height: 1.6;
  opacity: 0.92;
}

@media only screen and (min-width: 1140px) {
  .essence {
    width: 100%;
    min-height: 100vh;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 60px var(--page-edge);
    gap: 80px;
  }
  .essence .essence-photo {
    flex: 0 0 auto;
    width: min(440px, 34%);
  }
  .essence .essence-panel {
    max-width: 620px;
    text-align: left;
  }
  .essence .essence-panel h2 {
    font-size: 50px;
    line-height: 1.25;
    margin-bottom: 26px;
  }
  .essence .essence-panel .essence-divider {
    margin: 0 0 28px;
  }
  .essence .essence-panel p {
    font-size: 20px;
    line-height: 1.7;
  }
}
.essence--light {
  background: var(--cream);
}
.essence--light .essence-panel {
  color: var(--primary);
}

.essence--pinned {
  height: 250vh;
  min-height: 0;
  padding: 0;
  display: block;
}
.essence--pinned .essence-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 32px;
  padding: 60px 24px;
}

@media only screen and (min-width: 1140px) {
  .essence--pinned .essence-sticky {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 80px;
    padding: 60px var(--page-edge);
  }
}
.tribute {
  position: relative;
  z-index: 2;
  margin-top: -100vh;
}
.tribute .tribute-reveal {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1/1;
}
.tribute .tribute-reveal .tribute-reveal-fill {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform-origin: center center;
  will-change: transform;
}
.tribute .tribute-content {
  position: relative;
  z-index: 1;
  margin-top: -50vw;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 24px 60px;
  background: var(--cream);
}
.tribute .tribute-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 32px;
  max-width: 620px;
}
.tribute .tribute-closing {
  position: relative;
  z-index: 1;
}
.tribute .tribute-closing img {
  display: block;
  width: 100%;
  height: 100vh;
  object-fit: cover;
}
.tribute .tribute-photo {
  width: min(280px, 82%);
}
.tribute .tribute-photo img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 522/745;
  object-fit: cover;
  clip-path: url("#foundation-arch-clip");
}
.tribute .tribute-text {
  color: var(--primary);
}
.tribute .tribute-text h2 {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: 30px;
  line-height: 1.3;
  margin-bottom: 20px;
}
.tribute .tribute-text .hero-divider {
  display: block;
  height: auto;
  margin: 0 auto 24px;
}
.tribute .tribute-text p {
  font-size: 16px;
  line-height: 1.6;
  opacity: 0.9;
}
.tribute .tribute-text .button {
  margin-top: 24px;
}

@media only screen and (min-width: 1140px) {
  .tribute .tribute-content {
    padding: 0 var(--page-edge) 100px;
  }
  .tribute .tribute-inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 80px;
    width: 100%;
    max-width: 1460px;
    text-align: left;
  }
  .tribute .tribute-photo {
    flex: 0 0 auto;
    width: min(420px, 32%);
  }
  .tribute .tribute-text {
    max-width: 620px;
  }
  .tribute .tribute-text h2 {
    font-size: 50px;
    line-height: 1.25;
    margin-bottom: 26px;
  }
  .tribute .tribute-text .hero-divider {
    margin: 0 0 28px;
  }
  .tribute .tribute-text p {
    font-size: 20px;
    line-height: 1.7;
  }
  .tribute .tribute-text .button {
    margin-top: 28px;
  }
}
.journey {
  position: relative;
  z-index: 1;
  overflow: hidden;
  background: var(--cream);
  color: var(--primary);
  padding: 60px 24px;
}
.journey .journey-inner {
  position: relative;
  z-index: 1;
  max-width: 820px;
}
.journey h2 {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: 30px;
  line-height: 1.3;
  margin-bottom: 20px;
}
.journey .hero-divider {
  display: block;
  height: auto;
  margin: 0 0 24px;
}
.journey p {
  font-size: 16px;
  line-height: 1.6;
  opacity: 0.9;
}
.journey p + p {
  margin-top: 24px;
}
.journey .journey-quote {
  font-style: italic;
}

@media only screen and (min-width: 1140px) {
  .journey {
    padding: 120px var(--page-edge);
  }
  .journey h2 {
    font-size: 50px;
    line-height: 1.25;
    margin-bottom: 26px;
  }
  .journey .hero-divider {
    margin: 0 0 28px;
  }
  .journey p {
    font-size: 20px;
    line-height: 1.7;
  }
  .journey p + p {
    margin-top: 28px;
  }
}
.welcome {
  position: relative;
  z-index: 1;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  background: var(--cream);
  color: var(--primary);
  padding: 60px 24px;
  gap: 40px;
}
.welcome .welcome-text,
.welcome .welcome-photo {
  position: relative;
  z-index: 1;
}
.welcome .welcome-text h2 {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: 30px;
  line-height: 1.3;
  margin-bottom: 20px;
}
.welcome .welcome-text .hero-divider {
  display: block;
  height: auto;
  margin: 0 0 24px;
}
.welcome .welcome-text p {
  font-size: 16px;
  line-height: 1.6;
  opacity: 0.9;
}
.welcome .welcome-text p + p {
  margin-top: 24px;
}
.welcome .welcome-photo {
  width: 100%;
}
.welcome .welcome-photo img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 3/4;
  object-fit: cover;
}

@media only screen and (min-width: 1140px) {
  .welcome {
    width: 100%;
    min-height: 100vh;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 60px var(--page-edge);
    gap: 90px;
  }
  .welcome .welcome-text {
    max-width: 480px;
  }
  .welcome .welcome-text h2 {
    font-size: 50px;
    line-height: 1.25;
    margin-bottom: 26px;
  }
  .welcome .welcome-text .hero-divider {
    margin: 0 0 28px;
  }
  .welcome .welcome-text p {
    font-size: 20px;
    line-height: 1.7;
  }
  .welcome .welcome-text p + p {
    margin-top: 28px;
  }
  .welcome .welcome-photo {
    flex: 0 0 auto;
    width: min(460px, 40%);
  }
}
.om-oss .foundation {
  overflow: hidden;
  padding: 60px 24px 120px;
}
.om-oss .foundation .foundation-squiggle {
  position: absolute;
  left: -5%;
  bottom: 24px;
  width: 110%;
  height: auto;
  pointer-events: none;
  z-index: 0;
}
.om-oss .foundation .foundation-panel,
.om-oss .foundation .foundation-photo {
  position: relative;
  z-index: 1;
}
.om-oss .foundation .foundation-photo img {
  filter: drop-shadow(0 20px 45px rgba(0, 0, 0, 0.35));
}
.om-oss .om-oss-outro {
  position: relative;
  z-index: 1;
  overflow: hidden;
  background: var(--cream);
}
.om-oss .om-oss-outro .journey,
.om-oss .om-oss-outro .welcome {
  background: transparent;
}
.om-oss .om-oss-outro .om-oss-outro-squiggle {
  display: none;
}
@media only screen and (min-width: 1140px) {
  .om-oss .foundation .foundation-squiggle {
    left: -3%;
    bottom: 10%;
    width: 106%;
  }
  .om-oss .foundation .foundation-panel h2 {
    font-size: 44px;
  }
  .om-oss .foundation .foundation-panel p {
    font-size: 16px;
  }
  .om-oss .foundation .foundation-photo img {
    filter: drop-shadow(0 30px 70px rgba(0, 0, 0, 0.35));
  }
  .om-oss .om-oss-outro .om-oss-outro-squiggle {
    display: block;
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: right center;
    pointer-events: none;
    z-index: 0;
  }
}

.gallery {
  position: relative;
  z-index: 1;
  background: var(--primary);
  padding: 24px 16px 72px;
}

.gallery-grid {
  column-count: 2;
  column-gap: 8px;
  max-width: 1460px;
  margin: 0 auto;
}
.gallery-grid.gallery-grid--js {
  column-count: auto;
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.gallery-col {
  flex: 1 1 0;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.gallery-item {
  margin: 0 0 8px;
  break-inside: avoid;
  overflow: hidden;
}
.gallery-item img {
  display: block;
  width: 100%;
  height: auto;
}
.gallery-col .gallery-item {
  margin: 0;
}

@media only screen and (min-width: 700px) {
  .gallery-grid {
    column-count: 3;
    column-gap: 10px;
  }
  .gallery-grid.gallery-grid--js {
    column-count: auto;
    gap: 10px;
  }
  .gallery-col {
    gap: 10px;
  }
  .gallery-item {
    margin-bottom: 10px;
  }
}
@media only screen and (min-width: 1140px) {
  .gallery {
    padding: 40px var(--page-edge) 96px;
  }
  .gallery-grid {
    column-count: 4;
    column-gap: 12px;
  }
  .gallery-grid.gallery-grid--js {
    column-count: auto;
    gap: 12px;
  }
  .gallery-col {
    gap: 12px;
  }
  .gallery-item {
    margin-bottom: 12px;
  }
}

/*# sourceMappingURL=pages.css.map */
