:root {
    color-scheme: dark;
    --bg: #08090d;
    --bg-soft: #101219;
    --text: #fff8f0;
    --muted: rgba(255, 248, 240, .72);
    --faint: rgba(255, 248, 240, .48);
    --glass: rgba(255, 255, 255, .12);
    --glass-strong: rgba(255, 255, 255, .2);
    --stroke: rgba(255, 255, 255, .22);
    --accent: #ffd184;
    --rose: #ff6f91;
    --shadow: 0 24px 80px rgba(0, 0, 0, .36);
    --radius: 24px;
    --ease: cubic-bezier(.22, .61, .36, 1);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-height: 100vh;
    color: var(--text);
    background:
        radial-gradient(circle at 15% 10%, rgba(255, 111, 145, .18), transparent 32rem),
        radial-gradient(circle at 85% 20%, rgba(255, 209, 132, .14), transparent 30rem),
        linear-gradient(180deg, #07080d 0%, #101017 42%, #090a0f 100%);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    overflow-x: hidden;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    background-image:
        linear-gradient(rgba(255, 255, 255, .035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, .03) 1px, transparent 1px);
    background-size: 64px 64px;
    mask-image: linear-gradient(to bottom, rgba(0, 0, 0, .65), transparent 75%);
    z-index: -2;
}

button,
a,
input,
textarea {
    font: inherit;
}

button,
a {
    -webkit-tap-highlight-color: transparent;
}

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

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

.glass {
    background: linear-gradient(135deg, rgba(255, 255, 255, .18), rgba(255, 255, 255, .075));
    border: 1px solid var(--stroke);
    box-shadow: var(--shadow);
    backdrop-filter: blur(22px) saturate(140%);
    -webkit-backdrop-filter: blur(22px) saturate(140%);
}

.site-header {
    position: fixed;
    top: 16px;
    left: 50%;
    z-index: 40;
    width: min(1120px, calc(100% - 28px));
    transform: translateX(-50%);
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 10px 12px;
    border-radius: 999px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-width: 0;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.brand img {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    object-fit: contain;
    background: rgba(255, 255, 255, .88);
}

.header-marquee {
    min-width: 0;
    overflow: hidden;
    mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
}

.marquee-track {
    display: flex;
    width: max-content;
    gap: 0;
    white-space: nowrap;
    animation: nameMarquee 18s linear infinite;
}

.marquee-track span {
    color: rgba(255, 248, 240, .86);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 18px;
    letter-spacing: .04em;
    padding-right: 34px;
    text-shadow: 0 8px 24px rgba(0, 0, 0, .36);
}

@keyframes nameMarquee {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}

.icon-button,
.glass-button,
.album-nav,
.album-close,
.lightbox-close,
.lightbox-nav,
.lightbox-tools button {
    border: 1px solid rgba(255, 255, 255, .22);
    color: var(--text);
    background: rgba(255, 255, 255, .12);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .22), 0 14px 35px rgba(0, 0, 0, .18);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    cursor: pointer;
    transition: transform .24s var(--ease), background .24s var(--ease), border-color .24s var(--ease);
}

.icon-button {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    font-size: 18px;
}

.glass-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    border-radius: 999px;
    padding: 12px 18px;
    font-size: 14px;
    font-weight: 700;
}

.glass-button.primary,
.share-actions .primary {
    color: #16100a;
    background: linear-gradient(135deg, #ffe3a8, #ffb3c6);
    border-color: rgba(255, 255, 255, .46);
}

.icon-button:hover,
.glass-button:hover,
.album-nav:hover,
.album-close:hover,
.lightbox-close:hover,
.lightbox-nav:hover,
.lightbox-tools button:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, .2);
}

.hero {
    position: relative;
    min-height: 88svh;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 430px);
    align-items: center;
    gap: clamp(28px, 6vw, 78px);
    width: min(1180px, calc(100% - 36px));
    margin: 0 auto;
    padding: 104px 0 52px;
}

.hero-media {
    position: absolute;
    inset: 0 auto 0 44%;
    width: min(48vw, 520px);
    border-radius: 0 0 260px 260px;
    background:
        linear-gradient(180deg, rgba(8, 9, 13, .06), rgba(8, 9, 13, .92)),
        url("https://res.cloudinary.com/to1jikz1/image/upload/v1789299229/fwuujfteobc8urcrzzdt.webp") center 28% / cover no-repeat;
    box-shadow: 0 34px 120px rgba(0, 0, 0, .45);
    opacity: .92;
}

.hero-media::before {
    content: "";
    position: absolute;
    inset: 16px;
    border: 1px solid rgba(255, 255, 255, .22);
    border-radius: inherit;
    pointer-events: none;
}

.hero-copy {
    position: relative;
    z-index: 2;
    max-width: 650px;
}

.save,
.section-heading p {
    margin: 0 0 14px;
    color: var(--accent);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .22em;
    text-transform: uppercase;
}

.hero h1 {
    margin: 0;
    max-width: 11ch;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(56px, 11vw, 132px);
    font-weight: 400;
    line-height: .88;
    letter-spacing: 0;
}

.hero-text {
    max-width: 520px;
    margin: 28px 0 0;
    color: var(--muted);
    font-size: clamp(16px, 2.4vw, 20px);
    line-height: 1.7;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 30px;
}

.date-card {
    position: relative;
    z-index: 3;
    justify-self: end;
    width: min(100%, 260px);
    border-radius: var(--radius);
    padding: 28px;
    text-align: center;
}

.date-card span {
    display: block;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 92px;
    line-height: .86;
}

.date-card small {
    display: block;
    margin-top: 14px;
    color: var(--muted);
    font-size: 16px;
    letter-spacing: .22em;
}

.intro-band {
    width: min(940px, calc(100% - 36px));
    margin: 0 auto;
    padding: 44px 0 26px;
    text-align: center;
}

.intro-band p {
    margin: 0;
    color: var(--muted);
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(24px, 4vw, 44px);
    line-height: 1.25;
}

.gallery-section,
.book-section,
.video-section,
.share-section {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
    padding: 82px 0;
    scroll-margin-top: 92px;
}

.section-heading {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 28px;
}

.section-heading h2,
.share-card h2 {
    margin: 0;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(34px, 6vw, 68px);
    font-weight: 400;
    line-height: 1;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 16px;
}

.photo-card,
.caption-card {
    min-height: 220px;
    border-radius: var(--radius);
    overflow: hidden;
}

.photo-card {
    position: relative;
    grid-column: span 3;
}

.photo-card:nth-child(6n + 1) {
    grid-column: span 4;
}

.photo-card:nth-child(8n + 4) {
    grid-column: span 5;
}

.photo-open {
    display: block;
    width: 100%;
    height: 100%;
    min-height: inherit;
    padding: 0;
    border: 0;
    background: transparent;
    cursor: zoom-in;
}

.photo-open img {
    width: 100%;
    height: 100%;
    min-height: inherit;
    object-fit: cover;
    transition: transform .7s var(--ease);
}

.photo-card:hover img {
    transform: scale(1.045);
}

.photo-meta {
    position: absolute;
    left: 12px;
    right: 12px;
    bottom: 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    pointer-events: none;
}

.photo-index {
    border-radius: 999px;
    color: var(--text);
    background: rgba(0, 0, 0, .32);
    border: 1px solid rgba(255, 255, 255, .18);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
}

.photo-index {
    padding: 8px 10px;
    font-size: 12px;
}

.caption-card {
    grid-column: span 6;
    display: grid;
    place-items: center;
    padding: 28px;
    text-align: center;
    min-height: 180px;
}

.caption-card blockquote {
    margin: 0;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(24px, 4vw, 44px);
    line-height: 1.2;
    color: var(--text);
    text-shadow: 0 18px 42px rgba(0, 0, 0, .38);
}

.reveal-slide {
    opacity: 0;
    transform: translate3d(0, 42px, 0) scale(.985);
    transition:
        opacity .72s var(--ease) var(--reveal-delay, 0ms),
        transform .72s var(--ease) var(--reveal-delay, 0ms);
    will-change: opacity, transform;
}

.reveal-slide.is-visible {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
}

.album-cover-wrap {
    display: grid;
    place-items: center;
    padding: 12px 0 4px;
}

.album-cover {
    position: relative;
    width: min(380px, 78vw);
    aspect-ratio: 25 / 35;
    overflow: hidden;
    padding: 0;
    border-radius: 26px;
    color: var(--text);
    text-align: left;
    cursor: pointer;
    transform-style: preserve-3d;
}

.album-cover::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(180deg, rgba(8, 9, 13, .12), rgba(8, 9, 13, .2) 38%, rgba(8, 9, 13, .92)),
        radial-gradient(circle at 20% 18%, rgba(255, 209, 132, .28), transparent 32%);
}

.album-cover::after {
    content: "";
    position: absolute;
    inset: 14px;
    z-index: 2;
    border: 1px solid rgba(255, 255, 255, .28);
    border-radius: 20px;
    pointer-events: none;
}

.album-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.02);
    transition: transform .7s var(--ease);
}

.album-cover:hover img {
    transform: scale(1.08);
}

.album-cover-kicker,
.album-cover strong,
.album-cover em {
    position: absolute;
    left: 30px;
    right: 30px;
    z-index: 3;
}

.album-cover-kicker {
    top: 30px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .2em;
    text-transform: uppercase;
}

.album-cover strong {
    bottom: 72px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(34px, 7vw, 52px);
    font-weight: 400;
    line-height: .92;
    text-shadow: 0 18px 42px rgba(0, 0, 0, .55);
}

.album-cover em {
    bottom: 34px;
    color: rgba(255, 248, 240, .76);
    font-size: 14px;
    font-style: normal;
    letter-spacing: .16em;
    text-transform: uppercase;
}

.album-cover-note,
.album-counter {
    margin: 16px 0 0;
    text-align: center;
    color: var(--faint);
    font-size: 14px;
}

.album-viewer {
    width: 100vw;
    max-width: none;
    height: 100svh;
    max-height: none;
    margin: 0;
    padding: 0;
    border: 0;
    color: var(--text);
    background: rgba(5, 5, 8, .62);
}

body.album-rotation-active {
    overflow: hidden;
}

.album-viewer::backdrop {
    background: rgba(0, 0, 0, .78);
    backdrop-filter: blur(14px);
}

.album-viewer-shell {
    position: relative;
    width: 100%;
    height: 100%;
    display: grid;
    place-items: center;
    padding: 68px clamp(18px, 5vw, 84px) 54px;
}

.album-stage {
    width: min(1280px, 92vw, calc((100svh - 142px) * 50 / 35));
    aspect-ratio: 50 / 35;
    perspective: none;
    touch-action: none;
    user-select: none;
    -webkit-user-select: none;
}

.album-spread {
    position: relative;
    width: 100%;
    height: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 36px 110px rgba(0, 0, 0, .52);
    background: linear-gradient(90deg, #eee0cf, #fbf3e8 47%, #e5d4c0 50%, #fbf3e8 53%, #efe0cf);
}

.album-spread::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    z-index: 6;
    width: 2px;
    transform: translateX(-50%);
    background: linear-gradient(180deg, transparent, rgba(54, 35, 28, .28) 18%, rgba(255, 255, 255, .5) 50%, rgba(54, 35, 28, .28) 82%, transparent);
    box-shadow: -14px 0 34px rgba(44, 28, 20, .12), 14px 0 34px rgba(44, 28, 20, .12);
    pointer-events: none;
}

.album-page {
    position: relative;
    z-index: 2;
    aspect-ratio: 25 / 35;
    min-width: 0;
    display: grid;
    grid-template-rows: auto minmax(0, 1fr);
    gap: clamp(10px, 1.2vw, 18px);
    padding: clamp(18px, 2.25vw, 40px);
    color: #2e221b;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, .95), rgba(249, 244, 237, .88)),
        radial-gradient(circle at 18% 20%, rgba(255, 221, 176, .24), transparent 36%);
    overflow: hidden;
    backface-visibility: visible;
}

.album-page-left {
    transform-origin: right center;
}

.album-page-right {
    transform-origin: left center;
}

.album-page::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        linear-gradient(90deg, rgba(255, 255, 255, .24), transparent 18%, transparent 82%, rgba(114, 78, 52, .08)),
        radial-gradient(circle at 50% 18%, transparent 48%, rgba(83, 53, 38, .08));
    mix-blend-mode: multiply;
}

.album-page-header,
.album-photo-grid,
.album-page-quote {
    position: relative;
    z-index: 2;
}

