﻿@font-face {
    font-family: "Alibaba PuHuiTi";
    src: url("../assets/fonts/%E9%98%BF%E9%87%8C%E5%B7%B4%E5%B7%B4%E6%99%AE%E6%83%A0%E4%BD%93/Alibaba-PuHuiTi-Light.otf") format("opentype");
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Alibaba PuHuiTi";
    src: url("../assets/fonts/%E9%98%BF%E9%87%8C%E5%B7%B4%E5%B7%B4%E6%99%AE%E6%83%A0%E4%BD%93/Alibaba-PuHuiTi-Regular.otf") format("opentype");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Alibaba PuHuiTi";
    src: url("../assets/fonts/%E9%98%BF%E9%87%8C%E5%B7%B4%E5%B7%B4%E6%99%AE%E6%83%A0%E4%BD%93/Alibaba-PuHuiTi-Medium.otf") format("opentype");
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Alibaba PuHuiTi";
    src: url("../assets/fonts/%E9%98%BF%E9%87%8C%E5%B7%B4%E5%B7%B4%E6%99%AE%E6%83%A0%E4%BD%93/Alibaba-PuHuiTi-Bold.otf") format("opentype");
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Alibaba PuHuiTi";
    src: url("../assets/fonts/%E9%98%BF%E9%87%8C%E5%B7%B4%E5%B7%B4%E6%99%AE%E6%83%A0%E4%BD%93/Alibaba-PuHuiTi-Heavy.otf") format("opentype");
    font-weight: 800;
    font-style: normal;
    font-display: swap;
}
html,
body{
    height: 100%;
    width: 100%;
}

body{
    font-family: "Alibaba PuHuiTi", arial,helvetica,sans-serif;
    margin: 0;
    overflow-x: hidden;
    overflow-y: auto;
}

:root{
    --lamp-on: 0;
    --lamp-bulb-color: rgb(226, 232, 240);
    --lamp-bulb-opacity: 0.18;
    --lamp-stroke: #9ca3af;
    --lamp-cord: #9ca3af;
    --lamp-cap: #6b7280;
    --lamp-filament: #cbd5e1;
    --lamp-shine: rgba(255, 255, 255, 0.35);
    --lamp-flash: rgba(255, 255, 255, 0);
    --section-svg-bg: url("../assets/images/background/background-grid-white.svg");
}

.toggle-scene{
    position: fixed;
    top: clamp(12px, 2vh, 24px);
    right: clamp(12px, 2vw, 28px);
    width: clamp(90px, 12vw, 160px);
    height: auto;
    overflow: visible;
    z-index: 1500;
}

.toggle-scene__cord{
    stroke: var(--lamp-cord);
    cursor: grab;
    display: none;
}

.toggle-scene__cord:active{
    cursor: grabbing;
}

.toggle-scene__cord-end{
    stroke: var(--lamp-cord);
    fill: var(--lamp-cord);
}

.toggle-scene__dummy-cord{
    stroke: var(--lamp-cord);
    stroke-width: 6;
}

.toggle-scene__hit-spot{
    cursor: grab;
}

.bulb__bulb{
    stroke: var(--lamp-stroke);
    fill: var(--lamp-bulb-color);
    opacity: var(--lamp-bulb-opacity);
    transition: opacity 0.25s ease, fill 0.25s ease, stroke 0.25s ease;
}

.bulb__cap{
    fill: var(--lamp-cap);
    stroke: var(--lamp-stroke);
    transition: fill 0.25s ease, stroke 0.25s ease;
}

.bulb__cap-outline{
    stroke: var(--lamp-stroke);
    transition: stroke 0.25s ease;
}

.bulb__cap-shine{
    fill: var(--lamp-shine);
    transition: fill 0.25s ease;
}

.bulb__filament{
    stroke: var(--lamp-filament);
    opacity: calc(0.3 + (var(--lamp-on) * 0.6));
    transition: stroke 0.25s ease, opacity 0.25s ease;
}

.bulb__shine{
    stroke: var(--lamp-shine);
    opacity: calc(0.2 + (var(--lamp-on) * 0.5));
    transition: opacity 0.25s ease, stroke 0.25s ease;
}