.album-page-header span {
    display: block;
    margin-bottom: clamp(5px, .7vw, 10px);
    color: rgba(82, 58, 45, .62);
    font-size: clamp(8px, .82vw, 12px);
    font-weight: 800;
    letter-spacing: .22em;
    text-transform: uppercase;
}

.album-page-header h3 {
    margin: 0;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(26px, 4vw, 60px);
    font-weight: 400;
    line-height: .9;
    letter-spacing: -.02em;
}

.album-photo-grid {
    display: grid;
    gap: clamp(10px, 1.3vw, 18px);
    min-height: 0;
}

.album-photo-grid-1 {
    grid-template-columns: 1fr;
}

.album-photo-grid-2 {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr;
}

.album-photo-grid figure {
    position: relative;
    min-width: 0;
    min-height: 0;
    margin: 0;
    display: grid;
    place-items: center;
    width: min(100%, 72%);
    height: auto;
    aspect-ratio: var(--photo-ratio, 2 / 3);
    align-self: center;
    justify-self: center;
    overflow: hidden;
    border-radius: clamp(10px, 1.5vw, 20px);
    background: rgba(255, 255, 255, .32);
    box-shadow: 0 16px 32px rgba(81, 52, 34, .18);
}

.album-photo-grid img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    user-select: none;
    -webkit-user-drag: none;
}

.album-photo-grid figure.photo-landscape {
    width: min(100%, 92%);
}

.album-photo-grid figure.photo-portrait {
    width: min(100%, 68%);
}

.album-photo-grid figcaption {
    position: absolute;
    left: 10px;
    bottom: 10px;
    min-width: 32px;
    border-radius: 999px;
    padding: 5px 8px;
    color: #fffaf3;
    background: rgba(0, 0, 0, .34);
    backdrop-filter: blur(10px);
    font-size: 11px;
    font-weight: 800;
    text-align: center;
}

.album-page-quote {
    margin: 0;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(14px, 1.55vw, 24px);
    line-height: 1.24;
    color: rgba(46, 34, 27, .82);
}

.album-page-mark {
    position: absolute;
    z-index: 1;
    right: clamp(18px, 2vw, 34px);
    bottom: clamp(16px, 1.8vw, 30px);
    color: rgba(46, 34, 27, .18);
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(42px, 7vw, 96px);
    line-height: .8;
    pointer-events: none;
}

.album-layout-full-photo {
    grid-template-rows: minmax(0, 1fr) auto;
}

.album-layout-full-photo .album-page-header {
    position: absolute;
    z-index: 4;
    left: clamp(18px, 2.2vw, 42px);
    right: auto;
    top: clamp(18px, 2.2vw, 42px);
    max-width: min(72%, 360px);
    padding: .45em .6em;
    border-radius: 12px;
    background: rgba(0, 0, 0, .2);
    backdrop-filter: blur(10px);
    color: #fffaf2;
    text-shadow: 0 10px 28px rgba(0, 0, 0, .42);
}

.album-layout-full-photo::before,
.album-layout-full-bleed::before {
    content: "";
    position: absolute;
    inset: auto 0 0 0;
    z-index: 3;
    height: 38%;
    background: linear-gradient(180deg, transparent, rgba(0, 0, 0, .48));
    pointer-events: none;
}

.album-layout-full-photo .album-page-header span,
.album-layout-full-photo .album-page-header h3 {
    color: #fffaf2;
}

.album-layout-full-photo .album-photo-grid {
    grid-row: 1 / -1;
    margin: calc(clamp(18px, 2.25vw, 40px) * -1);
}

.album-layout-full-photo .album-photo-grid figure {
    border-radius: 0;
    box-shadow: none;
}

.album-layout-full-photo .album-page-quote {
    z-index: 4;
    align-self: end;
    width: min(76%, 420px);
    padding: .35em .55em;
    border-radius: 12px;
    background: rgba(0, 0, 0, .22);
    backdrop-filter: blur(10px);
    color: #fffaf2;
    text-shadow: 0 10px 26px rgba(0, 0, 0, .5);
}

.album-layout-center-poster {
    text-align: center;
    align-items: center;
}

.album-layout-center-poster .album-photo-grid {
    width: min(58%, 330px);
    justify-self: center;
}

.album-layout-center-poster .album-photo-grid figure {
    padding: 10px;
    background: #f8f2ea;
    border: 1px solid rgba(82, 58, 45, .12);
    box-shadow: 0 20px 44px rgba(84, 54, 36, .16);
}

.album-layout-soft-card .album-page-header {
    align-self: end;
    text-align: center;
}

.album-layout-soft-card .album-page-header h3 {
    text-transform: uppercase;
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: clamp(22px, 3vw, 42px);
    font-weight: 800;
    letter-spacing: .02em;
}

.album-layout-soft-card .album-photo-grid {
    grid-row: 1 / 3;
    width: min(74%, 440px);
    justify-self: center;
    align-self: center;
}

.album-layout-soft-card .album-photo-grid figure {
    box-shadow: 0 24px 58px rgba(82, 62, 50, .18);
}

.album-layout-soft-card .album-page-quote {
    max-width: 64%;
    justify-self: center;
    text-align: center;
    font-size: clamp(11px, 1vw, 16px);
    text-transform: uppercase;
    letter-spacing: .08em;
}

.album-layout-full-bleed {
    grid-template-rows: minmax(0, 1fr) auto;
    color: #fffaf2;
    background: #111;
}

.album-layout-full-bleed .album-photo-grid {
    grid-row: 1 / -1;
    margin: calc(clamp(18px, 2.25vw, 40px) * -1);
}

.album-layout-full-bleed .album-photo-grid figure {
    border-radius: 0;
    box-shadow: none;
}

.album-layout-full-bleed .album-page-header {
    position: absolute;
    z-index: 4;
    left: clamp(18px, 2.2vw, 42px);
    right: clamp(18px, 2.2vw, 42px);
    bottom: clamp(80px, 8vw, 140px);
    color: #fffaf2;
    text-shadow: 0 10px 28px rgba(0, 0, 0, .52);
}

.album-layout-full-bleed .album-page-header span,
.album-layout-full-bleed .album-page-header h3,
.album-layout-full-bleed .album-page-quote {
    color: #fffaf2;
}

.album-layout-full-bleed .album-page-quote {
    z-index: 4;
    align-self: end;
    width: min(70%, 420px);
    padding: .35em .55em;
    border-radius: 12px;
    background: rgba(0, 0, 0, .24);
    backdrop-filter: blur(10px);
    text-shadow: 0 10px 26px rgba(0, 0, 0, .52);
}

.album-layout-polaroid .album-photo-grid {
    width: min(66%, 360px);
    justify-self: center;
    align-self: center;
}

.album-layout-polaroid .album-photo-grid figure {
    padding: 12px 12px 46px;
    background: #fff;
    border-radius: 2px;
    border: 1px solid rgba(82, 58, 45, .1);
    transform: rotate(-2deg);
}

.album-layout-polaroid .album-page-header {
    align-self: end;
}

.album-layout-double-quiet .album-photo-grid {
    grid-template-columns: 1fr 1fr;
    align-self: center;
}

.album-layout-double-quiet .album-photo-grid figure {
    width: min(100%, 72%);
}

.album-layout-red-frame {
    background:
        linear-gradient(135deg, #fff, #faf7f2),
        radial-gradient(circle at 70% 28%, rgba(191, 52, 49, .12), transparent 30%);
}

.album-layout-red-frame::before {
    content: "";
    position: absolute;
    right: 0;
    top: 30%;
    width: 72%;
    height: 34%;
    background: #bf3533;
    z-index: 1;
}

.album-layout-red-frame .album-page-header,
.album-layout-red-frame .album-page-quote,
.album-layout-red-frame .album-photo-grid {
    z-index: 3;
}

.album-layout-red-frame .album-photo-grid {
    width: min(58%, 340px);
    justify-self: start;
    align-self: center;
}

.album-layout-red-frame .album-photo-grid figure {
    border: 10px solid #f7efe8;
    border-radius: 0;
}

.album-layout-split-gallery .album-photo-grid {
    grid-template-columns: 1fr 1fr;
    align-self: center;
}

.album-layout-split-gallery .album-photo-grid figure {
    border-radius: 2px;
}

.album-layout-split-gallery .album-page-header {
    text-align: center;
}

.album-page .album-page-header {
    position: relative;
    inset: auto;
    align-self: start;
    max-width: none;
    padding: 0;
    border-radius: 0;
    color: #2e221b;
    background: transparent;
    text-shadow: none;
    backdrop-filter: none;
}

.album-page .album-page-header h3 {
    color: #2e221b;
}

.album-page .album-page-header span {
    margin: clamp(6px, .75vw, 10px) 0 0;
    color: rgba(82, 58, 45, .58);
}

.album-layout-full-photo,
.album-layout-full-bleed,
.album-layout-soft-card {
    grid-template-rows: auto minmax(0, 1fr);
    color: #2e221b;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, .95), rgba(249, 244, 237, .88)),
        radial-gradient(circle at 18% 20%, rgba(255, 221, 176, .24), transparent 36%);
}

.album-layout-full-photo::before,
.album-layout-full-bleed::before {
    display: none;
}

.album-layout-full-photo .album-photo-grid,
.album-layout-full-bleed .album-photo-grid,
.album-layout-soft-card .album-photo-grid {
    grid-row: auto;
    width: 100%;
    margin: 0;
    align-self: stretch;
    justify-self: stretch;
}

.album-layout-full-photo .album-photo-grid figure,
.album-layout-full-bleed .album-photo-grid figure {
    border-radius: clamp(10px, 1.5vw, 20px);
    box-shadow: 0 16px 32px rgba(81, 52, 34, .18);
}

.album-layout-soft-card .album-page-header,
.album-layout-polaroid .album-page-header,
.album-layout-split-gallery .album-page-header {
    align-self: start;
}

/* PSD-inspired editorial pages */
.album-page[class*="album-layout-psd"] {
    grid-template-rows: auto minmax(0, 1fr);
    gap: clamp(16px, 2vw, 32px);
    padding: clamp(22px, 2.8vw, 50px);
    color: #211715;
    background:
        linear-gradient(135deg, #fffdfa 0%, #f8f1e8 100%),
        radial-gradient(circle at 80% 20%, rgba(186, 151, 114, .12), transparent 34%);
}

.album-page[class*="album-layout-psd"]::after {
    background:
        linear-gradient(90deg, rgba(255, 255, 255, .38), transparent 24%, transparent 76%, rgba(108, 72, 44, .08)),
        radial-gradient(circle at 52% 52%, transparent 56%, rgba(98, 64, 38, .06));
}

.album-page[class*="album-layout-psd"] .album-page-header {
    position: relative;
    inset: auto;
    z-index: 4;
    max-width: none;
    padding: 0;
    color: #261a17;
    background: transparent;
    text-shadow: none;
    backdrop-filter: none;
}

.album-page[class*="album-layout-psd"] .album-page-header h3 {
    color: #261a17;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(34px, 4.8vw, 72px);
    font-weight: 400;
    line-height: .9;
    letter-spacing: -.025em;
}

.album-page[class*="album-layout-psd"] .album-page-header span {
    margin: clamp(8px, .9vw, 13px) 0 0;
    color: rgba(58, 40, 33, .58);
    font-size: clamp(9px, .78vw, 13px);
    font-weight: 900;
    letter-spacing: .26em;
    text-transform: uppercase;
}

.album-page[class*="album-layout-psd"] .album-photo-grid {
    z-index: 3;
    min-height: 0;
    align-self: stretch;
    justify-self: stretch;
}

.album-page[class*="album-layout-psd"] .album-photo-grid figure {
    width: min(100%, 72%);
    max-height: 100%;
    aspect-ratio: var(--photo-ratio, 2 / 3);
    border-radius: 3px;
    background: #fff;
    box-shadow: 0 24px 58px rgba(73, 50, 34, .14);
}

.album-page[class*="album-layout-psd"] .album-photo-grid img {
    object-fit: contain;
}

.album-page.album-layout-psd-first-left {
    grid-template-rows: 1fr;
    background: #fff;
}

.album-page.album-layout-psd-first-left .album-page-header {
    display: none;
}

.album-page.album-layout-psd-first-left .album-photo-grid {
    place-items: center;
}

.album-page.album-layout-psd-first-left .album-photo-grid figure {
    width: min(92%, 92%);
    border-radius: 0;
    box-shadow: none;
    background: transparent;
}

.album-page.album-layout-psd-first-left .album-photo-grid figure.photo-landscape {
    width: min(92%, 92%);
}

.album-page.album-layout-psd-first-right {
    grid-template-rows: auto minmax(0, 1fr) auto auto auto;
    text-align: center;
    align-content: center;
    gap: clamp(10px, 1.3vw, 18px);
    background: #fff;
}

.album-page.album-layout-psd-first-right .album-page-header {
    display: flex;
    flex-direction: column;
    align-self: end;
    padding-top: clamp(8px, 1vw, 18px);
}

.album-page.album-layout-psd-first-right .album-page-header h3 {
    font-size: clamp(38px, 5.2vw, 76px);
    letter-spacing: 0;
    margin: 0;
}

.album-page.album-layout-psd-first-right .album-page-header span {
    order: -1;
    margin: 0 0 clamp(4px, .5vw, 8px);
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(10px, 1vw, 16px);
    font-weight: 700;
    font-style: italic;
    letter-spacing: 0;
    text-transform: none;
}

.album-page.album-layout-psd-first-right .album-photo-grid {
    place-items: center;
}

.album-page.album-layout-psd-first-right .album-photo-grid figure {
    width: min(48%, 48%);
    border-radius: 0;
    box-shadow: none;
    background: transparent;
}

.album-page.album-layout-psd-first-right .album-photo-grid figure.photo-landscape {
    width: min(60%, 60%);
}

.album-page.album-layout-psd-layout-two-left {
    grid-template-rows: 1fr;
    padding: 0;
    background: #fff;
}

.album-page.album-layout-psd-layout-two-left .album-page-header {
    display: none;
}

.album-page.album-layout-psd-layout-two-left .album-photo-grid {
    place-items: center;
}

.album-page.album-layout-psd-layout-two-left .album-photo-grid figure {
    width: 100%;
    height: 100%;
    max-height: none;
    aspect-ratio: auto;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
}

.album-page.album-layout-psd-layout-two-left .album-photo-grid img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.album-page.album-layout-psd-layout-two-right {
    grid-template-columns: .64fr 1.36fr;
    grid-template-rows: 1fr;
    grid-template-areas: "type photo";
    align-items: center;
    gap: clamp(12px, 1.8vw, 28px);
    padding: clamp(30px, 3.8vw, 66px) clamp(18px, 2.3vw, 40px);
    background: #fff;
}

.album-page.album-layout-psd-layout-two-right .album-page-header {
    grid-area: type;
    display: grid;
    grid-template-columns: auto auto;
    justify-self: end;
    align-self: center;
    align-items: start;
    gap: clamp(10px, 1.4vw, 18px);
    transform: translateX(clamp(2px, .6vw, 10px));
}

.album-page.album-layout-psd-layout-two-right .album-page-header h3 {
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    margin: 0;
    color: #111;
    font-size: clamp(54px, 5.2vw, 86px);
    font-weight: 400;
    line-height: .78;
    letter-spacing: 0;
}

.album-page.album-layout-psd-layout-two-right .album-page-header span {
    order: -1;
    margin: clamp(8px, 1vw, 14px) 0 0;
    color: #111;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(10px, .85vw, 14px);
    font-weight: 400;
    font-style: italic;
    line-height: 1.2;
    letter-spacing: 0;
    text-align: left;
    text-transform: none;
    white-space: pre-line;
    writing-mode: vertical-rl;
}

.album-page.album-layout-psd-layout-two-right .album-photo-grid {
    grid-area: photo;
    place-items: center;
}

.album-page.album-layout-psd-layout-two-right .album-photo-grid figure {
    width: min(100%, 100%);
    border-radius: 0;
    background: transparent;
    box-shadow: none;
}

.album-page.album-layout-psd-layout-two-right .album-photo-grid figure.photo-landscape {
    width: min(100%, 100%);
}

.album-page.album-layout-psd-layout-two-right .album-page-copy {
    grid-area: type;
    z-index: 5;
    align-self: end;
    justify-self: start;
    width: clamp(112px, 11vw, 176px);
    margin: 0 0 clamp(44px, 5.8vw, 86px) clamp(34px, 4.2vw, 62px);
    color: #111;
    font-size: clamp(10px, .82vw, 13px);
    line-height: 1.08;
    text-align: left;
    transform: rotate(-90deg);
    transform-origin: left bottom;
}

.album-page.album-layout-psd-layout-three-left {
    grid-template-rows: auto minmax(0, 1fr) auto;
    gap: clamp(18px, 2.1vw, 34px);
    padding: clamp(36px, 4.8vw, 84px) clamp(50px, 6vw, 104px) clamp(34px, 4.2vw, 74px);
    background: #fff;
}

.album-page.album-layout-psd-layout-three-left .album-page-header {
    display: flex;
    align-items: baseline;
    justify-self: center;
    width: min(82%, 430px);
    color: #477725;
}

.album-page.album-layout-psd-layout-three-left .album-page-header span {
    order: -1;
    margin: 0 clamp(7px, .7vw, 12px) 0 0;
    color: #477725;
    font-family: "Brush Script MT", "Segoe Script", Georgia, serif;
    font-size: clamp(48px, 5vw, 78px);
    font-weight: 400;
    font-style: italic;
    line-height: .72;
    letter-spacing: -.03em;
    text-transform: none;
    white-space: nowrap;
}

.album-page.album-layout-psd-layout-three-left .album-page-header h3 {
    margin: 0;
    color: #477725;
    font-size: clamp(40px, 4vw, 66px);
    font-weight: 400;
    line-height: .85;
    letter-spacing: -.04em;
}

.album-page.album-layout-psd-layout-three-left .album-photo-grid {
    position: relative;
    display: block;
    justify-self: center;
    width: min(82%, 420px);
    min-height: 0;
}

.album-page.album-layout-psd-layout-three-left .album-photo-grid figure {
    border-radius: 0;
    background: transparent;
    box-shadow: none;
}

.album-page.album-layout-psd-layout-three-left .album-photo-grid .album-photo-1 {
    width: 100%;
    height: 100%;
    max-height: none;
    aspect-ratio: auto;
}

.album-page.album-layout-psd-layout-three-left .album-photo-grid .album-photo-1 img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.album-page.album-layout-psd-layout-three-left .album-photo-grid .album-photo-2 {
    position: absolute;
    left: 50%;
    top: 50%;
    z-index: 5;
    width: min(66%, 250px);
    max-height: 76%;
    padding: clamp(10px, 1.2vw, 18px) clamp(10px, 1.2vw, 18px) clamp(34px, 3.4vw, 58px);
    background: #fff;
    transform: translate(-50%, -50%);
}

.album-page.album-layout-psd-layout-three-left .album-photo-grid .album-photo-2::after {
    content: "MEADOW";
    position: absolute;
    left: 0;
    right: 0;
    bottom: clamp(12px, 1.1vw, 20px);
    color: #6a9448;
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: clamp(12px, 1.05vw, 17px);
    font-weight: 500;
    text-align: center;
}

.album-page.album-layout-psd-layout-three-left .album-page-copy {
    width: min(54%, 270px);
    justify-self: center;
    color: rgba(36, 31, 28, .86);
    font-size: clamp(9px, .72vw, 12px);
    line-height: 1.25;
    text-align: center;
}

.album-page.album-layout-psd-layout-three-right {
    grid-template-rows: 1fr;
    padding: 0;
    background: #fff;
}

.album-page.album-layout-psd-layout-three-right .album-page-header {
    display: none;
}

.album-page.album-layout-psd-layout-three-right .album-photo-grid {
    place-items: center;
}

.album-page.album-layout-psd-layout-three-right .album-photo-grid figure {
    width: 100%;
    height: 100%;
    max-height: none;
    aspect-ratio: auto;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
}

.album-page.album-layout-psd-layout-three-right .album-photo-grid img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.album-page.album-layout-psd-layout-four-left {
    grid-template-columns: .92fr 1.08fr;
    grid-template-rows: auto minmax(0, 1fr) auto;
    grid-template-areas:
        "title title"
        "copy photos"
        "copy photos";
    gap: clamp(16px, 2.2vw, 34px);
    padding: clamp(34px, 4.6vw, 80px) clamp(34px, 4.4vw, 76px);
    background: #fff;
}

.album-page.album-layout-psd-layout-four-left::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: clamp(56px, 8vw, 130px);
    background: #bd3432;
    z-index: 1;
}

.album-page.album-layout-psd-layout-four-left .album-page-header {
    grid-area: title;
    z-index: 4;
    align-self: start;
    justify-self: end;
    width: min(84%, 430px);
    text-align: right;
}

.album-page.album-layout-psd-layout-four-left .album-page-header h3 {
    margin: 0;
    color: #111;
    font-size: clamp(38px, 4.8vw, 74px);
    font-weight: 400;
    line-height: .92;
    letter-spacing: -.045em;
}

.album-page.album-layout-psd-layout-four-left .album-page-header span {
    width: min(72%, 260px);
    margin: clamp(8px, 1vw, 14px) 0 0 auto;
    color: rgba(17, 17, 17, .68);
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(10px, .82vw, 13px);
    font-weight: 400;
    font-style: italic;
    line-height: 1.18;
    letter-spacing: 0;
    text-transform: none;
}

.album-page.album-layout-psd-layout-four-left .album-photo-grid {
    grid-area: auto;
    grid-column: 1 / -1;
    grid-row: 2 / 4;
    z-index: 3;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: 1fr;
    gap: clamp(6px, .8vw, 12px);
    min-height: 0;
    align-self: center;
    justify-self: center;
    width: min(92%, 820px);
    height: 92%;
}

.album-page.album-layout-psd-layout-four-left .album-photo-grid figure {
    border-radius: 0;
    background: transparent;
    box-shadow: none;
}

.album-page.album-layout-psd-layout-four-left .album-photo-grid .album-photo-1 {
    width: 100%;
    height: 100%;
    z-index: 4;
}

.album-page.album-layout-psd-layout-four-left .album-photo-grid .album-photo-2 {
    width: 100%;
    height: 100%;
    z-index: 3;
    padding: 0;
}

.album-page.album-layout-psd-layout-four-left .album-page-copy {
    grid-area: copy;
    z-index: 4;
    align-self: end;
    justify-self: start;
    width: min(96%, 210px);
    margin: 0 0 clamp(18px, 2vw, 32px) clamp(62px, 7vw, 112px);
    color: rgba(17, 17, 17, .84);
    font-size: clamp(10px, .78vw, 12px);
    line-height: 1.18;
    text-align: left;
}

.album-page.album-layout-psd-layout-four-right {
    grid-template-rows: 1fr;
    padding: 0;
    background: #fff;
}

.album-page.album-layout-psd-layout-four-right .album-page-header {
    display: none;
}

.album-page.album-layout-psd-layout-four-right .album-photo-grid {
    place-items: center;
}

.album-page.album-layout-psd-layout-four-right .album-photo-grid figure {
    width: 100%;
    height: 100%;
    max-height: none;
    aspect-ratio: auto;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
}

.album-page.album-layout-psd-layout-four-right .album-photo-grid img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.album-page.album-layout-psd-layout-five-left {
    grid-template-rows: 1fr;
    padding: 0;
    background: #181513;
}

.album-page.album-layout-psd-layout-five-left .album-page-header {
    display: none;
}

.album-page.album-layout-psd-layout-five-left .album-photo-grid {
    place-items: center;
}

.album-page.album-layout-psd-layout-five-left .album-photo-grid figure {
    width: 100%;
    height: 100%;
    max-height: none;
    aspect-ratio: auto;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
}

.album-page.album-layout-psd-layout-five-left .album-photo-grid img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.album-page.album-layout-psd-layout-five-left::before {
    content: "KABU";
    position: absolute;
    right: clamp(44px, 5.2vw, 88px);
    bottom: clamp(48px, 5vw, 86px);
    z-index: 5;
    color: #fff;
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: clamp(15px, 1.45vw, 24px);
    font-weight: 900;
    letter-spacing: -.04em;
}

.album-page.album-layout-psd-layout-five-right {
    grid-template-rows: auto minmax(0, 1fr) auto;
    gap: clamp(20px, 2.3vw, 38px);
    padding: clamp(46px, 5.2vw, 90px) clamp(38px, 4.8vw, 82px) clamp(40px, 4.8vw, 82px);
    text-align: center;
    background: #fff;
}

.album-page.album-layout-psd-layout-five-right::before {
    content: "";
    position: absolute;
    top: 0;
    right: clamp(26px, 3vw, 52px);
    z-index: 4;
    width: clamp(18px, 1.9vw, 32px);
    height: clamp(28px, 3.2vw, 52px);
    background: #9d716b;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 50% 72%, 0 100%);
}

.album-page.album-layout-psd-layout-five-right .album-page-header {
    display: flex;
    flex-direction: column;
    justify-self: center;
    width: min(92%, 420px);
}

.album-page.album-layout-psd-layout-five-right .album-page-header h3 {
    margin: 0;
    color: #a45547;
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: clamp(28px, 3.1vw, 48px);
    font-weight: 400;
    line-height: 1;
    letter-spacing: -.06em;
}

.album-page.album-layout-psd-layout-five-right .album-page-header span {
    order: -1;
    margin: 0 0 clamp(4px, .55vw, 8px);
    color: #36302d;
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: clamp(9px, .78vw, 12px);
    font-weight: 900;
    letter-spacing: -.02em;
    text-transform: uppercase;
}

.album-page.album-layout-psd-layout-five-right .album-photo-grid {
    place-items: center;
}

.album-page.album-layout-psd-layout-five-right .album-photo-grid figure {
    width: min(100%, 88%);
    border-radius: 0;
    background: transparent;
    box-shadow: none;
}

.album-page.album-layout-psd-layout-five-right .album-photo-grid figure.photo-landscape {
    width: min(100%, 100%);
}

.album-page.album-layout-psd-layout-five-right .album-page-copy {
    width: min(74%, 360px);
    color: rgba(50, 43, 39, .72);
    font-size: clamp(10px, .74vw, 12px);
    line-height: 1.28;
    text-align: center;
}

.album-page.album-layout-psd-layout-six-left {
    grid-template-rows: 1fr;
    grid-template-areas: "photo";
    gap: 0;
    padding: 0;
    background: #fff;
}

.album-page.album-layout-psd-layout-six-left::before {
    content: none;
}

.album-page.album-layout-psd-layout-six-left .album-page-header,
.album-page.album-layout-psd-layout-six-left .album-page-copy,
.album-page.album-layout-psd-layout-six-left .album-page-ornament,
.album-page.album-layout-psd-layout-six-left .album-page-footer {
    display: none;
}

.album-page.album-layout-psd-layout-six-left .album-photo-grid {
    grid-area: photo;
    place-items: stretch;
    min-height: 0;
}

.album-page.album-layout-psd-layout-six-left .album-photo-grid figure {
    width: 100%;
    height: 100%;
    max-height: none;
    aspect-ratio: auto;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
}

.album-page.album-layout-psd-layout-six-left .album-photo-grid img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.album-page.album-layout-psd-layout-six-right {
    grid-template-rows: minmax(0, 58%) auto auto auto auto;
    grid-template-areas:
        "photo"
        "title"
        "copy"
        "mark"
        "footer";
    gap: clamp(8px, 1vw, 16px);
    padding: clamp(42px, 4.8vw, 78px) clamp(42px, 5vw, 86px) clamp(28px, 3.4vw, 56px);
    align-content: center;
    text-align: center;
    background: #fff;
}

.album-page.album-layout-psd-layout-six-right::before {
    content: "&";
    position: absolute;
    left: 50%;
    bottom: clamp(48px, 5vw, 82px);
    z-index: 1;
    color: rgba(167, 125, 92, .08);
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(80px, 8vw, 130px);
    font-style: italic;
    line-height: .7;
    transform: translateX(-50%) rotate(-9deg);
}

.album-page.album-layout-psd-layout-six-right .album-page-header {
    grid-area: title;
    z-index: 4;
    align-self: end;
    justify-self: center;
    width: min(82%, 430px);
}

.album-page.album-layout-psd-layout-six-right .album-page-header h3 {
    margin: 0;
    color: #030303;
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: clamp(30px, 3.5vw, 52px);
    font-weight: 900;
    line-height: 1;
    letter-spacing: .02em;
}

.album-page.album-layout-psd-layout-six-right .album-page-header span {
    display: none;
}

.album-page.album-layout-psd-layout-six-right .album-photo-grid {
    grid-area: photo;
    place-items: center;
    min-height: 0;
}

.album-page.album-layout-psd-layout-six-right .album-photo-grid figure {
    width: min(72%, 390px);
    height: auto;
    max-height: none;
    border-radius: 0;
    background: transparent;
    box-shadow: 0 18px 24px rgba(46, 48, 52, .18);
}

.album-page.album-layout-psd-layout-six-right .album-photo-grid img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.album-page.album-layout-psd-layout-six-right .album-page-copy {
    grid-area: copy;
    z-index: 4;
    width: min(76%, 430px);
    color: rgba(20, 18, 18, .92);
    font-size: clamp(10px, .82vw, 13px);
    font-style: italic;
    font-weight: 700;
    line-height: 1.45;
    letter-spacing: .16em;
    text-align: center;
    text-transform: uppercase;
}

.album-page.album-layout-psd-layout-six-right .album-page-ornament {
    grid-area: mark;
    z-index: 4;
    margin: 0;
    color: rgba(0, 0, 0, .48);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: clamp(18px, 2vw, 30px);
    font-weight: 900;
    line-height: .45;
    letter-spacing: -.12em;
}

.album-page.album-layout-psd-layout-six-right .album-page-footer {
    grid-area: footer;
    z-index: 4;
    margin: 0;
    color: rgba(36, 26, 22, .88);
    font-family: "Brush Script MT", "Segoe Script", Georgia, serif;
    font-size: clamp(10px, 1vw, 16px);
    font-style: italic;
    line-height: 1;
    letter-spacing: .04em;
}

.album-page.album-layout-psd-layout-six-right .album-photo-grid figure.photo-landscape {
    width: min(82%, 440px);
}

.album-page.album-layout-psd-layout-seven-left {
    grid-template-rows: auto minmax(0, 1fr) auto;
    grid-template-areas:
        "title"
        "photos"
        "copy";
    gap: clamp(10px, 1.15vw, 20px);
    padding: clamp(34px, 4vw, 70px) clamp(30px, 3.8vw, 64px) clamp(30px, 3.8vw, 64px);
    background:
        linear-gradient(135deg, rgba(255, 255, 255, .96), rgba(249, 249, 247, .98)),
        #fff;
    text-align: center;
}

.album-page.album-layout-psd-layout-seven-left::before {
    content: "";
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: 1;
    width: clamp(42px, 5.6vw, 88px);
    background: linear-gradient(180deg, rgba(125, 130, 121, .26), rgba(125, 130, 121, .44));
}

.album-page.album-layout-psd-layout-seven-left::after {
    content: "";
    position: absolute;
    left: clamp(18px, 2.4vw, 38px);
    right: clamp(38px, 4.8vw, 82px);
    bottom: clamp(26px, 3vw, 52px);
    z-index: 1;
    height: 34%;
    background:
        radial-gradient(circle at 8% 88%, rgba(230, 230, 226, .8) 0 16%, transparent 17%),
        linear-gradient(135deg, transparent 46%, rgba(204, 205, 198, .36) 47% 53%, transparent 54%);
    opacity: .52;
    pointer-events: none;
}

.album-page.album-layout-psd-layout-seven-left .album-page-header {
    grid-area: title;
    z-index: 4;
    position: relative;
    justify-self: end;
    width: min(52%, 330px);
    padding: clamp(12px, 1.4vw, 22px) clamp(10px, 1.2vw, 18px) clamp(8px, 1vw, 14px);
    text-align: right;
}

.album-page.album-layout-psd-layout-seven-left .album-page-header::before {
    content: "";
    position: absolute;
    right: 0;
    top: 0;
    z-index: -1;
    width: clamp(52px, 6vw, 92px);
    height: clamp(52px, 6vw, 92px);
    background: rgba(122, 126, 111, .46);
}

.album-page.album-layout-psd-layout-seven-left .album-page-header h3 {
    margin: 0;
    color: #111;
    font-family: "Brush Script MT", "Segoe Script", Georgia, serif;
    font-size: clamp(36px, 4.4vw, 72px);
    font-weight: 400;
    line-height: .72;
    letter-spacing: .01em;
    text-transform: none;
}

.album-page.album-layout-psd-layout-seven-left .album-page-header span {
    display: block;
    margin-top: clamp(10px, 1vw, 16px);
    color: rgba(17, 17, 17, .82);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: clamp(12px, 1.1vw, 18px);
    font-weight: 400;
    letter-spacing: .42em;
    text-transform: uppercase;
}

.album-page.album-layout-psd-layout-seven-left .album-photo-grid {
    grid-area: photos;
    z-index: 4;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: 1fr;
    gap: clamp(7px, .8vw, 13px);
    align-self: center;
    justify-self: center;
    width: min(104%, 760px);
    height: 100%;
    min-height: 0;
}

.album-page.album-layout-psd-layout-seven-left .album-photo-grid-1 {
    grid-template-columns: 1fr;
}

.album-page.album-layout-psd-layout-seven-left .album-photo-grid figure {
    width: 100%;
    height: 100%;
    max-height: none;
    aspect-ratio: auto;
    border-radius: 0;
    background: #f7f7f3;
    box-shadow: none;
}

.album-page.album-layout-psd-layout-seven-left .album-photo-grid img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.album-page.album-layout-psd-layout-seven-left .album-page-copy {
    grid-area: copy;
    z-index: 4;
    width: min(64%, 430px);
    color: rgba(74, 74, 72, .78);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: clamp(10px, .82vw, 14px);
    font-style: normal;
    line-height: 1.32;
    text-align: center;
}

.album-page.album-layout-psd-layout-seven-right {
    grid-template-rows: 1fr;
    padding: clamp(26px, 3.2vw, 54px);
    background: #fff;
}

.album-page.album-layout-psd-layout-seven-right .album-page-header {
    display: none;
}

.album-page.album-layout-psd-layout-seven-right .album-photo-grid {
    place-items: stretch;
    min-height: 0;
}

.album-page.album-layout-psd-layout-seven-right .album-photo-grid figure {
    width: 100%;
    height: 100%;
    max-height: none;
    aspect-ratio: auto;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
}

.album-page.album-layout-psd-layout-seven-right .album-photo-grid img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.album-page.album-layout-psd-layout-eight-left {
    grid-template-rows: 1fr;
    padding: clamp(30px, 3.8vw, 66px) clamp(36px, 4.4vw, 76px);
    background: #fff;
}

.album-page.album-layout-psd-layout-eight-left .album-page-header {
    display: none;
}

.album-page.album-layout-psd-layout-eight-left .album-photo-grid {
    place-items: stretch;
    min-height: 0;
}

.album-page.album-layout-psd-layout-eight-left .album-photo-grid figure {
    width: 100%;
    height: 100%;
    max-height: none;
    aspect-ratio: auto;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
}

.album-page.album-layout-psd-layout-eight-left .album-photo-grid img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.album-page.album-layout-psd-layout-eight-right {
    grid-template-rows: 1fr;
    padding: 0;
    background:
        linear-gradient(to bottom, #fff 0 61%, #63665c 61% 100%);
}

.album-page.album-layout-psd-layout-eight-right .album-page-header {
    position: absolute;
    left: 31%;
    top: 48%;
    z-index: 6;
    color: #151515;
    text-align: left;
}

.album-page.album-layout-psd-layout-eight-right .album-page-header h3 {
    margin: 0;
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: clamp(20px, 2.1vw, 34px);
    font-weight: 300;
    line-height: .92;
    letter-spacing: -.04em;
    white-space: pre-line;
}

.album-page.album-layout-psd-layout-eight-right .album-page-header span {
    display: none;
}

.album-page.album-layout-psd-layout-eight-right .album-photo-grid {
    position: absolute;
    inset: 0;
    display: block;
    z-index: 4;
}

.album-page.album-layout-psd-layout-eight-right .album-photo-grid figure {
    position: absolute;
    max-height: none;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
}

.album-page.album-layout-psd-layout-eight-right .album-photo-grid .album-photo-1 {
    top: clamp(20px, 2.4vw, 42px);
    left: clamp(24px, 3vw, 52px);
    right: 0;
    width: auto;
    height: 41%;
}

.album-page.album-layout-psd-layout-eight-right .album-photo-grid .album-photo-2 {
    left: 31%;
    top: 53%;
    width: min(46%, 390px);
    height: 35%;
}

.album-page.album-layout-psd-layout-eight-right .album-photo-grid img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.album-page.album-layout-psd-layout-eight-right .album-page-copy {
    position: absolute;
    left: 31%;
    bottom: clamp(26px, 3.2vw, 56px);
    z-index: 6;
    width: min(50%, 420px);
    color: rgba(255, 255, 255, .92);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: clamp(10px, .92vw, 15px);
    font-style: normal;
    line-height: 1.22;
    text-align: left;
}

.album-page.album-layout-psd-layout-eight-right .album-page-copy::before {
    content: "";
    display: block;
    width: 100%;
    height: 3px;
    margin: 0 0 clamp(16px, 1.7vw, 28px);
    background: rgba(255, 255, 255, .82);
}

.album-page.album-layout-psd-layout-nine-left {
    grid-template-rows: 1fr;
    padding: clamp(38px, 4.8vw, 82px) clamp(44px, 5.4vw, 92px);
    background: #fff;
}

.album-page.album-layout-psd-layout-nine-left .album-page-header {
    display: none;
}

.album-page.album-layout-psd-layout-nine-left .album-photo-grid {
    place-items: stretch;
    min-height: 0;
}

.album-page.album-layout-psd-layout-nine-left .album-photo-grid figure {
    width: 100%;
    height: 100%;
    max-height: none;
    aspect-ratio: auto;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
}

.album-page.album-layout-psd-layout-nine-left .album-photo-grid img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.album-page.album-layout-psd-layout-nine-right {
    grid-template-rows: 1fr;
    padding: 0;
    background: #fff;
}

.album-page.album-layout-psd-layout-nine-right::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    height: clamp(16px, 2.1vw, 34px);
    background:
        linear-gradient(90deg,
            transparent 0 0,
            transparent 0 30%,
            #9a7251 30% 48%,
            #b79377 48% 68%,
            #e4cbb4 68% 100%);
}

.album-page.album-layout-psd-layout-nine-right .album-page-header {
    position: absolute;
    left: clamp(54px, 6.6vw, 114px);
    top: clamp(78px, 9vw, 150px);
    z-index: 6;
    display: grid;
    grid-template-columns: auto auto;
    align-items: end;
    gap: clamp(8px, .9vw, 16px);
}

.album-page.album-layout-psd-layout-nine-right .album-page-header h3 {
    margin: 0;
    color: #ba9584;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(34px, 4.4vw, 72px);
    font-style: italic;
    font-weight: 700;
    line-height: .9;
    letter-spacing: .03em;
    white-space: pre-line;
}

.album-page.album-layout-psd-layout-nine-right .album-page-header span {
    margin: 0 0 clamp(7px, .8vw, 13px);
    color: #242424;
    font-family: "Brush Script MT", "Segoe Script", Georgia, serif;
    font-size: clamp(26px, 3vw, 50px);
    font-weight: 400;
    line-height: .8;
    letter-spacing: 0;
    text-transform: none;
    white-space: nowrap;
}

.album-page.album-layout-psd-layout-nine-right .album-photo-grid {
    position: absolute;
    inset: 0;
    z-index: 4;
    display: block;
}

.album-page.album-layout-psd-layout-nine-right .album-photo-grid figure {
    position: absolute;
    max-height: none;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
}

.album-page.album-layout-psd-layout-nine-right .album-photo-grid .album-photo-1 {
    left: clamp(44px, 5.2vw, 90px);
    top: clamp(234px, 28vw, 420px);
    width: min(44%, 430px);
    height: 47%;
}

.album-page.album-layout-psd-layout-nine-right .album-photo-grid .album-photo-2 {
    right: clamp(28px, 3.6vw, 64px);
    top: clamp(108px, 12vw, 206px);
    width: min(42%, 390px);
    height: 46%;
}

.album-page.album-layout-psd-layout-nine-right .album-photo-grid img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.album-page.album-layout-psd-layout-nine-right .album-page-copy {
    position: absolute;
    right: clamp(42px, 5vw, 86px);
    bottom: clamp(92px, 10vw, 158px);
    z-index: 6;
    width: min(40%, 360px);
    color: rgba(61, 54, 51, .78);
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(12px, 1.04vw, 17px);
    font-style: normal;
    line-height: 1.85;
    letter-spacing: .04em;
    text-align: left;
}

.album-page.album-layout-psd-layout-ten-left {
    grid-template-rows: 1fr;
    padding: 0;
    background: #fff;
}

.album-page.album-layout-psd-layout-ten-left .album-page-header {
    position: absolute;
    left: clamp(34px, 4vw, 70px);
    top: clamp(34px, 4vw, 70px);
    z-index: 5;
    display: grid;
    place-content: center;
    width: min(42%, 360px);
    height: 28%;
    background: #cc8e48;
    color: #fff;
    text-align: center;
}

.album-page.album-layout-psd-layout-ten-left .album-page-header h3 {
    margin: 0 0 clamp(5px, .55vw, 9px);
    color: #fff;
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: clamp(13px, 1.25vw, 20px);
    font-weight: 400;
    line-height: 1;
    letter-spacing: .02em;
    text-transform: uppercase;
}

.album-page.album-layout-psd-layout-ten-left .album-page-header span {
    display: block;
    margin: 0;
    color: #fff;
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: clamp(13px, 1.25vw, 20px);
    font-weight: 900;
    line-height: 1;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.album-page.album-layout-psd-layout-ten-left::before {
    content: "";
    position: absolute;
    left: 56%;
    top: 44%;
    z-index: 4;
    width: 2px;
    height: 10%;
    background: rgba(20, 20, 20, .82);
}

.album-page.album-layout-psd-layout-ten-left .album-photo-grid {
    position: absolute;
    inset: 0;
    z-index: 4;
    display: block;
}

.album-page.album-layout-psd-layout-ten-left .album-photo-grid figure {
    position: absolute;
    max-height: none;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
}

.album-page.album-layout-psd-layout-ten-left .album-photo-grid .album-photo-1 {
    right: clamp(34px, 4vw, 70px);
    top: clamp(34px, 4vw, 70px);
    width: min(42%, 360px);
    height: 28%;
}

.album-page.album-layout-psd-layout-ten-left .album-photo-grid .album-photo-2 {
    left: clamp(34px, 4vw, 70px);
    top: 36%;
    width: min(42%, 360px);
    height: 40%;
}

.album-page.album-layout-psd-layout-ten-left .album-photo-grid .album-photo-3 {
    right: clamp(34px, 4vw, 70px);
    bottom: clamp(34px, 4vw, 70px);
    width: min(42%, 360px);
    height: 30%;
    filter: grayscale(1);
}

.album-page.album-layout-psd-layout-ten-left .album-photo-grid img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.album-page.album-layout-psd-layout-ten-left .album-page-ornament {
    position: absolute;
    left: clamp(34px, 4vw, 70px);
    bottom: clamp(130px, 14vw, 220px);
    z-index: 6;
    width: min(38%, 320px);
    margin: 0;
    color: #111;
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: clamp(24px, 2.6vw, 42px);
    font-weight: 900;
    line-height: .78;
    letter-spacing: -.06em;
    text-align: left;
    white-space: pre-line;
}

.album-page.album-layout-psd-layout-ten-left .album-page-ornament::first-line {
    color: #c9934c;
    font-family: "Brush Script MT", "Segoe Script", Georgia, serif;
    font-size: clamp(42px, 5vw, 84px);
    font-weight: 400;
    line-height: .6;
}

.album-page.album-layout-psd-layout-ten-left .album-page-copy {
    position: absolute;
    left: clamp(34px, 4vw, 70px);
    bottom: clamp(34px, 4vw, 70px);
    z-index: 6;
    width: min(40%, 340px);
    color: rgba(28, 24, 23, .86);
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(10px, .92vw, 15px);
    font-style: normal;
    line-height: 1.42;
    text-align: left;
}

.album-page.album-layout-psd-layout-ten-right {
    grid-template-rows: 1fr;
    padding: clamp(34px, 4vw, 70px);
    background: #fff;
}

.album-page.album-layout-psd-layout-ten-right .album-page-header {
    display: none;
}

.album-page.album-layout-psd-layout-ten-right .album-photo-grid {
    place-items: stretch;
    min-height: 0;
}

.album-page.album-layout-psd-layout-ten-right .album-photo-grid figure {
    width: 100%;
    height: 100%;
    max-height: none;
    aspect-ratio: auto;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
}

.album-page.album-layout-psd-layout-ten-right .album-photo-grid img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.album-page-copy {
    z-index: 4;
    width: min(60%, 360px);
    justify-self: center;
    margin: 0;
    color: rgba(38, 26, 23, .9);
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(10px, .85vw, 14px);
    font-style: italic;
    line-height: 1.08;
}

.album-page-ornament,
.album-page-footer {
    z-index: 4;
    justify-self: center;
    color: rgba(38, 26, 23, .72);
    font-family: Georgia, "Times New Roman", serif;
}

.album-page-ornament {
    margin-top: clamp(8px, .9vw, 14px);
    font-size: clamp(8px, .7vw, 11px);
    letter-spacing: .2em;
}

.album-page-footer {
    margin-top: clamp(8px, .9vw, 14px);
    font-size: clamp(9px, .72vw, 12px);
    font-style: italic;
    letter-spacing: .02em;
}

.album-page.album-layout-psd-album-end {
    place-items: center;
    grid-template-rows: minmax(0, 1fr) auto auto auto minmax(0, 1fr);
    gap: clamp(10px, 1.2vw, 18px);
    text-align: center;
    background:
        radial-gradient(circle at 50% 42%, rgba(255, 225, 188, .42), transparent 34%),
        linear-gradient(135deg, rgba(255, 255, 255, .96), rgba(246, 238, 228, .9));
}

.album-page.album-layout-psd-album-end .album-page-header {
    align-self: end;
    padding: 0;
}

.album-page.album-layout-psd-album-end .album-page-header h3 {
    font-size: clamp(52px, 8vw, 104px);
    line-height: .82;
    letter-spacing: .02em;
    text-transform: uppercase;
}

.album-page.album-layout-psd-album-end .album-page-header span {
    margin-top: clamp(8px, 1vw, 14px);
    font-size: clamp(9px, .8vw, 13px);
    letter-spacing: .28em;
    text-transform: uppercase;
}

.album-page.album-layout-psd-album-end .album-photo-grid {
    display: none;
}

.album-page.album-layout-psd-album-end .album-page-copy {
    width: min(72%, 360px);
    font-size: clamp(12px, 1vw, 16px);
    line-height: 1.35;
}

.album-page.album-layout-psd-album-end .album-page-footer {
    align-self: start;
    letter-spacing: .24em;
    text-transform: uppercase;
}

.album-layout-psd-cover-photo .album-photo-grid {
    align-content: end;
}

.album-layout-psd-cover-photo .album-photo-grid figure {
    width: min(96%, 72%);
    justify-self: start;
    align-self: end;
}

.album-layout-psd-cover-photo .album-photo-grid figure.photo-landscape {
    width: min(96%, 90%);
}

.album-layout-psd-cover-photo .album-photo-grid figure.photo-portrait {
    width: min(96%, 72%);
}

.album-layout-psd-poster {
    text-align: center;
}

.album-layout-psd-poster .album-photo-grid {
    place-items: center;
}

.album-layout-psd-poster .album-photo-grid figure {
    width: min(58%, 58%);
    padding: clamp(8px, 1vw, 14px);
    border: 1px solid rgba(58, 40, 33, .12);
    border-radius: 12px;
}

.album-layout-psd-poster .album-photo-grid figure.photo-landscape {
    width: min(74%, 74%);
}

.album-layout-psd-center-hero {
    text-align: center;
}

.album-layout-psd-center-hero .album-page-header h3 {
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: clamp(28px, 3.5vw, 52px);
    font-weight: 900;
    letter-spacing: .03em;
    text-transform: uppercase;
}

.album-layout-psd-center-hero .album-photo-grid {
    place-items: center;
}

.album-layout-psd-center-hero .album-photo-grid figure {
    width: min(86%, 72%);
    border-radius: 18px;
}

.album-layout-psd-center-hero .album-photo-grid figure.photo-landscape {
    width: min(86%, 86%);
}

.album-layout-psd-photo-essay .album-page-header {
    text-align: left;
}

.album-layout-psd-photo-essay .album-photo-grid {
    place-items: end center;
}

.album-layout-psd-photo-essay .album-photo-grid figure {
    width: min(96%, 72%);
    border-radius: 16px;
}

.album-layout-psd-photo-essay .album-photo-grid figure.photo-landscape {
    width: min(96%, 92%);
}

.album-layout-psd-polaroid .album-photo-grid {
    place-items: center;
}

.album-layout-psd-polaroid .album-photo-grid figure {
    width: min(64%, 64%);
    padding: clamp(10px, 1.2vw, 16px) clamp(10px, 1.2vw, 16px) clamp(34px, 3vw, 56px);
    border: 1px solid rgba(58, 40, 33, .12);
    border-radius: 2px;
    transform: rotate(-2deg);
}

.album-layout-psd-duo .album-photo-grid,
.album-layout-psd-duo-clean .album-photo-grid {
    grid-template-columns: 1fr 1fr;
    place-items: center;
    gap: clamp(14px, 1.8vw, 28px);
}

.album-layout-psd-duo .album-photo-grid figure,
.album-layout-psd-duo-clean .album-photo-grid figure {
    width: min(100%, 72%);
    border-radius: 12px;
}

.album-layout-psd-duo .album-photo-grid figure.photo-landscape,
.album-layout-psd-duo-clean .album-photo-grid figure.photo-landscape {
    width: min(100%, 96%);
}

.album-layout-psd-red-block {
    background:
        linear-gradient(135deg, #fffdfa 0%, #f8f1e8 100%),
        linear-gradient(90deg, transparent 0 44%, #bd3432 44% 100%);
}

.album-layout-psd-red-block::before {
    content: "";
    position: absolute;
    right: 0;
    top: 30%;
    width: 72%;
    height: 36%;
    background: #bd3432;
    z-index: 1;
}

.album-layout-psd-red-block .album-photo-grid {
    z-index: 3;
    place-items: center start;
}

.album-layout-psd-red-block .album-photo-grid figure {
    width: min(62%, 62%);
    padding: clamp(8px, 1vw, 14px);
    border-radius: 0;
}

.album-layout-psd-red-block .album-photo-grid figure.photo-landscape {
    width: min(72%, 72%);
}

.album-spread.is-turning {
    pointer-events: none;
}

.album-spread.is-preparing {
    cursor: wait;
}

.album-under-page,
.album-turn-sheet,
.album-fold-page,
.album-reveal-page {
    position: absolute;
    top: 0;
    width: 50%;
    height: 100%;
    pointer-events: none;
}

.album-under-page {
    z-index: 1;
}

.album-under-left {
    left: 0;
}

.album-under-right {
    right: 0;
}

.album-under-page .album-page,
.album-turn-face .album-page,
.album-fold-page .album-page,
.album-reveal-page .album-page {
    width: 100%;
    height: 100%;
    aspect-ratio: auto;
    transform: none;
}

.album-spread.turn-next > .album-page-right,
.album-spread.turn-prev > .album-page-left {
    visibility: hidden;
}

.album-fold-page,
.album-reveal-page {
    z-index: 9;
    overflow: hidden;
    contain: layout paint;
    isolation: isolate;
    will-change: transform, clip-path, opacity;
}

.album-layer-left {
    left: 0;
}

.album-layer-right {
    right: 0;
}

.album-fold-page {
    z-index: 10;
}

.album-reveal-page {
    z-index: 8;
    opacity: 0;
}

.album-spread.turn-next .album-fold-next {
    transform-origin: left center;
    animation: pageFoldToSpineNext .76s linear both;
}

.album-spread.turn-next .album-reveal-next {
    transform-origin: right center;
    animation: pageRevealFromSpineNext .76s linear both;
}

.album-spread.turn-prev .album-fold-prev {
    transform-origin: right center;
    animation: pageFoldToSpinePrev .76s linear both;
}

.album-spread.turn-prev .album-reveal-prev {
    transform-origin: left center;
    animation: pageRevealFromSpinePrev .76s linear both;
}

.album-fold-page::before,
.album-reveal-page::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    z-index: 32;
    width: 18%;
    pointer-events: none;
}

.album-fold-next::before,
.album-reveal-prev::before {
    left: 0;
    background: linear-gradient(90deg, rgba(0, 0, 0, .24), transparent);
}

.album-fold-prev::before,
.album-reveal-next::before {
    right: 0;
    background: linear-gradient(270deg, rgba(0, 0, 0, .24), transparent);
}

.album-turn-sheet {
    z-index: 9;
    contain: layout paint;
    isolation: isolate;
    overflow: hidden;
    will-change: transform, clip-path, opacity;
}

.turn-sheet-next {
    left: 50%;
    transform-origin: left center;
    animation: bookPageNext .62s cubic-bezier(.2, .76, .2, 1) both;
}

.turn-sheet-prev {
    left: 0;
    transform-origin: right center;
    animation: bookPagePrev .62s cubic-bezier(.2, .76, .2, 1) both;
}

.album-turn-face {
    position: absolute;
    inset: 0;
    overflow: hidden;
    background: #fff;
    will-change: opacity, transform;
}

.album-turn-back {
    opacity: 0;
    transform: translateX(0);
}

.album-turn-face::before,
.album-turn-face::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 30;
    pointer-events: none;
}

.album-turn-face::before {
    opacity: .1;
    background: linear-gradient(90deg, rgba(0, 0, 0, .22), transparent 20%, transparent 82%, rgba(255, 255, 255, .24));
}

.album-turn-face::after {
    opacity: .12;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .48) 50%, transparent 76%);
}

.album-turn-sheet::before,
.album-turn-sheet::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    z-index: 32;
    pointer-events: none;
}