.bulb__flash{
    stroke: var(--lamp-flash);
    opacity: calc(var(--lamp-on) * 0.6);
    transition: opacity 0.25s ease, stroke 0.25s ease;
}

body.is-preloading{
    overflow: hidden;
}

.preloader{
    position: fixed;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f7f4ef;
    z-index: 9999;
    transition: opacity 0.45s ease, visibility 0.45s ease;
}

.preloader.is-hidden{
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.preloader-inner{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.preloader-avatar{
    width: 72px;
    height: 72px;
    border-radius: 50%;
    object-fit: cover;
    transform-origin: 50% 50%;
    animation: preloader-sway 1.3s ease-in-out infinite;
}

.preloader-text{
    margin: 0;
    font-size: 1.1rem;
    color: #1f1f1f;
    letter-spacing: 0.02em;
}

@keyframes preloader-sway{
    0%{
        transform: rotate(-6deg);
    }
    15%{
        transform: rotate(6deg);
    }
    32%{
        transform: rotate(-3deg);
    }
    44%{
        transform: rotate(3deg);
    }
    58%{
        transform: rotate(-2deg);
    }
    70%{
        transform: rotate(2deg);
    }
    84%{
        transform: rotate(-1.5deg);
    }
    92%{
        transform: rotate(1.5deg);
    }
    100%{
        transform: rotate(-6deg);
    }
}

#fullpage{
    position: relative;
    height: auto;
    width: 100%;
}

h1{
    font-size: 6em;
    font-size: calc(2em + 2vw);
}

.intro p{
    width: 50%;
    margin: 0.5em auto;
    font-size: 1.65em;
}

.split-text{
    perspective: 600px;
}

.split-word,
.split-char{
    display: inline-block;
    will-change: transform;
}

.split-line{
    display: block;
    will-change: transform;
}

#section1{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: clamp(24px, 4vw, 56px);
    padding: clamp(24px, 6vh, 64px) 6vw;
    box-sizing: border-box;
}

#section1 .intro{
    position: relative;
    left: auto;
    top: auto;
    transform: none;
    width: 44vw;
    max-width: 520px;
    text-align: center;
}

#section1 .intro p{
    width: 100%;
    margin: 0.5em auto 0;
}

#section1 .intro .intro-detail{
    text-align: justify;
    text-justify: inter-ideograph;
    text-indent: 2em;
    background: rgba(241, 246, 246, 0.996);
    border-radius: 18px;
    padding: 14px 18px;
    box-sizing: border-box;
}

#section1 .intro-visual{
    position: relative;
    right: auto;
    top: auto;
    transform: none;
    width: 32vw;
    max-width: 420px;
    height: auto;
    object-fit: contain;
    margin-left: auto;
}

.section{
    color: #5396f6;
    text-align:center;
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 100vh;
    background-color: #ffffff;
    overflow: hidden;
    z-index: 1;
    box-sizing: border-box;

}

.section .fp-bg{
    position: absolute;
    inset: 0;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    z-index: 0;
    pointer-events: none;
    will-change: transform;
    transform: translate3d(0,0,0);
    opacity: 0.5;
}

.scroll-indicator{
    position: fixed;
    left: 50%;
    bottom: clamp(16px, 3vh, 28px);
    transform: translateX(-50%);
    width: 46px;
    height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #5396f6;
    opacity: 0.85;
    z-index: 1200;
    pointer-events: none;
}

.scroll-indicator__icon{
    width: 100%;
    height: 100%;
    animation: scroll-bounce 1.6s ease-in-out infinite;
}

@keyframes scroll-bounce{
    0%{
        transform: translateY(0);
    }
    50%{
        transform: translateY(8px);
    }
    100%{
        transform: translateY(0);
    }
}


.section > :not(.fp-bg){
    position: relative;
    z-index: 1;
}

.section .bg-elements{
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}

.section .bg-element{
    position: absolute;
    opacity: 0;
    will-change: transform, opacity;
}