.album-turn-sheet::before {
    width: 12%;
    opacity: .42;
    background: linear-gradient(90deg, rgba(0, 0, 0, .24), transparent);
}

.turn-sheet-next::before {
    left: 0;
}

.turn-sheet-prev::before {
    right: 0;
    transform: scaleX(-1);
}

.album-turn-sheet::after {
    width: 5px;
    background: linear-gradient(90deg, rgba(255, 255, 255, .68), rgba(0, 0, 0, .14), rgba(255, 255, 255, .2));
}

.turn-sheet-next::after {
    left: -2px;
}

.turn-sheet-prev::after {
    right: -2px;
}

.album-spread.turn-next::after,
.album-spread.turn-prev::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 7;
    pointer-events: none;
    background: linear-gradient(90deg, transparent 42%, rgba(0, 0, 0, .11) 50%, transparent 58%);
    animation: bookSpreadShadow .76s linear both;
}

.album-spread.turn-next .turn-sheet-next .album-turn-front,
.album-spread.turn-prev .turn-sheet-prev .album-turn-front {
    opacity: 1;
}

.album-spread.turn-next .turn-sheet-next .album-turn-back,
.album-spread.turn-prev .turn-sheet-prev .album-turn-back {
    animation: bookPageBackFade .62s cubic-bezier(.2, .76, .2, 1) both;
}