.inner-scroll{
    max-height: 70vh;
    overflow: auto;
    overscroll-behavior: contain;
    padding: 0 8px 12px;
    margin: 2vh auto 0;
    max-width: 520px;
}

#sectionSlides .venue-intro{
    width: min(70vw, 720px);
    margin: 2vh auto 0;
    font-size: clamp(1rem, 1.4vw, 1.4rem);
    line-height: 1.6;
    color: #1e6bff;
}

#sectionSlides .venue-title{
    position: relative;
    top: 0;
    left: 0;
}

#sectionSlides .venue-intro p{
    margin: 0.6em 0;
}

#sectionSlides .venue-gallery{
    width: min(90vw, 1100px);
    margin: 3vh auto 0;
    overflow: hidden;
}

#sectionSlides .horiz-gallery-wrapper,
#sectionSlides .horiz-gallery-strip{
    display: flex;
    flex-wrap: nowrap;
    will-change: transform;
}

#sectionSlides .horiz-gallery-wrapper{
    overflow: hidden;
}

#sectionSlides .project-wrap{
    flex: 0 0 auto;
    width: clamp(220px, 28vw, 340px);
    padding: 0 1.2vw;
    box-sizing: border-box;
}

#sectionSlides .project-wrap img{
    width: 100%;
    aspect-ratio: 16 / 9;
    height: auto;
    display: block;
    object-fit: cover;
    border-radius: 16px;
}

#section5{
    display: flex;
    align-items: center;
    justify-content: center;
    padding: clamp(32px, 8vh, 96px) 6vw;
    background-color: #ffffff;
    text-align: left;
    color: #0b0f19;
    position: relative;
}

#section5 .fp-bg{
    background-image: none;
    opacity: 1;
}

#section5 .invitation-tilt{
    width: min(900px, 90vw);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;
    gap: clamp(18px, 4vw, 48px);
    perspective: 650px;
    position: relative;
    z-index: 2;
}

#section5 .invitation-mobile-header{
    display: none;
    width: 100%;
    align-items: center;
    justify-content: center;
}

#section5 .invitation-mobile-header img{
    width: min(70vw, 320px);
    height: auto;
    display: block;
}

#section5 .invitation-card{
    width: 100%;
    background: radial-gradient(89.08% 84.62% at 16.54% 78.46%, #fafcfe 0%, #a8d3ff 40%, #85e3f2 72%, #54c9f3 100%);
    border-radius: 28px;
    padding: clamp(24px, 6vw, 56px);
    border: 1px solid rgba(15, 23, 42, 0.08);
    box-shadow: 0 30px 80px rgba(16, 24, 40, 0.18);
    position: relative;
    transform-style: preserve-3d;
    will-change: transform;
    overflow: hidden;
    backface-visibility: hidden;
}

#section5 .invitation-card::before{
    content: '';
    position: absolute;
    inset: -30%;
    background: radial-gradient(60% 60% at 20% 20%, rgba(255, 255, 255, 0.65) 0%, rgba(255, 255, 255, 0) 60%);
    opacity: 0.7;
    pointer-events: none;
}

#section5 .invitation-card-inner{
    position: relative;
    transform: translateZ(24px);
    will-change: transform;
}

#section5 .invitation-kicker{
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    font-size: 0.75rem;
    color: #64748b;
}

#section5 .invitation-header h1{
    margin: 10px 0 12px;
    font-size: clamp(2.4rem, 6vw, 4.2rem);
    color: #0b0f19;
}

#section5 .invitation-tagline{
    margin: 0 0 24px;
    font-size: clamp(1rem, 1.8vw, 1.3rem);
    color: #475569;
    line-height: 1.6;
}

#section5 .invitation-body{
    display: grid;
    gap: 12px;
    margin-bottom: 28px;
}

#section5 .invitation-row{
    display: grid;
    grid-template-columns: minmax(56px, 80px) 1fr;
    gap: 16px;
    align-items: start;
    font-size: clamp(1rem, 1.6vw, 1.2rem);
}

#section5 .invitation-label{
    color: #64748b;
    font-weight: 600;
    letter-spacing: 0.08em;
}

#section5 .invitation-value{
    color: #0f172a;
}

#section5 .invitation-actions{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 16px;
}

#section5 .invitation-btn{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    border-radius: 999px;
    background: #5396f6;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    box-shadow: 0 12px 30px rgba(83, 150, 246, 0.35);
}

#section5 .invitation-note{
    margin: 0;
    color: #64748b;
    font-size: 0.95rem;
}

#section5 .bg-elements{
    display: none;
}

#home .fp-bg {
    background-image: var(--section-svg-bg);
}

#section1 .fp-bg{
    background-image: url("../assets/images/background/background01.webp");
    background-position: center 80%;
}

.home-logo {
    width: 40vw;
    max-width: 420px;
    height: auto;
    display: block;
    margin: 0;
}

#home .home-logo{
    position: absolute;
    top: 50%;
    left: 8vw;
    transform: translateY(-50%);
    z-index: 2;
}

#home .home-logos{
    position: absolute;
    top: 50%;
    right: 8vw;
    transform: translateY(-50%);
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    width: min(30vw, 320px);
    aspect-ratio: 1;
    align-items: center;
    justify-items: center;
    z-index: 2;
}

#home .home-logos img{
    width: 100%;
    height: auto;
    object-fit: contain;
    max-width: 160px;
}

#home .home-hand{
    position: absolute;
    width: clamp(180px, 32vw, 420px);
    height: auto;
    pointer-events: none;
    z-index: 1;
    will-change: transform, opacity;
}

#home .home-hand-left{
    top: -6vh;
    left: 0;
    transform-origin: left center;
}

#home .home-hand-right{
    bottom: -8vh;
    right: 0;
    transform-origin: right center;
}

#section4 .fp-bg{
    background-image: var(--section-svg-bg);
}

#section4 .reservation-sequence{
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
}

#section4 .reservation-sequence-canvas{
    width: 100%;
    height: 100%;
    display: block;
}


#section6{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: clamp(12px, 3vh, 28px);
    padding: clamp(24px, 6vh, 64px) 6vw clamp(48px, 8vh, 96px);
    box-sizing: border-box;
    height: auto;
    min-height: 100vh;
    overflow: visible;
}

#section6 .product-wrapper{
    width: min(90vw, 1200px);
}

#section6 .product-grid{
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: repeat(2, minmax(0, 1fr));
    gap: clamp(12px, 2.4vw, 28px);
}

#section6 .product-card{
    width: 100%;
    aspect-ratio: 1 / 1;
    padding: 0px;
    border: 2px dashed rgba(83, 150, 246, 0.35);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.6);
}

#section6 .product-image{
    width: 100%;
    height: 100%;
    border-radius: 12px;
    background-position: center;
    background-size: cover;
    cursor: pointer;
    box-shadow: 0 14px 24px rgba(19, 41, 93, 0.16);
}

#section6 .product-modal{
    position: fixed;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    z-index: 2000;
}

#section6 .product-modal .product-content{
    height: min(86vh, 720px);
    aspect-ratio: 4 / 5;
    max-width: 80vw;
    position: relative;
}

#section6 .product-modal .product-image{
    box-shadow: 0 24px 50px rgba(15, 23, 42, 0.28);
    border-radius: 20px;
}

#section6 .product-overlay{
    position: absolute;
    inset: 0;
    background: rgba(10, 16, 28, 0.75);
    opacity: 0;
}

#section6 .product-image-1{
    background-image: url("https://zhaopian-1388096518.cos.ap-shanghai.myqcloud.com/chanpin%20%281%29.JPEG");
}

#section6 .product-image-2{
    background-image: url("https://zhaopian-1388096518.cos.ap-shanghai.myqcloud.com/chanpin%20%282%29.JPEG");
}

#section6 .product-image-3{
    background-image: url("https://zhaopian-1388096518.cos.ap-shanghai.myqcloud.com/chanpin%20%283%29.JPEG");
}

#section6 .product-image-4{
    background-image: url("https://zhaopian-1388096518.cos.ap-shanghai.myqcloud.com/chanpin%20%284%29.JPEG");
}