.album-turn-sheet .album-photo-grid figure,
.album-turn-sheet .album-page[class*="album-layout-psd"] .album-photo-grid figure {
    box-shadow: none;
}

.album-turn-sheet .album-page::after,
.album-turn-sheet .album-page[class*="album-layout-psd"]::after {
    opacity: .55;
}

@keyframes bookPageNext {
    0% {
        clip-path: inset(0 0 0 0);
        opacity: 1;
        transform: translateX(0) scaleX(1) skewY(0deg);
    }
    32% {
        clip-path: inset(0 16% 0 0);
        opacity: .98;
        transform: translateX(-13%) scaleX(.82) skewY(-1.6deg);
    }
    62% {
        clip-path: inset(0 52% 0 0);
        opacity: .9;
        transform: translateX(-38%) scaleX(.46) skewY(-2.2deg);
    }
    82% {
        clip-path: inset(0 82% 0 0);
        opacity: .62;
        transform: translateX(-55%) scaleX(.22) skewY(-1deg);
    }
    100% {
        clip-path: inset(0 100% 0 0);
        opacity: 0;
        transform: translateX(-62%) scaleX(.08) skewY(0deg);
    }
}

@keyframes pageFoldToSpineNext {
    0% {
        opacity: 1;
        transform: scaleX(1);
    }
    5% { transform: scaleX(.9); }
    10% { transform: scaleX(.8); }
    15% { transform: scaleX(.7); }
    20% { transform: scaleX(.6); }
    25% { transform: scaleX(.5); }
    30% { transform: scaleX(.4); }
    35% { transform: scaleX(.3); }
    40% { transform: scaleX(.2); }
    45% {
        opacity: 1;
        transform: scaleX(.1);
    }
    50% {
        opacity: .65;
        transform: scaleX(.02);
    }
    52%, 100% {
        opacity: 0;
        transform: scaleX(0);
    }
}

@keyframes pageRevealFromSpineNext {
    0%, 48% {
        opacity: 0;
        transform: scaleX(0);
    }
    50% {
        opacity: .35;
        transform: scaleX(.02);
    }
    55% { opacity: .7; transform: scaleX(.1); }
    60% { opacity: .86; transform: scaleX(.2); }
    65% { opacity: 1; transform: scaleX(.3); }
    70% { transform: scaleX(.4); }
    75% { transform: scaleX(.5); }
    80% { transform: scaleX(.6); }
    85% { transform: scaleX(.7); }
    90% { transform: scaleX(.8); }
    95% { transform: scaleX(.9); }
    100% {
        opacity: 1;
        transform: scaleX(1);
    }
}

@keyframes pageFoldToSpinePrev {
    0% {
        opacity: 1;
        transform: scaleX(1);
    }
    5% { transform: scaleX(.9); }
    10% { transform: scaleX(.8); }
    15% { transform: scaleX(.7); }
    20% { transform: scaleX(.6); }
    25% { transform: scaleX(.5); }
    30% { transform: scaleX(.4); }
    35% { transform: scaleX(.3); }
    40% { transform: scaleX(.2); }
    45% {
        opacity: 1;
        transform: scaleX(.1);
    }
    50% {
        opacity: .65;
        transform: scaleX(.02);
    }
    52%, 100% {
        opacity: 0;
        transform: scaleX(0);
    }
}

@keyframes pageRevealFromSpinePrev {
    0%, 48% {
        opacity: 0;
        transform: scaleX(0);
    }
    50% {
        opacity: .35;
        transform: scaleX(.02);
    }
    55% { opacity: .7; transform: scaleX(.1); }
    60% { opacity: .86; transform: scaleX(.2); }
    65% { opacity: 1; transform: scaleX(.3); }
    70% { transform: scaleX(.4); }
    75% { transform: scaleX(.5); }
    80% { transform: scaleX(.6); }
    85% { transform: scaleX(.7); }
    90% { transform: scaleX(.8); }
    95% { transform: scaleX(.9); }
    100% {
        opacity: 1;
        transform: scaleX(1);
    }
}

@keyframes bookPagePrev {
    0% {
        clip-path: inset(0 0 0 0);
        opacity: 1;
        transform: translateX(0) scaleX(1) skewY(0deg);
    }
    32% {
        clip-path: inset(0 0 0 16%);
        opacity: .98;
        transform: translateX(13%) scaleX(.82) skewY(1.6deg);
    }
    62% {
        clip-path: inset(0 0 0 52%);
        opacity: .9;
        transform: translateX(38%) scaleX(.46) skewY(2.2deg);
    }
    82% {
        clip-path: inset(0 0 0 82%);
        opacity: .62;
        transform: translateX(55%) scaleX(.22) skewY(1deg);
    }
    100% {
        clip-path: inset(0 0 0 100%);
        opacity: 0;
        transform: translateX(62%) scaleX(.08) skewY(0deg);
    }
}

@keyframes bookSpreadShadow {
    0%, 100% { opacity: 0; }
    35% { opacity: .38; }
    60% { opacity: .24; }
}

@keyframes bookPageBackFade {
    0%, 44% {
        opacity: 0;
        transform: translateX(0) scaleX(.98);
    }
    68% {
        opacity: .46;
    }
    100% {
        opacity: 1;
        transform: translateX(0) scaleX(1);
    }
}

.album-nav,
.album-close {
    position: absolute;
    z-index: 9;
    width: 50px;
    height: 50px;
    display: grid;
    place-items: center;
    border-radius: 50%;
}

.album-nav svg,
.lightbox-nav svg {
    width: 24px;
    height: 24px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2.4;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.album-close {
    top: 18px;
    right: 18px;
    font-size: 28px;
    line-height: 1;
}

.album-nav.prev {
    left: clamp(14px, 2.8vw, 34px);
    top: 50%;
    transform: translateY(-50%);
}

.album-nav.next {
    right: clamp(14px, 2.8vw, 34px);
    top: 50%;
    transform: translateY(-50%);
}

.album-nav:disabled {
    opacity: .35;
    cursor: default;
    transform: translateY(-50%);
}

.album-counter {
    position: absolute;
    left: 50%;
    bottom: 18px;
    transform: translateX(-50%);
}

.video-frame {
    position: relative;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    border-radius: 32px;
}

.video-frame iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

.video-placeholder {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    align-content: center;
    gap: 14px;
    text-align: center;
    background:
        linear-gradient(rgba(8, 9, 13, .36), rgba(8, 9, 13, .74)),
        url("https://res.cloudinary.com/to1jikz1/image/upload/v1789299229/fwuujfteobc8urcrzzdt.webp") center 36% / cover no-repeat;
}

.video-placeholder span {
    width: 72px;
    height: 72px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, .2);
    border: 1px solid rgba(255, 255, 255, .34);
}