#section6 .product-image-5{
    background-image: url("https://zhaopian-1388096518.cos.ap-shanghai.myqcloud.com/chanpin%20%285%29.JPEG");
}

#section6 .product-image-6{
    background-image: url("https://zhaopian-1388096518.cos.ap-shanghai.myqcloud.com/chanpin%20%286%29.JPEG");
}

#section6 .product-image-7{
    background-image: url("https://zhaopian-1388096518.cos.ap-shanghai.myqcloud.com/chanpin%20%287%29.JPEG");
}

#section6 .product-image-8{
    background-image: url("https://zhaopian-1388096518.cos.ap-shanghai.myqcloud.com/chanpin%20%288%29.JPEG");
}

#section6 .product-image-9{
    background-image: url("https://zhaopian-1388096518.cos.ap-shanghai.myqcloud.com/chanpin%20%289%29.JPEG");
}

#section6 .fp-bg{
    background-image: url('../assets/images/background/bg3.png');
}
/* Elements */
.box{
    height: 60vh;
    padding: 30px 0 0 0;
    text-align: center;
    background: #4e4e4e;
    width: 400px;
    margin: 30px auto;
    border-radius: 12px;
    font-size: 1.4em;
}




#sectionSlides .fp-bg{
    background-image: url("../assets/images/background/bg5.png");
}

#section2 .fp-bg{
    background-image: radial-gradient(circle at 18% 20%, rgba(186, 210, 255, 0.95) 0%, rgba(186, 210, 255, 0) 55%),
                      radial-gradient(circle at 70% 65%, rgba(255, 204, 220, 0.85) 0%, rgba(255, 204, 220, 0) 60%),
                      linear-gradient(120deg, rgba(214, 231, 255, 0.95) 0%, rgba(238, 244, 255, 0.9) 45%, rgba(255, 232, 238, 0.9) 100%);
    opacity: 1;
}

#section2{
    color: #0b0f19;
    text-align: left;
}

#section2 .timeline-layout{
    position: relative;
    width: 100%;
    height: 100%;
    padding: clamp(48px, 8vh, 96px) clamp(28px, 8vw, 120px);
    box-sizing: border-box;
}

#section2 .timeline-hero{
    max-width: min(70vw, 980px);
    position: relative;
    z-index: 1;
}

#section2 .timeline-hero-title{
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: clamp(4rem, 9.4vw, 10rem);
    line-height: 0.9;
    letter-spacing: -0.04em;
    margin: 0;
    color: rgba(0, 0, 0, 0.95);
    text-transform: uppercase;
}

#section2 .timeline-copy{
    position: absolute;
    top: clamp(56px, 18vh, 180px);
    right: clamp(28px, 8vw, 120px);
    width: min(32vw, 430px);
    font-size: clamp(1rem, 1.15vw, 1.25rem);
    line-height: 1.6;
    color: rgba(15, 23, 42, 0.86);
    z-index: 3;
}

#section2 .timeline-copy p{
    margin: 0 0 1.4em;
}

#section2 .timeline-cards{
    position: absolute;
    inset: 0;
    pointer-events: none;
    perspective: 1200px;
    z-index: 2;
}

#section2 .timeline-card{
    position: absolute;
    left: 0;
    top: 0;
    width: clamp(240px, 22vw, 340px);
    opacity: 0;
    border-radius: 22px;
    padding: 18px 18px 16px;
    box-sizing: border-box;
    background: rgba(255, 255, 255, 0.38);
    border: 1px solid rgba(255, 255, 255, 0.66);
    box-shadow: 0 22px 60px rgba(0, 0, 0, 0.16);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    transform-style: preserve-3d;
    will-change: transform;
}

#section2 .timeline-card::before{
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.64) 0%, rgba(255, 255, 255, 0.28) 52%, rgba(255, 255, 255, 0.14) 100%);
    pointer-events: none;
}

#section2 .timeline-card-inner{
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

#section2 .timeline-card-media{
    width: 100%;
    aspect-ratio: 16 / 10;
    border-radius: 16px;
    overflow: hidden;
    background: rgba(0, 0, 0, 0.06);
}