.video-placeholder p {
    max-width: 320px;
    margin: 0;
    color: var(--muted);
}

.share-card {
    width: min(760px, 100%);
    margin: 0 auto;
    border-radius: 24px;
    padding: clamp(20px, 3.2vw, 34px);
    text-align: center;
}

.share-card p {
    max-width: 520px;
    margin: 12px auto 0;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.5;
}

.share-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    margin-top: 18px;
}

.share-actions .glass-button {
    min-height: 38px;
    padding: 9px 13px;
    font-size: 13px;
}

footer {
    padding: 44px 20px 62px;
    text-align: center;
    color: var(--faint);
}

footer img {
    width: 58px;
    height: 58px;
    object-fit: contain;
    margin: 0 auto 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .9);
}

footer p {
    margin: 5px 0;
    font-size: 13px;
}

.petal-layer {
    position: fixed;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
    z-index: 20;
}

.petal {
    position: absolute;
    top: -60px;
    width: var(--size);
    height: var(--size);
    object-fit: contain;
    opacity: .86;
    filter: drop-shadow(0 8px 10px rgba(0, 0, 0, .16));
    animation: petalFall var(--duration) linear forwards;
}

@keyframes petalFall {
    0% {
        transform: translate3d(0, -10vh, 0) rotate(0deg);
    }
    100% {
        transform: translate3d(var(--drift), 112vh, 0) rotate(540deg);
    }
}

.lightbox {
    width: min(1180px, calc(100% - 22px));
    max-width: none;
    max-height: calc(100svh - 22px);
    padding: 0;
    border: 0;
    color: var(--text);
    background: transparent;
}

.lightbox::backdrop {
    background: rgba(0, 0, 0, .72);
    backdrop-filter: blur(10px);
}

.lightbox-panel {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 12px;
    align-items: center;
}

.lightbox figure {
    margin: 0;
    overflow: hidden;
    border-radius: 30px;
    background: rgba(255, 255, 255, .08);
}

.lightbox figure img {
    width: 100%;
    max-height: calc(100svh - 40px);
    object-fit: contain;
    background: #050507;
    touch-action: none;
    user-select: none;
    -webkit-user-select: none;
    -webkit-user-drag: none;
}

.lightbox figcaption {
    padding: 14px 18px;
    color: var(--muted);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 20px;
}

.lightbox-close {
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 4;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    font-size: 28px;
    line-height: 1;
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    z-index: 3;
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    border-radius: 50%;
}

.lightbox-nav.prev {
    left: 12px;
}

.lightbox-nav.next {
    right: 12px;
}

.lightbox-tools {
    border-radius: 24px;
    padding: 14px;
}

.lightbox-tools {
    justify-self: center;
    display: flex;
    justify-content: center;
}

.lightbox-tools button {
    min-height: 42px;
    min-width: 150px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 800;
}