#section2 .timeline-card-media img{
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    filter: saturate(0.95) contrast(1.05);
}

#section2 .timeline-card-title{
    margin: 0;
    font-size: 1.25rem;
    line-height: 1.2;
    color: rgba(2, 6, 23, 0.92);
}

#section2 .timeline-card-text{
    margin: 0;
    font-size: 0.98rem;
    line-height: 1.55;
    color: rgba(31, 41, 55, 0.88);
}

#section2 .timeline-card-footer{
    font-size: 0.78rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(71, 85, 105, 0.82);
}

@media (max-width: 900px){
    .section{
        height: 100dvh;
        min-height: 100dvh;
    }

    #home{
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: clamp(12px, 4vh, 24px);
        padding: clamp(24px, 10vh, 88px) 8vw;
        text-align: center;
    }

    #home .home-logo{
        position: relative;
        top: auto;
        left: auto;
        transform: none;
        width: clamp(200px, 70vw, 320px);
        margin: 0 auto;
        align-self: center;
        order: 1;
    }

    #home .home-logos{
        position: relative;
        top: auto;
        right: auto;
        transform: none;
        width: min(80vw, 320px);
        gap: 10px;
        margin: 0 auto;
        align-self: center;
        order: 2;
    }

    #home .home-hand{
        width: clamp(140px, 46vw, 240px);
    }

    #home .home-hand-left{
        top: -4vh;
        left: -6vw;
    }

    #home .home-hand-right{
        bottom: -6vh;
        right: -6vw;
    }

    #section1{
        flex-direction: column;
        justify-content: center;
        gap: clamp(16px, 4vh, 32px);
        padding: clamp(20px, 6vh, 48px) 7vw;
        position: relative;
        top: 0;
        left: 0;
    }

    #section1 .intro{
        width: min(86vw, 560px);
        max-width: none;
        position: relative;
        top: 0;
        left: 0;
    }

    #section1 .intro h1{
        font-size: clamp(1.9rem, 6vw, 2.6rem);
        position: relative;
        top: 15px;
        left: 0;
    }

    #section1 .intro p{
        line-height:1.1;
        font-size: clamp(1rem, 2.6vw, 1.2rem);
        position: relative;
        top: 0;
        left: 0;
    }

    #section1 .intro-visual{
        width: min(78vw, 360px);
        margin-left: 0;
        position: relative;
        top: -2vh;
        left: 0;
    }
  


    #sectionSlides .venue-intro{
        width: min(88vw, 560px);
        font-size: clamp(0.95rem, 3.4vw, 1.2rem);
        position: relative;
        top: 10vh;
        left: 0;
    }

    #sectionSlides .venue-gallery{
        width: 99vw;
        margin-top: clamp(12px, 3vh, 24px);
        position: relative;
        top: 10vh;
        left: 0;
    }

    #sectionSlides .project-wrap{
        width: clamp(300px, 90vw, 600px);
        padding: 0 1.5vw;
    }

    #sectionSlides .project-wrap img{
        aspect-ratio: 4 / 3;
        border-radius: 18px;
    }

    #sectionSlides .venue-title{
        position: relative;
        top: 10vh;
        left: 0;
    }

    #section2 .timeline-copy{
        position: static;
        width: 100%;
        max-width: 520px;
        margin-top: 18px;
    }

    #section2 .timeline-card{
        width: clamp(220px, 70vw, 320px);
    }

    #section5 .invitation-tilt{
        flex-direction: column;
        gap: clamp(12px, 2vh, 20px);
        position: absolute;
        left: 50%;
        bottom: var(--invitation-card-bottom-offset, 8vh);
        transform: translateX(-50%);
        --invitation-card-bottom-offset: 15vh;
        width: calc(100vw - 10vh);
    }

    #section5 .invitation-mobile-header{
        display: flex;
        margin-bottom: clamp(6px, 1.5vh, 12px);
    }

    #section5 .invitation-card{
        width: 100%;
    }
}

#fullpage .section:not(#home) .fp-bg{
    background-image: var(--section-svg-bg);
}