.lightbox-tools button svg {
    width: 18px;
    height: 18px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2.2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.lightbox-tools button.is-downloading {
    opacity: .72;
    cursor: wait;
}

@media (max-width: 980px) {
    .hero {
        min-height: auto;
        grid-template-columns: 1fr;
        padding-top: 94px;
    }

    .hero-media {
        position: relative;
        inset: auto;
        width: min(100%, 420px);
        min-height: 460px;
        grid-column: 1;
        grid-row: 1;
        justify-self: center;
    }

    .hero-copy {
        grid-column: 1;
        grid-row: 1;
        align-self: end;
        padding-bottom: 28px;
        text-shadow: 0 3px 22px rgba(0, 0, 0, .72);
    }

    .date-card {
        grid-column: 1;
        justify-self: start;
    }

    .gallery-grid {
        grid-template-columns: repeat(6, 1fr);
    }

    .photo-card,
    .photo-card:nth-child(6n + 1),
    .photo-card:nth-child(8n + 4) {
        grid-column: span 3;
    }

    .caption-card {
        grid-column: 1 / -1;
    }

    .lightbox-panel {
        grid-template-columns: 1fr;
        align-items: stretch;
    }

    .lightbox figure {
        grid-row: auto;
    }

    .lightbox figure img {
        max-height: 58svh;
    }

    .lightbox-nav.next {
        right: 12px;
    }
}

@media (max-width: 640px) {
    .site-header {
        top: 8px;
        width: min(366px, calc(100% - 24px));
        grid-template-columns: auto minmax(0, 1fr) auto;
        justify-content: space-between;
        min-height: 58px;
        padding: 6px 8px;
    }

    .brand span {
        display: none;
    }

    .brand img {
        width: 34px;
        height: 34px;
    }

    .icon-button {
        width: 42px;
        height: 42px;
        font-size: 18px;
    }

    .header-marquee {
        margin: 0 2px;
        mask-image: linear-gradient(90deg, transparent, #000 18%, #000 82%, transparent);
        -webkit-mask-image: linear-gradient(90deg, transparent, #000 18%, #000 82%, transparent);
    }

    .marquee-track {
        animation-duration: 14s;
    }

    .marquee-track span {
        font-size: 15px;
        padding-right: 26px;
    }

    .hero {
        width: min(100% - 18px, 480px);
        min-height: 710px;
        grid-template-columns: minmax(0, 46%) minmax(0, 54%);
        align-items: center;
        gap: 0;
        padding-top: 78px;
        padding-bottom: 20px;
    }

    .hero-media {
        grid-column: 2;
        grid-row: 1;
        width: min(100%, 230px);
        min-height: 430px;
        border-radius: 0 0 170px 170px;
        opacity: .7;
        justify-self: end;
        background-position: center 30%;
    }

    .hero-media::before {
        inset: 12px;
    }

    .hero-copy {
        grid-column: 1 / 3;
        grid-row: 1;
        align-self: center;
        width: min(58%, 218px);
        max-width: none;
        padding-bottom: 0;
        transform: translateY(8px);
    }

    .save {
        margin-bottom: 8px;
        font-size: 10px;
        letter-spacing: .18em;
    }

    .hero h1 {
        max-width: 7.2ch;
        font-size: clamp(39px, 12.4vw, 50px);
        line-height: .86;
    }

    .hero-text {
        max-width: 25ch;
        margin-top: 16px;
        font-size: 12px;
        line-height: 1.48;
    }

    .hero-actions {
        display: flex;
        flex-wrap: nowrap;
        gap: 8px;
        margin-top: 20px;
    }

    .glass-button {
        min-height: 38px;
        min-width: 88px;
        padding: 8px 11px;
        font-size: 11.5px;
        white-space: normal;
        text-align: center;
        line-height: 1.2;
    }

    .date-card {
        position: absolute;
        top: 595px;
        left: 50%;
        right: auto;
        transform: translateX(-50%);
        width: min(316px, calc(100% - 64px));
        padding: 14px 18px;
        border-radius: 18px;
    }

    .date-card span {
        font-size: 46px;
    }

    .date-card small {
        margin-top: 6px;
        font-size: 11px;
        letter-spacing: .18em;
    }

    .gallery-section,
    .book-section,
    .video-section,
    .share-section {
        width: calc(100% - 22px);
        padding: 58px 0;
        scroll-margin-top: 78px;
    }

    .section-heading {
        display: block;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
    }

    .photo-card,
    .photo-card:nth-child(6n + 1),
    .photo-card:nth-child(8n + 4) {
        grid-column: span 1;
        min-height: 188px;
        border-radius: 18px;
    }

    .photo-card:nth-child(5n + 1) {
        grid-column: 1 / -1;
        min-height: 320px;
    }

    .caption-card {
        min-height: 160px;
        padding: 24px 10px;
    }

    .album-cover {
        width: min(320px, 82vw);
        border-radius: 22px;
    }

    .album-cover-kicker,
    .album-cover strong,
    .album-cover em {
        left: 24px;
        right: 24px;
    }

    .album-viewer-shell {
        place-items: start center;
        padding: 92px 8px 72px;
    }

    .album-stage {
        width: min(calc(100vw - 14px), calc((100svh - 128px) * 50 / 35));
    }

    .album-viewer.album-viewer-rotated {
        overflow: hidden;
    }

    .album-viewer.album-viewer-rotated .album-viewer-shell {
        position: fixed;
        top: 50%;
        left: 50%;
        width: 100svh;
        height: 100svw;
        padding: 48px 58px 42px;
        place-items: center;
        transform: translate(-50%, -50%) rotate(90deg);
        transform-origin: center;
    }

    .album-viewer.album-viewer-rotated .album-stage {
        width: min(calc(100svh - 116px), calc((100svw - 96px) * 50 / 35));
    }

    .album-viewer.album-viewer-rotated .album-close {
        top: 12px;
        right: 14px;
    }

    .album-viewer.album-viewer-rotated .album-nav.prev {
        left: 10px;
    }

    .album-viewer.album-viewer-rotated .album-nav.next {
        right: 10px;
    }

    .album-viewer.album-viewer-rotated .album-counter {
        bottom: 10px;
    }

    .album-spread {
        border-radius: 14px;
    }

    .album-page {
        gap: 7px;
        padding: 10px;
    }

    .album-page-header span {
        margin-bottom: 4px;
        font-size: 8px;
        letter-spacing: .14em;
    }

    .album-page-header h3 {
        font-size: clamp(17px, 5.1vw, 28px);
    }

    .album-page[class*="album-layout-psd"] {
        gap: 7px;
        padding: 10px;
    }

    .album-page[class*="album-layout-psd"] .album-page-header h3 {
        font-size: clamp(21px, 6vw, 30px);
        line-height: .9;
    }

    .album-page[class*="album-layout-psd"] .album-page-header span {
        margin-top: 4px;
        font-size: 7px;
        letter-spacing: .18em;
    }

    .album-page.album-layout-psd-first-left .album-photo-grid figure.photo-portrait {
        width: min(86%, 86%);
    }

    .album-page.album-layout-psd-first-right {
        gap: 5px;
    }

    .album-page.album-layout-psd-first-right .album-page-header {
        padding-top: 0;
    }

    .album-page.album-layout-psd-first-right .album-page-header h3 {
        font-size: clamp(25px, 7vw, 34px);
    }

    .album-page.album-layout-psd-first-right .album-page-header span {
        margin-bottom: 2px;
        font-size: 7px;
        letter-spacing: 0;
        text-transform: none;
    }

    .album-page.album-layout-psd-first-right .album-photo-grid figure.photo-portrait {
        width: min(46%, 46%);
    }

    .album-page.album-layout-psd-first-right .album-page-copy {
        width: min(72%, 136px);
    }

    .album-page.album-layout-psd-layout-two-left {
        padding: 0;
    }

    .album-page.album-layout-psd-layout-two-right {
        grid-template-columns: .7fr 1.3fr;
        gap: 5px;
        padding: 12px 10px;
    }

    .album-page.album-layout-psd-layout-two-right .album-page-header {
        gap: 4px;
        transform: translateX(0);
    }

    .album-page.album-layout-psd-layout-two-right .album-page-header h3 {
        font-size: clamp(25px, 7.8vw, 34px);
        line-height: .78;
    }

    .album-page.album-layout-psd-layout-two-right .album-page-header span {
        margin-top: 4px;
        font-size: 6px;
        line-height: 1.05;
        letter-spacing: 0;
        text-transform: none;
    }

    .album-page.album-layout-psd-layout-two-right .album-photo-grid figure.photo-portrait {
        width: min(88%, 88%);
    }

    .album-page.album-layout-psd-layout-two-right .album-page-copy {
        width: 78px;
        margin: 0 0 28px 22px;
        font-size: 6px;
        line-height: 1.02;
    }

    .album-page.album-layout-psd-layout-three-left {
        gap: 6px;
        padding: 14px 14px 12px;
    }

    .album-page.album-layout-psd-layout-three-left .album-page-header {
        justify-self: start;
        width: auto;
        max-width: 100%;
    }

    .album-page.album-layout-psd-layout-three-left .album-page-header span {
        margin-right: 3px;
        font-size: clamp(17px, 5.5vw, 21px);
    }

    .album-page.album-layout-psd-layout-three-left .album-page-header h3 {
        font-size: clamp(17px, 5.3vw, 21px);
        letter-spacing: -.03em;
    }

    .album-page.album-layout-psd-layout-three-left .album-photo-grid {
        width: 74%;
    }

    .album-page.album-layout-psd-layout-three-left .album-photo-grid .album-photo-2 {
        width: min(68%, 86px);
        padding: 5px 5px 17px;
    }

    .album-page.album-layout-psd-layout-three-left .album-photo-grid .album-photo-2::after {
        bottom: 5px;
        font-size: 6px;
    }

    .album-page.album-layout-psd-layout-three-left .album-page-copy {
        width: 78%;
        font-size: 5.5px;
        line-height: 1.08;
    }

    .album-page.album-layout-psd-layout-three-right {
        padding: 0;
    }

    .album-page.album-layout-psd-layout-four-left {
        grid-template-columns: .82fr 1.18fr;
        gap: 6px;
        padding: 14px 10px 12px 16px;
    }

    .album-page.album-layout-psd-layout-four-left::before {
        width: 18px;
    }

    .album-page.album-layout-psd-layout-four-left .album-page-header {
        width: 94%;
    }

    .album-page.album-layout-psd-layout-four-left .album-page-header h3 {
        font-size: clamp(18px, 6vw, 24px);
        line-height: .92;
    }

    .album-page.album-layout-psd-layout-four-left .album-page-header span {
        width: 84%;
        font-size: 5.8px;
        line-height: 1.08;
    }

    .album-page.album-layout-psd-layout-four-left .album-photo-grid {
        grid-column: 1 / -1;
        grid-row: 2 / 4;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        grid-template-rows: 1fr;
        gap: 3px;
        align-self: center;
        justify-self: center;
        width: 94%;
        height: 92%;
    }

    .album-page.album-layout-psd-layout-four-left .album-photo-grid .album-photo-1 {
        width: 100%;
        height: 100%;
    }

    .album-page.album-layout-psd-layout-four-left .album-photo-grid .album-photo-2 {
        width: 100%;
        height: 100%;
        padding: 0;
    }

    .album-page.album-layout-psd-layout-four-left .album-page-copy {
        width: 82px;
        margin: 0 0 12px 18px;
        font-size: 5.2px;
        line-height: 1.06;
    }

    .album-page.album-layout-psd-layout-four-right {
        padding: 0;
    }

    .album-page.album-layout-psd-layout-five-left {
        padding: 0;
    }

    .album-page.album-layout-psd-layout-five-left::before {
        right: 18px;
        bottom: 18px;
        font-size: 8px;
    }

    .album-page.album-layout-psd-layout-five-right {
        gap: 8px;
        padding: 18px 13px 14px;
    }

    .album-page.album-layout-psd-layout-five-right::before {
        right: 12px;
        width: 10px;
        height: 16px;
    }

    .album-page.album-layout-psd-layout-five-right .album-page-header {
        width: 94%;
    }

    .album-page.album-layout-psd-layout-five-right .album-page-header h3 {
        font-size: clamp(13px, 4.8vw, 18px);
        letter-spacing: -.06em;
    }

    .album-page.album-layout-psd-layout-five-right .album-page-header span {
        margin-bottom: 2px;
        font-size: 5.5px;
        letter-spacing: 0;
    }

    .album-page.album-layout-psd-layout-five-right .album-photo-grid figure.photo-landscape {
        width: 92%;
    }

    .album-page.album-layout-psd-layout-five-right .album-page-copy {
        width: 82%;
        font-size: 5.2px;
        line-height: 1.12;
    }

    .album-page.album-layout-psd-layout-six-left {
        grid-template-rows: 1fr;
        gap: 0;
        padding: 0;
    }

    .album-page.album-layout-psd-layout-six-left::before {
        content: none;
    }

    .album-page.album-layout-psd-layout-six-left .album-photo-grid figure {
        width: 100%;
        height: 100%;
    }

    .album-page.album-layout-psd-layout-six-right {
        grid-template-rows: minmax(0, 52%) auto auto auto auto;
        gap: 5px;
        padding: 15px 13px 10px;
    }

    .album-page.album-layout-psd-layout-six-right::before {
        bottom: 12px;
        font-size: 48px;
    }

    .album-page.album-layout-psd-layout-six-right .album-page-header h3 {
        font-size: clamp(13px, 5vw, 18px);
    }

    .album-page.album-layout-psd-layout-six-right .album-page-copy {
        width: 82%;
        font-size: 5.2px;
        line-height: 1.18;
        letter-spacing: .08em;
    }

    .album-page.album-layout-psd-layout-six-right .album-page-ornament {
        font-size: 10px;
        line-height: .55;
    }

    .album-page.album-layout-psd-layout-six-right .album-page-footer {
        font-size: 6px;
        line-height: 1;
    }

    .album-page.album-layout-psd-layout-six-right .album-photo-grid figure.photo-portrait {
        width: min(68%, 150px);
    }

    .album-page.album-layout-psd-layout-six-right .album-photo-grid figure.photo-landscape {
        width: min(82%, 180px);
    }

    .album-page.album-layout-psd-layout-seven-left {
        gap: 4px;
        padding: 11px 12px 9px 10px;
    }

    .album-page.album-layout-psd-layout-seven-left::before {
        width: 17px;
    }

    .album-page.album-layout-psd-layout-seven-left::after {
        left: 8px;
        right: 16px;
        bottom: 8px;
    }

    .album-page.album-layout-psd-layout-seven-left .album-page-header {
        width: 58%;
        padding: 5px 4px 3px;
    }

    .album-page.album-layout-psd-layout-seven-left .album-page-header::before {
        width: 24px;
        height: 24px;
    }

    .album-page.album-layout-psd-layout-seven-left .album-page-header h3 {
        font-size: clamp(18px, 5.8vw, 25px);
        line-height: .72;
    }

    .album-page.album-layout-psd-layout-seven-left .album-page-header span {
        margin-top: 5px;
        font-size: 5.5px;
        letter-spacing: .32em;
    }

    .album-page.album-layout-psd-layout-seven-left .album-photo-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        grid-template-rows: 1fr;
        align-self: center;
        justify-self: center;
        width: 106%;
        height: 100%;
        gap: 3px;
    }

    .album-page.album-layout-psd-layout-seven-left .album-page-copy {
        width: 74%;
        font-size: 5.5px;
        line-height: 1.18;
    }

    .album-page.album-layout-psd-layout-seven-right {
        padding: 12px;
    }

    .album-page.album-layout-psd-layout-eight-left {
        padding: 12px 15px;
    }

    .album-page.album-layout-psd-layout-eight-right {
        background: linear-gradient(to bottom, #fff 0 60%, #63665c 60% 100%);
    }

    .album-page.album-layout-psd-layout-eight-right .album-page-header {
        left: 30%;
        top: 47%;
    }

    .album-page.album-layout-psd-layout-eight-right .album-page-header h3 {
        font-size: clamp(10px, 3.2vw, 14px);
        line-height: .9;
    }

    .album-page.album-layout-psd-layout-eight-right .album-photo-grid .album-photo-1 {
        top: 11px;
        left: 12px;
        height: 40%;
    }

    .album-page.album-layout-psd-layout-eight-right .album-photo-grid .album-photo-2 {
        left: 30%;
        top: 53%;
        width: 47%;
        height: 34%;
    }

    .album-page.album-layout-psd-layout-eight-right .album-page-copy {
        left: 30%;
        bottom: 13px;
        width: 55%;
        font-size: 5.8px;
        line-height: 1.12;
    }

    .album-page.album-layout-psd-layout-eight-right .album-page-copy::before {
        height: 1px;
        margin-bottom: 7px;
    }

    .album-page.album-layout-psd-layout-nine-left {
        padding: 13px 15px;
    }

    .album-page.album-layout-psd-layout-nine-right::after {
        height: 8px;
    }

    .album-page.album-layout-psd-layout-nine-right .album-page-header {
        left: 29px;
        top: 36px;
        gap: 4px;
    }

    .album-page.album-layout-psd-layout-nine-right .album-page-header h3 {
        font-size: clamp(16px, 5vw, 22px);
        line-height: .88;
    }

    .album-page.album-layout-psd-layout-nine-right .album-page-header span {
        margin-bottom: 4px;
        font-size: clamp(12px, 4vw, 18px);
    }

    .album-page.album-layout-psd-layout-nine-right .album-photo-grid .album-photo-1 {
        left: 25px;
        top: 108px;
        width: 43%;
        height: 45%;
    }

    .album-page.album-layout-psd-layout-nine-right .album-photo-grid .album-photo-2 {
        right: 14px;
        top: 48px;
        width: 42%;
        height: 45%;
    }

    .album-page.album-layout-psd-layout-nine-right .album-page-copy {
        right: 20px;
        bottom: 40px;
        width: 40%;
        font-size: 5.8px;
        line-height: 1.55;
        letter-spacing: .02em;
    }

    .album-page.album-layout-psd-layout-ten-left .album-page-header {
        left: 14px;
        top: 14px;
        width: 42%;
        height: 27%;
    }

    .album-page.album-layout-psd-layout-ten-left .album-page-header h3,
    .album-page.album-layout-psd-layout-ten-left .album-page-header span {
        font-size: 6px;
    }

    .album-page.album-layout-psd-layout-ten-left::before {
        left: 56%;
        top: 44%;
        width: 1px;
        height: 10%;
    }

    .album-page.album-layout-psd-layout-ten-left .album-photo-grid .album-photo-1 {
        right: 14px;
        top: 14px;
        width: 42%;
        height: 27%;
    }

    .album-page.album-layout-psd-layout-ten-left .album-photo-grid .album-photo-2 {
        left: 14px;
        top: 36%;
        width: 42%;
        height: 40%;
    }

    .album-page.album-layout-psd-layout-ten-left .album-photo-grid .album-photo-3 {
        right: 14px;
        bottom: 14px;
        width: 42%;
        height: 30%;
    }

    .album-page.album-layout-psd-layout-ten-left .album-page-ornament {
        left: 14px;
        bottom: 54px;
        width: 40%;
        font-size: 12px;
        line-height: .78;
    }

    .album-page.album-layout-psd-layout-ten-left .album-page-ornament::first-line {
        font-size: 22px;
    }

    .album-page.album-layout-psd-layout-ten-left .album-page-copy {
        left: 14px;
        bottom: 14px;
        width: 42%;
        font-size: 5.5px;
        line-height: 1.18;
    }

    .album-page.album-layout-psd-layout-ten-right {
        padding: 14px;
    }

    .album-page-copy {
        width: min(82%, 150px);
        font-size: 7px;
        line-height: 1;
    }

    .album-page-ornament,
    .album-page-footer {
        margin-top: 2px;
        font-size: 6px;
    }

    .album-photo-grid {
        gap: 6px;
    }

    .album-photo-grid figure {
        border-radius: 10px;
    }

    .album-photo-grid figcaption {
        left: 6px;
        bottom: 6px;
        min-width: 24px;
        padding: 4px 6px;
        font-size: 9px;
    }

    .album-page-quote {
        font-size: clamp(12px, 3.4vw, 17px);
        line-height: 1.12;
    }

    .album-close {
        top: 10px;
        right: 10px;
        width: 42px;
        height: 42px;
    }

    .album-nav {
        top: auto;
        bottom: auto;
        width: 42px;
        height: 42px;
        background: rgba(20, 21, 28, .42);
    }

    .album-nav.prev {
        top: min(382px, calc(100svh - 96px));
        left: calc(50% - 76px);
        transform: none;
    }

    .album-nav.next {
        top: min(382px, calc(100svh - 96px));
        right: calc(50% - 76px);
        transform: none;
    }

    .album-nav:disabled {
        transform: none;
    }

    .album-counter {
        bottom: 24px;
        width: max-content;
        margin-top: 0;
        font-size: 13px;
    }

    .video-frame,
    .share-card {
        border-radius: 20px;
    }

    .share-card {
        padding: 18px 12px;
    }

    .share-card h2 {
        font-size: clamp(26px, 8vw, 38px);
    }

    .share-card p {
        margin-top: 10px;
        font-size: 13px;
        line-height: 1.45;
    }

    .share-actions {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 8px;
        margin-top: 14px;
    }

    .share-actions .glass-button {
        min-height: 42px;
        padding: 9px 10px;
        font-size: 12px;
    }

    .share-actions .primary {
        grid-column: 1 / -1;
    }
}

@media (prefers-reduced-motion: reduce) {
    .reveal-slide {
        opacity: 1 !important;
        transform: none !important;
    }

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