﻿/* ================================
   Reset / Base
================================ */

*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --white: #ffffff;
    /* 奶白 */
    --paper: #faf9f8;
    /* 霧粉灰 */
    --mist: #f2edf1;
    /* 奶芋色 */
    --lavender: #e8deec;
    /* 灰紫 */
    --lavender-2: #d2c3d7;
    /* 主色 */
    --purple: #8f729d;
    /* 粉芋色 */
    --purple-soft: #c8b2cb;
    /* 深灰黑 */
    --ink: #1f1b22;
    /* 次黑 */
    --ink-2: #4a4450;
    /* 灰 */
    --gray: #a49ca8;
    /*玫瑰金*/
    --rose-gold: #d8b9c7;
    /*香檳金*/
    --champagne: #e8d9c7;
    --header-height: 82px;
    --container-width: 90%;
    --container-max: 1480px;
    --ease-main: cubic-bezier(.19, 1, .22, 1);
    --ease-soft: cubic-bezier(.22, .61, .36, 1);
    --transition: all .45s cubic-bezier(.22, .61, .36, 1);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', 'Noto Serif TC', sans-serif;
    background: var(--paper);
    color: var(--ink);
    overflow-x: hidden;
}

    body.menu-open {
        overflow: hidden;
    }

img {
    display: block;
    width: 100%;
}

a {
    color: inherit;
    text-decoration: none;
}

button {
    border: none;
    background: none;
    cursor: pointer;
    font-family: inherit;
}

.container {
    width: var(--container-width);
    max-width: var(--container-max);
    margin: 0 auto;
}


/* ================================
   Header
================================ */

header {
    position: fixed;
    inset: 0 0 auto 0;
    z-index: 100;
    width: 100%;
    background: rgba(255, 255, 255, .38);
    border-bottom: 1px solid rgba(255, 255, 255, .35);
    backdrop-filter: blur(16px);
    transition: var(--transition);
}

    header.scrolled {
        background: rgba(255, 255, 255, .86);
        box-shadow: 0 18px 60px rgba(20, 16, 26, .08);
    }

.nav {
    height: var(--header-height);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    position: relative;
    z-index: 102;
    display: flex;
    align-items: center;
    gap: 14px;
}

    .logo img {
        width: 42px;
        height: 42px;
        object-fit: contain;
    }

    .logo span {
        font-family: 'Noto Serif TC', serif;
        font-size: .92rem;
        font-weight: 400;
        letter-spacing: .08em;
        color: var(--ink);
        white-space: nowrap;
    }

.menu {
    display: flex;
    align-items: center;
    gap: 42px;
}

    .menu a {
        position: relative;
        font-size: 12px;
        font-weight: 500;
        letter-spacing: .2em;
        text-transform: uppercase;
        color: rgba(21, 17, 25, .72);
        transition: var(--transition);
    }

    .menu a::after {
        content: "";
        position: absolute;
        left: 0;
        bottom: -9px;
        width: 100%;
        height: 1px;
        background: var(--purple);
        transform: scaleX(0);
        transform-origin: right;
        transition: transform .45s var(--ease-main);
    }

    .menu a:hover {
        color: var(--ink);
    }

    .menu a:hover::after {
        transform: scaleX(1);
        transform-origin: left;
    }

    .menu a.active {
        color: var(--purple);
    }

    .menu a.active::after {
        background: linear-gradient( 90deg, var(--purple), var(--rose-gold) );
        transform: scaleX(1);
    }

.menu-toggle {
    display: none;
    position: relative;
    z-index: 102;
    width: 44px;
    height: 44px;
}

    .menu-toggle span {
        position: absolute;
        left: 8px;
        width: 28px;
        height: 1px;
        background: var(--ink);
        transition: var(--transition);
    }

        .menu-toggle span:first-child {
            top: 17px;
        }

        .menu-toggle span:last-child {
            top: 26px;
        }

    .menu-toggle.active span:first-child {
        top: 22px;
        transform: rotate(45deg);
    }

    .menu-toggle.active span:last-child {
        top: 22px;
        transform: rotate(-45deg);
    }


/* ================================
   Hero / Cinematic Interactive Banner
================================ */

.hero {
    position: relative;
    height: 170vh;
    min-height: 980px;
    background: var(--paper);
    overflow: visible;
}

.hero-scroll-scene {
    --scene-progress: 0;
    --mouse-x: 0;
    --mouse-y: 0;
}

.hero-stage {
    position: sticky;
    top: 0;
    width: 100%;
    height: 100vh;
    min-height: 760px;
    overflow: hidden;
    background: var(--paper);
    isolation: isolate;
    cursor: default;
}

.hero-media {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: #d9d2e4;
}

.hero-layer {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 64% center;
    pointer-events: none;
    user-select: none;
    will-change: transform, filter, opacity;
    transform: scale(calc(1.07 + var(--scene-progress) * .1)) translate( calc(var(--mouse-x) * -1.8px), calc(var(--mouse-y) * -1.2px) );
    filter: contrast(1.03) saturate(.9) brightness(calc(.99 - var(--scene-progress) * .08));
    animation: heroImageReveal 2.4s cubic-bezier(.19, 1, .22, 1) forwards;
}

.hero-layer-2,
.hero-layer-3 {
    display: none;
}

.hero-stage::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
    background: radial-gradient( circle at calc(50% + var(--mouse-x) * 2px) calc(50% + var(--mouse-y) * 2px), rgba(255, 255, 255, .34), transparent 28% ), linear-gradient( 90deg, rgba(248, 247, 251, .98) 0%, rgba(248, 247, 251, .82) 30%, rgba(248, 247, 251, .22) 58%, rgba(21, 17, 25, .22) 100% );
}

.hero-stage::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 3;
    pointer-events: none;
    opacity: .18;
    mix-blend-mode: soft-light;
    background-image: repeating-radial-gradient( circle at 18% 30%, rgba(0, 0, 0, .16) 0, rgba(0, 0, 0, .16) 1px, transparent 1px, transparent 4px );
}

.hero-ambient {
    position: absolute;
    z-index: 4;
    pointer-events: none;
    border-radius: 999px;
    filter: blur(44px);
    opacity: .34;
    mix-blend-mode: multiply;
}
/*Hero光暈*/
.hero-ambient-1 {
    width: 280px;
    height: 280px;
    left: 12%;
    top: 20%;
    background: rgba(216,185,199,.45);
    transform: translate( calc(var(--mouse-x) * 1.4px), calc(var(--mouse-y) * 1.1px) );
    animation: ambientFloatOne 8s ease-in-out infinite alternate;
}

.hero-ambient-2 {
    width: 220px;
    height: 220px;
    right: 18%;
    bottom: 18%;
    background: rgba(222, 215, 236, .58);
    transform: translate( calc(var(--mouse-x) * -1.1px), calc(var(--mouse-y) * -.9px) );
    animation: ambientFloatTwo 10s ease-in-out infinite alternate;
}

.hero-title {
    position: absolute;
    left: clamp(26px, 7vw, 120px);
    top: 53%;
    z-index: 6;
    width: min(760px, 88vw);
    transform: translateY(calc(-50% + var(--scene-progress) * -34px)) translateX(calc((1 - var(--scene-progress)) * -10px));
    opacity: calc(1 - max(0, min(.88, (var(--scene-progress) - .42) * 1.6)));
    pointer-events: auto;
}

.hero-kicker {
    display: flex;
    gap: 22px;
    margin-bottom: 26px;
    font-family: "Inter", sans-serif;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: .28em;
    text-transform: uppercase;
    color: rgba(21, 17, 25, .58);
    opacity: 0;
    transform: translateY(28px);
    filter: blur(10px);
    animation: kickerIn 1s ease .15s forwards;
}

.hero-kicker span:first-child {
    color: var(--purple);
}

.eyebrow {
    display: none;
}

.hero-heading {
    display: flex;
    align-items: flex-end;
    gap: clamp(18px, 3vw, 46px);
    font-family: "Noto Serif TC", "Zen Old Mincho", serif;
    font-weight: 300;
    line-height: 1;
    color: var(--ink);
}

.hero-brand {
    display: flex;
    gap: .04em;
    white-space: nowrap;
}

.hero-brand span {
    display: block;
    font-size: clamp(3.8rem, 7.4vw, 8.8rem);
    font-weight: 300;
    line-height: .95;
    letter-spacing: .02em;
    opacity: 0;
    transform: translateY(82px) rotate(8deg);
    transform-origin: bottom center;
    filter: blur(14px);
    animation: heroCharIn 1.25s cubic-bezier(.19, 1, .22, 1) forwards;
}

.hero-brand span:nth-child(1) {
    animation-delay: .28s;
}

.hero-brand span:nth-child(2) {
    animation-delay: .39s;
}

.hero-brand span:nth-child(3) {
    animation-delay: .5s;
}

.hero-brand span:nth-child(4) {
    animation-delay: .61s;
}

.hero-brand span:nth-child(5) {
    animation-delay: .72s;
}
.hero-brand span:nth-child(6) {
    animation-delay: .83s;
}

.hero-brand span:nth-child(7) {
    animation-delay: .94s;
}

.hero-studio {
    display: block;
    margin-bottom: .58em;
    font-size: clamp(1.05rem, 1.6vw, 1.75rem);
    font-weight: 300;
    letter-spacing: .42em;
    color: var(--purple);
    white-space: nowrap;
    opacity: 0;
    transform: translateX(-28px);
    filter: blur(8px);
    animation: studioIn 1.15s ease .9s forwards;
}

.line1,
.line2,
.hero-word,
.hero-word-main,
.hero-word-sub {
    display: none !important;
}

.hero-subtitle {
    margin-top: 34px;
    max-width: 520px;
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(2.2rem, 4vw, 4.8rem);
    font-weight: 300;
    font-style: italic;
    line-height: .96;
    letter-spacing: .02em;
    color: var(--rose-gold);
    opacity: 0;
    transform: translateY(46px);
    filter: blur(12px);
    animation: subtitleIn 1.25s cubic-bezier(.19, 1, .22, 1) 1.05s forwards;
    white-space: nowrap;
}

.hero-subtitle::after {
    display: none;
}

.hero-text {
    position: relative;
    width: min(430px, 88vw);
    margin-top: 30px;
    padding-left: 76px;
    font-family: "Noto Serif TC", serif;
    font-size: 1rem;
    font-weight: 300;
    line-height: 2.15;
    letter-spacing: .1em;
    color: rgba(21, 17, 25, .64);
    opacity: 0;
    transform: translateY(30px);
    filter: blur(8px);
    animation: textIn 1.1s ease 1.32s forwards;
}

.hero-text::before {
    content: "";
    position: absolute;
    left: 0;
    top: 1.08em;
    width: 0;
    height: 1px;
    background: var(--purple);
    animation: lineReveal 1s ease 1.48s forwards;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 38px;
    opacity: 0;
    transform: translateY(36px);
    animation: buttonIn 1s ease 1.62s forwards;
}

.btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 148px;
    height: 48px;
    padding: 0 26px;
    overflow: hidden;
    border-radius: 999px;
    font-size: 12px;
    line-height: 1;
    letter-spacing: .18em;
    text-decoration: none;
    white-space: nowrap;
    box-sizing: border-box;
    appearance: none;
    -webkit-appearance: none;
    cursor: pointer;
    transition: transform .45s var(--ease-main), box-shadow .45s var(--ease-main), background .45s ease, color .45s ease, border-color .45s ease;
}

.btn::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, transparent, rgba(255, 255, 255, .46), transparent);
    transform: translateX(-120%);
    transition: transform .75s ease;
}

.btn:hover::before {
    transform: translateX(120%);
}

.btn::after {
    content: none !important;
    display: none !important;
}

.btn-primary {
    background: var(--ink);
    color: #fff;
    box-shadow: 0 18px 44px rgba(21, 17, 25, .18);
}
/*主按鈕*/
.btn-primary:hover {
    background: var(--rose-gold);
    color: var(--ink);
    box-shadow: 0 15px 40px rgba(216,185,199,.35);
    transform: translateY(-3px);
}

.btn-outline {
    color: var(--ink);
    border: 1px solid rgba(21, 17, 25, .22);
    background: rgba(255, 255, 255, .36);
    backdrop-filter: blur(12px);
}

.btn-outline:hover {
    border-color: rgba(21, 17, 25, .46);
    background: rgba(255, 255, 255, .68);
    transform: translateY(-3px);
}

.hero-orbit {
    position: absolute;
    right: clamp(26px, 7vw, 118px);
    bottom: clamp(80px, 12vh, 140px);
    z-index: 7;
    width: 160px;
    height: 160px;
    border: 1px solid rgba(232,217,199,.45);
    border-radius: 50%;
    opacity: 0;
    transform: translate( calc(var(--mouse-x) * .9px), calc(var(--mouse-y) * .7px) ) rotate(calc(var(--scene-progress) * 120deg));
    animation: orbitIn 1.2s ease 1.35s forwards;
}

.hero-orbit::before {
    content: "SCROLL";
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    font-family: "Inter", sans-serif;
    font-size: 10px;
    letter-spacing: .32em;
    color: rgba(255, 255, 255, .72);
}

.hero-orbit span {
    position: absolute;
    left: 50%;
    top: -5px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .88);
    box-shadow: 0 0 24px rgba(222, 215, 236, .9);
}

.hero-stage:hover .hero-orbit {
    border-color: rgba(118, 82, 143, .5);
}

/*Hero底部進度條*/
.hero-progress {
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: 9;
    height: 2px;
    width: calc(var(--scene-progress) * 100%);
    background: linear-gradient(90deg, var(--purple),var(--rose-gold) rgba(255, 255, 255, .85));
}

.hero-media,
.hero-layer,
.hero-ambient,
.hero-orbit,
.hero-progress {
    pointer-events: none;
}

.scroll-hint {
    position: absolute;
    right: 48px;
    bottom: 42px;
    z-index: 5;
    writing-mode: vertical-rl;
    font-family: 'Cormorant Garamond', serif;
    font-size: .95rem;
    letter-spacing: .26em;
    color: rgba(255, 255, 255, .78);
}

    .scroll-hint::after {
        content: "";
        display: block;
        width: 1px;
        height: 68px;
        margin: 18px auto 0;
        background: linear-gradient(to bottom, rgba(255, 255, 255, .9), transparent);
        animation: scrollLine 1.8s ease-in-out infinite;
    }


/* ================================
   About / Manifesto
================================ */

.about {
    position: relative;
    min-height: 100vh;
    padding: 160px 0;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: linear-gradient(90deg, rgba(21, 17, 25, .72), rgba(21, 17, 25, .26), rgba(248, 247, 251, .08)), url('../images/AboutPurple.png');
    background-size: cover;
    background-position: center center;
}

.about::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 20% 40%, rgba(222, 215, 236, .22), transparent 34%), linear-gradient(180deg, rgba(0, 0, 0, .08), rgba(0, 0, 0, .16));
    z-index: 1;
}

.about-content {
    position: relative;
    z-index: 2;
    width: min(680px, 84%);
    margin-left: clamp(28px, 8vw, 128px);
}

.section-label {
    margin-bottom: 28px;
    font-family: 'Cormorant Garamond', serif;
    font-size: .95rem;
    letter-spacing: .48em;
    color: rgba(255, 255, 255, .62);
    text-transform: uppercase;
}

    .section-label.dark {
        color: rgba(21, 17, 25, .45);
    }

.about h2 {
    margin-bottom: 34px;
    font-family: 'Zen Old Mincho', 'Noto Serif TC', serif;
    font-size: clamp(3rem, 5.2vw, 6.8rem);
    font-weight: 400;
    line-height: 1.16;
    letter-spacing: .08em;
    color: #fff;
}

.about p {
    max-width: 610px;
    margin-bottom: 12px;
    font-family: 'Noto Serif TC', serif;
    font-size: 1.02rem;
    font-weight: 300;
    line-height: 2.55;
    letter-spacing: .09em;
    color: rgba(255, 255, 255, .86);
}

.about-signature {
    margin-top: 46px;
    padding: 26px 32px;
    border-left: 1px solid rgba(255, 255, 255, .34);
    background: rgba(255, 255, 255, .08);
    backdrop-filter: blur(14px);
}

    .about-signature span {
        display: block;
        margin-bottom: 8px;
        font-family: 'Cormorant Garamond', serif;
        font-size: 1.12rem;
        font-style: italic;
        letter-spacing: .18em;
        color: rgba(255, 255, 255, .66);
    }

    .about-signature strong {
        font-family: 'Noto Serif TC', serif;
        font-size: 1rem;
        font-weight: 300;
        letter-spacing: .14em;
        color: #fff;
    }


/* ================================
   Section Heading
================================ */

.section-heading {
    max-width: 760px;
    margin: 0 auto 82px;
    text-align: center;
}

    .section-heading span {
        display: inline-block;
        margin-bottom: 20px;
        font-family: 'Cormorant Garamond', serif;
        font-size: .95rem;
        letter-spacing: .44em;
        color: rgba(21, 17, 25, .42);
        text-transform: uppercase;
    }

    .section-heading h2 {
        margin-bottom: 24px;
        font-family: 'Zen Old Mincho', 'Noto Serif TC', serif;
        font-size: clamp(2.7rem, 4.6vw, 5.6rem);
        font-weight: 400;
        line-height: 1.18;
        letter-spacing: .08em;
        color: var(--ink);
    }

    .section-heading p {
        font-family: 'Noto Serif TC', serif;
        font-size: 1rem;
        font-weight: 300;
        line-height: 2.25;
        letter-spacing: .08em;
        color: rgba(21, 17, 25, .55);
    }


/* ================================
   Service / Editorial List
================================ */

.service {
    position: relative;
    padding: 150px 0;
    background: radial-gradient(circle at 12% 10%, rgba(222, 215, 236, .55), transparent 30%), var(--paper);
}

.service-grid {
    display: block;
    border-top: 1px solid rgba(21, 17, 25, .14);
}

.service-card {
    position: relative;
    display: grid;
    grid-template-columns: 100px 1fr 1.3fr 150px;
    gap: 34px;
    align-items: center;
    min-height: auto;
    padding: 46px 0;
    overflow: hidden;
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(21, 17, 25, .14);
    transition: padding .5s var(--ease-main), background .5s var(--ease-main), box-shadow .5s var(--ease-main);
}

    .service-card::before {
        content: "";
        position: absolute;
        inset: 0;
        z-index: 0;
        background: rgba(255, 255, 255, .62);
        transform: scaleY(0);
        transform-origin: bottom;
        transition: transform .5s var(--ease-main);
    }

    .service-card::after {
        content: none !important;
        display: none !important;
    }

    .service-card:hover {
        padding-left: 30px;
        padding-right: 30px;
        box-shadow: 0 28px 80px rgba(21, 17, 25, .08);
    }

        .service-card:hover::before {
            transform: scaleY(1);
        }

    .service-card > * {
        position: relative;
        z-index: 1;
    }

.service-number {
    margin: 0;
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(3.2rem, 5vw, 5.8rem);
    line-height: 1;
    color: rgba(118, 82, 143, .32);
    transition: var(--transition);
}

.service-card:hover .service-number {
    color: var(--rose-gold);
    transform: translateX(6px);
}

.service-card h3 {
    margin: 0;
    font-family: 'Noto Serif TC', serif;
    font-size: 1.46rem;
    font-weight: 400;
    letter-spacing: .14em;
    color: var(--ink);
}

.service-card p {
    margin: 0;
    font-family: 'Noto Serif TC', serif;
    font-size: .98rem;
    font-weight: 300;
    line-height: 2.15;
    letter-spacing: .07em;
    color: rgba(21, 17, 25, .58);
}

.service-card a {
    margin: 0;
    justify-self: end;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1rem;
    letter-spacing: .14em;
    color: var(--purple);
    transition: var(--transition);
}

    .service-card a::after {
        content: "";
        display: block;
        width: 100%;
        height: 1px;
        margin-top: 7px;
        background: currentColor;
        transform: scaleX(.45);
        transform-origin: left;
        transition: transform .45s var(--ease-main);
    }

.service-card:hover a::after {
    transform: scaleX(1);
}


/* ================================
   Collection / Magazine Gallery
================================ */

.collection {
    position: relative;
    padding: 160px 0;
    background: var(--mist);
    overflow: hidden;
}

    .collection::before {
        content: "Selected Works";
        position: absolute;
        right: -3vw;
        top: 70px;
        font-family: 'Cormorant Garamond', serif;
        font-size: clamp(5rem, 12vw, 13rem);
        font-style: italic;
        color: rgba(255, 255, 255, .58);
        pointer-events: none;
    }

.collection-layout {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: .75fr 1.25fr;
    gap: clamp(48px, 6vw, 96px);
    align-items: center;
}

.collection-text h2 {
    margin-bottom: 34px;
    font-family: 'Zen Old Mincho', 'Noto Serif TC', serif;
    font-size: clamp(2.8rem, 5vw, 6.2rem);
    font-weight: 400;
    line-height: 1.18;
    letter-spacing: .08em;
    color: var(--ink);
}

.collection-text p {
    max-width: 560px;
    font-family: 'Noto Serif TC', serif;
    font-size: 1rem;
    font-weight: 300;
    line-height: 2.35;
    letter-spacing: .08em;
    color: rgba(21, 17, 25, .58);
}
/*作品連結*/
.text-link {
    display: inline-flex;
    align-items: center;
    gap: 18px;
    margin-top: 42px;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem;
    letter-spacing: .16em;
    color: var(--purple);
}

    .text-link:hover {
        color: var(--rose-gold);
    }

    .text-link::after {
        content: "";
        width: 72px;
        height: 1px;
        background: currentColor;
        transition: width .45s var(--ease-main);
    }

    .text-link:hover::after {
        width: 118px;
    }

.collection-gallery {
    display: grid;
    grid-template-columns: 1.05fr .8fr;
    grid-auto-rows: 230px;
    gap: 22px;
}

.gallery-item {
    position: relative;
    min-height: 260px;
    overflow: hidden;
    isolation: isolate;
    background: #1b1620;
    box-shadow: 0 26px 80px rgba(21, 17, 25, .08);
}

    .gallery-item.tall {
        grid-row: span 2;
        min-height: auto;
    }

    .gallery-item img {
        height: 100%;
        object-fit: cover;
        filter: saturate(.88) contrast(1.03);
        transition: opacity .35s ease, transform 1s var(--ease-main), filter .8s ease;
    }

    .gallery-item:hover img {
        transform: scale(1.08);
        filter: saturate(.96) contrast(1.08);
    }

    .gallery-item::before {
        content: "";
        position: absolute;
        inset: 0;
        z-index: 2;
        background: linear-gradient(to top, rgba(21, 17, 25, .62), rgba(21, 17, 25, .1), transparent), radial-gradient(circle at 20% 80%, rgba(216,185,199,.28), transparent 32%);
        opacity: 0;
        transition: opacity .55s ease;
    }

    .gallery-item::after {
        content: "";
        position: absolute;
        inset: 18px;
        z-index: 3;
        border: 1px solid rgba(255, 255, 255, .32);
        opacity: 0;
        transform: scale(.96);
        transition: opacity .55s ease, transform .55s var(--ease-main);
    }

    .gallery-item:hover::before {
        opacity: 1;
    }

    .gallery-item:hover::after {
        opacity: 1;
        transform: scale(1);
    }

.gallery-caption {
    position: absolute;
    left: 34px;
    right: 34px;
    bottom: 34px;
    z-index: 4;
    color: #fff;
    opacity: 0;
    transform: translateY(18px);
    transition: all .55s var(--ease-main);
}

.gallery-item:hover .gallery-caption {
    opacity: 1;
    transform: translateY(0);
}

.gallery-caption span {
    display: block;
    margin-bottom: 8px;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1rem;
    font-style: italic;
    letter-spacing: .16em;
    color: rgba(255, 255, 255, .76);
}

.gallery-caption strong {
    font-family: 'Noto Serif TC', serif;
    font-size: 1.22rem;
    font-weight: 300;
    letter-spacing: .12em;
}


/* ================================
   Journal
================================ */

.journal {
    position: relative;
    padding: 150px 0;
    background: linear-gradient(180deg, var(--paper), #fff);
}

.journal-list {
    display: flex;
    gap: 28px;
    overflow-x: auto;
    overflow-y: hidden;
    padding-bottom: 18px;
    scroll-snap-type: x proximity;
    scrollbar-width: thin;
    scrollbar-color: rgba(216,185,199,.5) transparent;
}

    /* Chrome */
    .journal-list::-webkit-scrollbar {
        height: 6px;
    }

    .journal-list::-webkit-scrollbar-track {
        background: transparent;
    }

    .journal-list::-webkit-scrollbar-thumb {
        border-radius: 999px;
        background: rgba(216,185,199,.45);
    }

.journal-card {
    position: relative;
    width: 560px;
    flex-shrink: 0;
    scroll-snap-align: start;
    min-height: 320px;
    padding: 50px 52px;
    overflow: hidden;
    background: rgba(255,255,255,.55);
    border: 1px solid rgba(21,17,25,.09);
}

    .journal-card::before {
        content: "";
        position: absolute;
        right: -60px;
        bottom: -60px;
        width: 190px;
        height: 190px;
        border-radius: 50%;
        background: radial-gradient( circle, rgba(232,217,199,.18) 0%, rgba(216,185,199,.14) 45%, rgba(143,114,157,.08) 100% );
        transform: scale(.6);
        transition: transform .6s var(--ease-main);
    }

    .journal-card:hover {
        background: #fff;
        box-shadow: 0 28px 80px rgba(21, 17, 25, .08);
        transform: translateY(-6px);
    }

        .journal-card:hover::before {
            transform: scale(1.2);
        }
    /*Journal分類*/
    .journal-card span {
        display: block;
        margin-bottom: 24px;
        font-family: 'Cormorant Garamond', serif;
        font-size: 1.08rem;
        font-style: italic;
        color: var(--rose-gold);
    }

    .journal-card h3 {
        position: relative;
        z-index: 1;
        margin-bottom: 20px;
        font-family: 'Noto Serif TC', serif;
        font-size: 1.4rem;
        font-weight: 400;
        line-height: 1.75;
        letter-spacing: .08em;
        color: var(--ink);
    }

    .journal-card p {
        position: relative;
        z-index: 1;
        font-family: 'Noto Serif TC', serif;
        font-weight: 300;
        line-height: 2.15;
        letter-spacing: .06em;
        color: rgba(21, 17, 25, .58);
    }


/* ================================
   Back To Top
================================ */

.back-to-top {
    position: fixed;
    right: 28px;
    bottom: 28px;
    z-index: 180;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    color: #fff;
    background: var(--ink);
    opacity: 0;
    visibility: hidden;
    transform: translateY(14px);
    transition: var(--transition);
    box-shadow: 0 14px 38px rgba(21, 17, 25, .18);
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: var(--rose-gold);
    color: var(--ink);
    transform: translateY(-4px);
}


/* ================================
   Magnetic
================================ */

.magnetic-btn {
    will-change: transform;
}

/* ================================
   Cursor Optional
================================ */

.cursor-dot,
.cursor-ring {
    position: fixed;
    left: 0;
    top: 0;
    z-index: 999;
    pointer-events: none;
    opacity: 0;
    transform: translate(-50%, -50%);
}

.cursor-ready .cursor-dot,
.cursor-ready .cursor-ring {
    opacity: 1;
}

/*滑鼠圓環*/
.cursor-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--champagne);
}

.cursor-ring {
    width: 34px;
    height: 34px;
    border: 1px solid rgba(216,185,199,.5);
    border-radius: 50%;
    transition: width .25s ease, height .25s ease, border-color .25s ease;
}

.cursor-hover .cursor-ring {
    width: 54px;
    height: 54px;
    border-color: rgba(118, 82, 143, .72);
}

.cursor-view .cursor-ring {
    width: 72px;
    height: 72px;
    border-color: rgba(255, 255, 255, .72);
}


/* ================================
   Animations
================================ */

@keyframes heroImageReveal {
    0% {
        opacity: 0;
        transform: scale(1.16) translateY(18px);
        filter: blur(18px) contrast(1.04) saturate(.82);
    }

    100% {
        opacity: 1;
    }
}

@keyframes kickerIn {
    to {
        opacity: 1;
        transform: translateY(0);
        filter: blur(0);
    }
}

@keyframes heroCharIn {
    0% {
        opacity: 0;
        transform: translateY(82px) rotate(8deg);
        filter: blur(14px);
    }

    100% {
        opacity: 1;
        transform: translateY(0) rotate(0);
        filter: blur(0);
    }
}

@keyframes studioIn {
    to {
        opacity: 1;
        transform: translateX(0);
        filter: blur(0);
    }
}

@keyframes subtitleIn {
    to {
        opacity: 1;
        transform: translateY(0);
        filter: blur(0);
    }
}

@keyframes textIn {
    to {
        opacity: 1;
        transform: translateY(0);
        filter: blur(0);
    }
}

@keyframes buttonIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes lineReveal {
    to {
        width: 52px;
    }
}

@keyframes orbitIn {
    to {
        opacity: 1;
    }
}

@keyframes ambientFloatOne {
    from {
        transform: translate( calc(var(--mouse-x) * 1.4px), calc(var(--mouse-y) * 1.1px) ) scale(1);
    }

    to {
        transform: translate( calc(var(--mouse-x) * 1.4px + 28px), calc(var(--mouse-y) * 1.1px - 18px) ) scale(1.12);
    }
}

@keyframes ambientFloatTwo {
    from {
        transform: translate( calc(var(--mouse-x) * -1.1px), calc(var(--mouse-y) * -.9px) ) scale(1);
    }

    to {
        transform: translate( calc(var(--mouse-x) * -1.1px - 24px), calc(var(--mouse-y) * -.9px + 20px) ) scale(1.16);
    }
}

@keyframes scrollLine {
    0% {
        transform: scaleY(0);
        transform-origin: top;
        opacity: .3;
    }

    45% {
        transform: scaleY(1);
        transform-origin: top;
        opacity: 1;
    }

    46% {
        transform-origin: bottom;
    }

    100% {
        transform: scaleY(0);
        transform-origin: bottom;
        opacity: .2;
    }
}

/* ===== Journal Tip ===== */

.tip-method,
.tip-item,
.tip-text {
    font-family: 'Cormorant Garamond','Noto Serif TC','Zen Old Mincho',serif !important;
    font-size: 1rem !important;
    font-weight: 300 !important;
    line-height: 2.1 !important;
    letter-spacing: .08em !important;
    color: rgba(143,114,157,.78);
}

.tip-method {
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid rgba(31,27,34,.08);
    display: grid;
    gap: 14px;
}

.tip-item {
    display: grid;
    grid-template-columns: 18px 1fr;
    gap: 12px;
    align-items: start;
}

.tip-dot {
    width: 5px;
    height: 5px;
    margin-top: 1em;
    border-radius: 50%;
    background: var(--rose-gold);
    box-shadow: 0 0 12px rgba(216,185,199,.45);
}
/* ================================
   About Page
================================ */

.about-page {
    background: var(--paper);
    color: var(--ink);
    overflow: hidden;
}

.about-hero {
    position: relative;
    min-height: 100vh;
    padding-top: var(--header-height);
    overflow: hidden;
    background: #f5eef4;
    isolation: isolate;
}

.about-hero-bg {
    position: fixed;
    inset: 0;
    z-index: -1;
}

    .about-hero-bg img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.about-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
    background: linear-gradient( 90deg, rgba(250,247,250,.96) 0%, rgba(250,247,250,.86) 34%, rgba(250,247,250,.48) 58%, rgba(250,247,250,.08) 100% ), radial-gradient( circle at 18% 34%, rgba(216,185,199,.34), transparent 38% );
}

.about-hero-content {
    position: absolute;
    top: 50%;
    left: clamp(48px, 6vw, 120px);
    transform: translateY(-55%);
    z-index: 4;
    width: min(860px, 54vw);
}

.about-label {
    display: flex;
    align-items: center;
    gap: 32px;
    margin-bottom: 38px;
    font-family: 'Cormorant Garamond', serif;
    font-size: .95rem;
    letter-spacing: .42em;
    color: var(--purple);
    text-transform: uppercase;
}

    .about-label::after {
        content: "";
        width: 150px;
        height: 1px;
        background: linear-gradient( 90deg, rgba(143,114,157,0), rgba(143,114,157,.45), rgba(143,114,157,.8) );
        transform-origin: left;
        transform: scaleX(0);
        opacity: 0;
        transition: transform 1s cubic-bezier(.19,1,.22,1) .55s, opacity 1s cubic-bezier(.19,1,.22,1) .55s;
    }

    .about-label.is-visible::after {
        transform: scaleX(1);
        opacity: 1;
    }

.about-hero-content h1 {
    font-family: 'Noto Serif TC', 'Zen Old Mincho', serif;
    font-size: clamp(3rem, 4.2vw, 5.4rem);
    font-weight: 300;
    line-height: 1.32;
    letter-spacing: .22em;
    color: rgba(31,27,34,.72);
    white-space: nowrap;
}

    .about-hero-content h1::first-letter {
        color: var(--purple);
    }

.about-subtitle {
    margin-top: 24px;
    font-family: 'Noto Serif TC', serif;
    font-size: clamp(.96rem, 1.08vw, 1.14rem);
    font-weight: 300;
    line-height: 2;
    letter-spacing: .2em;
    color: rgba(31,27,34,.62);
}

.about-service-line {
    margin-top: 14px;
    display: flex;
    align-items: center;
    gap: 28px;
    font-family: 'Noto Serif TC', serif;
    font-size: clamp(.92rem, 1vw, 1rem);
    font-weight: 300;
    line-height: 2;
    letter-spacing: .14em;
    color: rgba(143,114,157,.84);
    white-space: nowrap;
}

    .about-service-line span {
        margin: 0;
        color: rgba(143,114,157,.38);
    }

.about-feature-row {
    display: flex;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 70px;
    margin-top: 68px;
}

.about-feature {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 150px;
    color: rgba(31,27,34,.62);
    text-align: left;
}

.about-feature-icon {
    width: 46px;
    height: 46px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid rgba(143,114,157,.2);
    border-radius: 50%;
    background: rgba(255,255,255,.3);
}

    .about-feature-icon img {
        width: 60%;
        height: 60%;
        display: block;
        object-fit: contain;
        opacity: .8;
        transition: .4s;
    }

.material-symbols-outlined {
    font-size: 40px;
    color: rgba(143,114,157,.85);
    font-variation-settings: 'FILL' 0, 'wght' 300, 'GRAD' 0, 'opsz' 48;
    transition: .5s;
}

.about-feature:hover .about-feature-icon {
    transform: translateY(-6px);
    border-color: rgba(216,185,199,.7);
    box-shadow: 0 8px 30px rgba(216,185,199,.25);
}

.about-feature:hover img {
    transform: scale(1.1);
}

.about-feature:hover .material-symbols-outlined {
    color: rgba(214,178,194,.95);
    transform: scale(1.08);
}

.about-feature strong {
    display: block;
    margin-bottom: 8px;
    font-family: 'Noto Serif TC', serif;
    font-size: .95rem;
    font-weight: 400;
    letter-spacing: .18em;
    color: rgba(31,27,34,.68);
}

.about-feature span {
    display: block;
    font-family: 'Cormorant Garamond', serif;
    font-size: .95rem;
    letter-spacing: .08em;
    color: rgba(31,27,34,.48);
}

.about-hero-bottom {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 5;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    min-height: 118px;
    padding: 26px clamp(40px, 8vw, 150px);
    background: rgba(232,217,199,.28);
    backdrop-filter: blur(18px);
    border-top: 1px solid rgba(255,255,255,.38);
}

    .about-hero-bottom div {
        display: grid;
        place-content: center;
        text-align: center;
        border-right: 1px solid rgba(255,255,255,.45);
    }

        .about-hero-bottom div:last-child {
            border-right: none;
        }

    .about-hero-bottom span {
        margin-bottom: 8px;
        font-family: 'Noto Serif TC', serif;
        font-size: 1.15rem;
        font-weight: 300;
        letter-spacing: .18em;
        color: rgba(31,27,34,.68);
    }

    .about-hero-bottom small {
        font-family: 'Cormorant Garamond', serif;
        font-size: .98rem;
        letter-spacing: .08em;
        color: rgba(31,27,34,.48);
    }

/* Philosophy */

.about-philosophy {
    padding: 160px 0;
    background: radial-gradient(circle at 12% 18%, rgba(216,185,199,.16), transparent 32%), var(--paper);
}

.about-row {
    display: grid;
    grid-template-columns: 220px 1fr;
    gap: clamp(48px, 7vw, 110px);
    align-items: start;
}

.about-number {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(5rem, 10vw, 12rem);
    line-height: .82;
    color: rgba(216,185,199,.42);
}

.about-content-block {
    max-width: 820px;
}

.about-content-block span,
.story-text span,
.about-space-overlay > span {
    display: inline-block;
    margin-bottom: 24px;
    font-family: 'Cormorant Garamond', serif;
    font-size: .95rem;
    letter-spacing: .42em;
    color: var(--purple);
    text-transform: uppercase;
}

.about-content-block h2,
.story-text h2 {
    margin-bottom: 40px;
    font-family: 'Zen Old Mincho','Noto Serif TC',serif;
    font-size: clamp(3rem,5vw,6rem);
    font-weight: 300;
    line-height: 1.25;
    letter-spacing: .12em;
    color: var(--ink);
}

.about-content-block p,
.story-text p {
    margin-bottom: 18px;
    font-family: 'Noto Serif TC', serif;
    font-size: 1rem;
    font-weight: 300;
    line-height: 2.35;
    letter-spacing: .08em;
    color: rgba(31,27,34,.62);
}

/* Story */

.about-story {
    position: relative;
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    min-height: calc(100vh - var(--header-height));
    background: radial-gradient( circle at 85% 20%, rgba(216,185,199,.15), transparent 35% ), linear-gradient( 180deg, rgba(255,255,255,.8), rgba(250,249,248,1) );
    overflow: hidden;
    align-items: center;
}

.story-image {
    position: relative;
    height: 100%;
    min-height: calc(100vh - var(--header-height));
    overflow: hidden;
}


    .story-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
        transition: transform 1.2s var(--ease-main);
    }

    .story-image:hover img {
        transform: scale(1.06);
    }

.story-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
    padding: clamp(80px,8vw,130px) clamp(60px,7vw,120px);
}
/* Values */

.about-values {
    padding: 150px 0;
    background: linear-gradient(180deg, var(--paper), #fff);
}
/* Space */

.about-space {
    position: relative;
    min-height: 100vh;
    display: grid;
    place-items: center;
    overflow: hidden;
    background: linear-gradient( rgba(31,27,34,.32), rgba(31,27,34,.52) ), url('../images/StudioAtmosphere.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.about-space-overlay {
    width: min(920px, 86vw);
    text-align: center;
    color: #fff;
}

    .about-space-overlay span {
        color: rgba(232,217,199,.82);
    }

    .about-space-overlay .about-space-title {
        font-family: 'Cormorant Garamond', serif !important;
        font-size: clamp(4rem, 8vw, 9rem) !important;
        font-weight: 300 !important;
        font-style: italic !important;
        line-height: 1 !important;
        letter-spacing: .02em !important;
        color: var(--purple) !important;
    }

        .about-space-overlay .about-space-title .letter {
            font-family: inherit !important;
            font-size: inherit !important;
            font-weight: inherit !important;
            font-style: inherit !important;
            line-height: inherit !important;
            letter-spacing: inherit !important;
            color: inherit !important;
        }

    .about-space-overlay p {
        width: min(520px, 88vw);
        margin: 34px auto 0;
        font-family: 'Noto Serif TC', serif;
        font-size: 1rem;
        font-weight: 300;
        line-height: 2.2;
        letter-spacing: .1em;
        color: rgba(255,255,255,.78);
    }
/* Ending */

.about-ending {
    padding: 160px 0;
    text-align: center;
    background: radial-gradient(circle at 50% 18%, rgba(216,185,199,.18), transparent 34%), var(--paper);
}

    .about-ending h2 {
        font-family: 'Cormorant Garamond', serif;
        font-size: clamp(4rem, 8vw, 9rem);
        font-weight: 300;
        font-style: italic;
        line-height: 1;
        color: var(--purple);
    }

    .about-ending p {
        width: min(580px, 88vw);
        margin: 34px auto 42px;
        font-family: 'Noto Serif TC', serif;
        font-size: 1rem;
        font-weight: 300;
        line-height: 2.25;
        letter-spacing: .1em;
        color: rgba(31,27,34,.62);
    }
/* Header active for About */

body.about-page-body .menu a[href="About.aspx"] {
    color: var(--purple);
}

    body.about-page-body .menu a[href="About.aspx"]::after {
        background: linear-gradient(90deg, var(--purple), var(--rose-gold));
        transform: scaleX(1);
    }

/*==================================
    LINE Booking Modal
==================================*/

.booking-modal {
    position: fixed;
    inset: 0;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: .4s ease;
}

    .booking-modal.active {
        opacity: 1;
        visibility: visible;
    }

.booking-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,.45);
    backdrop-filter: blur(12px);
}

.booking-modal-panel {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: min(500px, 90vw);
    background: rgba(255,255,255,.92);
    border-radius: 30px;
    padding: 50px;
    box-shadow: 0 25px 80px rgba(0,0,0,.15);
    text-align: center;
}

.booking-modal-close {
    position: absolute;
    right: 20px;
    top: 15px;
    font-size: 32px;
    color: #8F729D;
    background: none;
    border: none;
    cursor: pointer;
}

.booking-kicker {
    display: block;
    margin-bottom: 15px;
    font-family: 'Cormorant Garamond', serif;
    letter-spacing: .35em;
    color: #8F729D;
    font-size: .9rem;
}

.booking-modal h2 {
    font-family: 'Noto Serif TC', serif;
    font-size: 2.2rem;
    font-weight: 300;
    margin-bottom: 20px;
}

.booking-modal p {
    color: rgba(31,27,34,.65);
    line-height: 2;
    margin-bottom: 30px;
}

.booking-qr {
    width: 220px;
    margin: auto;
    padding: 15px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,.08);
}

    .booking-qr img {
        width: 100%;
        display: block;
    }

.booking-line-id {
    margin-top: 25px;
}

    .booking-line-id span {
        display: block;
        color: #999;
        font-size: .9rem;
        margin-bottom: 8px;
    }

    .booking-line-id strong {
        font-size: 1.4rem;
        color: #8F729D;
        font-family: 'Cormorant Garamond', serif;
    }

.booking-actions {
    margin-top: 30px;
}

    .booking-actions a {
        display: inline-block;
        padding: 15px 35px;
        border-radius: 999px;
        background: linear-gradient( 135deg, #D8C5D6, #E8D9C7 );
        color: white;
        text-decoration: none;
        transition: .4s;
    }

        .booking-actions a:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 30px rgba(216,185,199,.35);
        }

.about-space {
    position: relative;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.about-space-bg {
    position: absolute;
    inset: 0;
    z-index: 1;
}

    .about-space-bg img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
    }

.about-space-overlay {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
}

/* Animations */

@keyframes aboutHeroZoom {
    from {
        opacity: 0;
        transform: scale(1.14);
        filter: blur(12px) saturate(.82);
    }

    to {
        opacity: 1;
        transform: scale(1.03);
    }
}

.about-space-overlay h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(4rem, 8vw, 9rem);
    font-weight: 300;
    font-style: italic;
    line-height: .95;
    letter-spacing: .02em;
}

    .about-space-overlay h2 span {
        background: linear-gradient( 135deg, #fffaf4 0%, #f0dfc9 35%, #d8b9c7 70%, #fffdf8 100% );
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        text-shadow: 0 2px 8px rgba(0,0,0,.22);
    }

.about-space-bg::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient( rgba(31,27,34,.35), rgba(31,27,34,.55) );
}

.about-space-overlay .btn {
    margin-top: 20px;
}

.js-text-reveal .text-letter {
    display: inline-block;
    opacity: 0;
    transform: translateX(-18px) translateY(12px);
    filter: blur(8px);
    transition: opacity .7s cubic-bezier(.19,1,.22,1), transform .7s cubic-bezier(.19,1,.22,1), filter .7s cubic-bezier(.19,1,.22,1);
}

.js-text-reveal.is-visible .text-letter {
    opacity: 1;
    transform: translateX(0) translateY(0);
    filter: blur(0);
}

.js-feature-reveal .about-feature {
    opacity: 0;
    transform: translateY(42px);
    filter: blur(12px);
    transition: .9s cubic-bezier(.19,1,.22,1);
}

.js-feature-reveal .about-feature-icon {
    transform: scale(.72) rotate(-8deg);
    opacity: 0;
    transition: .9s cubic-bezier(.19,1,.22,1);
}

.js-feature-reveal .about-feature strong,
.js-feature-reveal .about-feature span {
    opacity: 0;
    transform: translateY(14px);
    transition: .75s cubic-bezier(.19,1,.22,1);
}

.js-feature-reveal.is-visible .about-feature,
.js-feature-reveal.is-visible .about-feature-icon,
.js-feature-reveal.is-visible .about-feature strong,
.js-feature-reveal.is-visible .about-feature span {
    opacity: 1;
    transform: translateY(0) scale(1) rotate(0);
    filter: blur(0);
}

.js-feature-reveal .about-feature:nth-child(1) {
    transition-delay: .1s;
}

.js-feature-reveal .about-feature:nth-child(2) {
    transition-delay: .25s;
}

.js-feature-reveal .about-feature:nth-child(3) {
    transition-delay: .4s;
}

.js-feature-reveal .about-feature:nth-child(4) {
    transition-delay: .55s;
}

.js-feature-reveal .about-feature:nth-child(1) .about-feature-icon,
.js-feature-reveal .about-feature:nth-child(1) strong,
.js-feature-reveal .about-feature:nth-child(1) span {
    transition-delay: .18s;
}

.js-feature-reveal .about-feature:nth-child(2) .about-feature-icon,
.js-feature-reveal .about-feature:nth-child(2) strong,
.js-feature-reveal .about-feature:nth-child(2) span {
    transition-delay: .33s;
}

.js-feature-reveal .about-feature:nth-child(3) .about-feature-icon,
.js-feature-reveal .about-feature:nth-child(3) strong,
.js-feature-reveal .about-feature:nth-child(3) span {
    transition-delay: .48s;
}

.js-feature-reveal .about-feature:nth-child(4) .about-feature-icon,
.js-feature-reveal .about-feature:nth-child(4) strong,
.js-feature-reveal .about-feature:nth-child(4) span {
    transition-delay: .63s;
}

.about-move-section {
    position: relative;
    min-height: 50vh;
    overflow: hidden;
    background-image: linear-gradient( rgba(31,27,34,.18), rgba(31,27,34,.32) ), url('../images/AboutMove.png');
    background-size: cover;
    background-position: center center;
    background-attachment: fixed;
}

.about-move-section {
    position: relative;
    height: 50vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    background-image: linear-gradient( rgba(30,25,30,.25), rgba(30,25,30,.35) ), url('../images/AboutMove.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.about-move-content {
    width: min(720px,90%);
    color: #fff;
}

.about-move-label {
    display: inline-block;
    padding: 10px 24px;
    margin-bottom: 30px;
    border: 1px solid rgba(212,181,160,.55);
    background: rgba(255,255,255,.08);
    backdrop-filter: blur(10px);
    font-size: .82rem;
    letter-spacing: .28em;
    text-transform: uppercase;
    color: #E6D1C3;
}

.about-move-title {
    margin-bottom: 18px;
    font-family: 'Noto Serif TC', serif;
    font-size: clamp(2.8rem,5vw,4.5rem);
    font-weight: 300;
    color: #fff;
}

.about-move-subtitle {
    margin-bottom: 36px;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem;
    font-style: italic;
    letter-spacing: .12em;
    color: #D9B7A2;
}

.about-move-text {
    line-height: 2.2;
    font-size: 1rem;
    color: rgba(255,255,255,.88);
}

.team-banner {
    position: relative;
    min-height: 100vh;
    background: linear-gradient( 180deg, #FFFDFC 0%, #FCF7FA 45%, #F7EEF8 100% );
}

.team-banner-bg {
    position: absolute;
    inset: 0;
    z-index: 1;
}

    .team-banner-bg img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.team-banner::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 2;
    background: rgba(255,240,244,.15);
    pointer-events: none;
}

.team-heading,
.team-floating-card {
    position: relative;
    z-index: 3;
}

.team-heading {
    position: absolute;
    top: 12%;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    text-align: center;
}

    .team-heading span {
        display: inline-block;
        margin-bottom: 20px;
        font-family: 'Cormorant Garamond', serif;
        font-size: .95rem;
        letter-spacing: .44em;
        color: rgba(21, 17, 25, .42);
        text-transform: uppercase;
    }

    .team-heading h2 {
        margin-bottom: 24px;
        font-family: 'Zen Old Mincho', 'Noto Serif TC', serif;
        font-size: clamp(2.7rem, 4.6vw, 5.6rem);
        font-weight: 400;
        line-height: 1.18;
        letter-spacing: .08em;
        color: var(--ink);
    }

.team-floating-card {
    margin-top: 50px;
    position: absolute;
    top: 55%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: min(1450px, 92%);
    padding: 55px 80px;
    background: #FFFCF8;
    backdrop-filter: blur(40px);
    -webkit-backdrop-filter: blur(40px);
    border: 1px solid rgba(143,114,157,.12);
    border-radius: 42px;
    box-shadow: 0 30px 80px rgba(0,0,0,.08);
}

.team-card-bg {
    position: absolute;
    inset: 0;
}

    .team-card-bg img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.team-card-content {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 80px;
    align-items: center;
}

.team-member {
    text-align: center;
}

    .team-member h3 {
        color: #8F729D;
    }

    .team-member p {
        font-family: 'Noto Serif TC', serif;
        font-size: .92rem;
        font-weight: 300;
        line-height: 2;
        letter-spacing: .06em;
        color: rgba(143,114,157,.72);
        text-align: left;
    }

        .team-member p strong {
            display: inline-block;
            margin-top: 10px;
            font-weight: 400;
            color: rgba(216,185,199,.95);
            text-align: left;
        }

.team-member-photo {
    position: relative;
    width: 260px;
    height: 260px;
    margin: 0 auto 32px;
    overflow: hidden;
    border-radius: 28px;
}

    .team-member-photo img {
        display: block;
        width: 100%;
        height: 100%;
        object-fit: cover;
        margin: 0;
        border-radius: 0;
        box-shadow: none;
        transition: .6s cubic-bezier(.19,1,.22,1);
    }

    .team-member-photo::before {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient( rgba(0,0,0,.15), rgba(0,0,0,.45) );
        opacity: 0;
        transition: .5s ease;
        z-index: 2;
    }

.team-member-ig {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%) scale(.8);
    width: 54px;
    height: 54px;
    opacity: 0;
    z-index: 3;
    transition: .5s ease;
}

.team-member-ig img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
    margin: 0;
    border-radius: 0;
    box-shadow: none;
}

.team-member-photo:hover img {
    transform: scale(1.05);
}

.team-member-photo:hover::before {
    opacity: 1;
}

.team-member-photo:hover .team-member-ig {
    opacity: 1;
    transform: translate(-50%,-50%) scale(1);
}
.mobile-footer-nav {
    display: none;
}

/* ================================
   Intro Loader
   文字依序出現｜淡出｜由下往上展開
================================ */

.intro-loader {
    position: fixed;
    inset: 0;
    z-index: 99999;
    display: grid;
    place-items: center;
    background: radial-gradient(circle at 50% 44%, rgba(216, 185, 199, .18), transparent 34%), rgba(250, 249, 248, .98);
    overflow: hidden;
    transform: translateY(0);
    will-change: transform;
}

body.intro-active {
    overflow: hidden;
}

.intro-content {
    position: relative;
    z-index: 3;
    display: grid;
    justify-items: center;
    gap: 24px;
}

.intro-logo {
    width: 120px;
    height: 120px;
    object-fit: contain;
    opacity: 0;
    transform: translateY(12px) scale(.94);
    filter: drop-shadow(0 14px 32px rgba(143, 114, 157, .16));
    animation: introLogoIn .65s cubic-bezier(.19, 1, .22, 1) .15s forwards;
}

.intro-text {
    display: grid;
    justify-items: center;
    gap: 10px;
    text-align: center;
}

.intro-name {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .24em;
    font-family: 'Noto Serif TC', serif;
    font-size: clamp(1.45rem, 2.5vw, 2.35rem);
    font-weight: 300;
    letter-spacing: .16em;
    color: var(--ink);
}

    .intro-name span {
        display: inline-block;
        opacity: 0;
        transform: translateY(22px);
        filter: blur(8px);
        animation: introCharIn .52s cubic-bezier(.19, 1, .22, 1) forwards;
        animation-delay: calc(.48s + var(--i) * .12s);
    }

.intro-en {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.25rem, 2.3vw, 2.1rem);
    font-style: italic;
    letter-spacing: .08em;
    color: var(--rose-gold);
    opacity: 0;
    transform: translateY(12px);
    filter: blur(8px);
    animation: introEnIn .7s cubic-bezier(.19, 1, .22, 1) 1.35s forwards;
}

/* Logo 與文字先淡出 */
.intro-loader.is-fading .intro-content {
    opacity: 0;
    transform: translateY(-10px) scale(.98);
    filter: blur(8px);
    transition: opacity .45s ease, transform .45s cubic-bezier(.19, 1, .22, 1), filter .45s ease;
}

/* 整片畫面從下往上收掉，露出首頁 */
.intro-loader.is-opening {
    transform: translateY(-100%);
    transition: transform 1.05s cubic-bezier(.19, 1, .22, 1);
}

.intro-loader.is-gone {
    display: none;
}

@keyframes introLogoIn {
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes introCharIn {
    to {
        opacity: 1;
        transform: translateY(0);
        filter: blur(0);
    }
}

@keyframes introEnIn {
    to {
        opacity: 1;
        transform: translateY(0);
        filter: blur(0);
    }
}

/* 開場期間，先讓首頁動畫暫停，避免露出後像還沒載好 */
body.intro-active .hero-layer,
body.intro-active .hero-kicker,
body.intro-active .hero-brand span,
body.intro-active .hero-studio,
body.intro-active .hero-subtitle,
body.intro-active .hero-text,
body.intro-active .hero-actions {
    animation-play-state: paused;
}


/* =========================================================
   Clean Responsive CSS
   Breakpoints: 1024px / 768px / 480px
========================================================= */

@media (max-width:1024px) {

    :root {
        --header-height: 72px;
    }

    .container {
        width: 92%;
    }

    .nav {
        height: var(--header-height);
    }

    .menu-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
        position: relative;
        z-index: 300;
        width: 46px;
        height: 46px;
        border-radius: 50%;
        background: rgba(255,255,255,.72);
        box-shadow: 0 10px 28px rgba(143,114,157,.12);
    }

    .menu-toggle span {
        left: 13px;
        width: 20px;
    }

    .menu-toggle span:first-child {
        top: 18px;
    }

    .menu-toggle span:last-child {
        top: 27px;
    }

    .menu-toggle.active span:first-child,
    .menu-toggle.active span:last-child {
        top: 23px;
    }

    .menu {
        position: fixed;
        top: 0;
        right: 0;
        z-index: 250;
        width: min(82vw,360px);
        height: 100svh;
        padding: 120px 34px 40px;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 28px;
        background: rgba(255,252,248,.94);
        backdrop-filter: blur(28px);
        -webkit-backdrop-filter: blur(28px);
        border-left: 1px solid rgba(216,185,199,.22);
        box-shadow: -30px 0 80px rgba(143,114,157,.16);
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transform: translateX(100%);
        transition: .55s cubic-bezier(.19,1,.22,1);
    }

    .menu.active {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: translateX(0);
    }

    .menu a {
        width: 100%;
        padding: 14px 0;
        font-family: 'Cormorant Garamond','Noto Serif TC',serif;
        font-size: 1.55rem;
        font-weight: 300;
        letter-spacing: .08em;
        color: var(--ink);
        border-bottom: 1px solid rgba(143,114,157,.12);
    }

    .menu a::after {
        display: none;
    }

    .hero,
    .hero.hero-scroll-scene {
        height: 100svh;
        min-height: 100svh;
        overflow: hidden;
    }

    .hero-stage {
        position: relative;
        top: auto;
        height: 100svh;
        min-height: 100svh;
        overflow: hidden;
    }

    .hero-media,
    .hero-layer,
    .hero-title {
        transform: none;
    }

    .hero-title {
        left: 7%;
        right: 7%;
        width: auto;
        opacity: 1;
    }

    .hero-orbit,
    .hero-progress,
    .scroll-hint {
        display: none;
    }

    .service-card {
        grid-template-columns: 86px 1fr 1.2fr;
    }

    .service-card a {
        grid-column: 2 / -1;
        justify-self: start;
    }

    .collection-layout {
        grid-template-columns: 1fr;
    }

    .collection-text {
        max-width: 760px;
    }

    .about-hero-content {
        width: min(900px,82vw);
    }

    .about-feature-row {
        gap: clamp(24px,4vw,70px);
    }

    .about-feature {
        width: clamp(120px,14vw,150px);
    }

    .about-row,
    .about-story {
        grid-template-columns: 1fr;
    }

    .story-image {
        min-height: 560px;
    }

    .story-text {
        height: auto;
        padding: 100px 8%;
    }

    .team-floating-card {
        width: min(1180px,90%);
        padding: 44px 48px;
    }

    .team-card-content {
        gap: 42px;
    }

    .team-member-photo {
        width: 220px;
        height: 220px;
    }
}

@media (max-width:768px) {

    .container {
        width: 92%;
    }

    .hero-title {
        left: 8%;
        right: 8%;
        top: auto;
        bottom: 64px;
        width: auto;
    }

    .hero-heading {
        display: block;
        margin-bottom: 30px;
    }

    .hero-brand span {
        font-size: clamp(2.5rem,11vw,4rem);
        line-height: 1.15;
    }

    .hero-studio {
        font-size: .85rem;
        letter-spacing: .28em;
        margin-top: 10px;
    }

    .hero-subtitle {
        font-size: 1.5rem;
        margin-top: 20px;
        max-width: 260px;
    }

    .hero-text {
        width: 100%;
        padding-left: 0;
        margin-top: 34px;
        font-size: .92rem;
        line-height: 2.25;
        letter-spacing: .06em;
    }

    .hero-text::before {
        display: none;
    }

    .hero-actions {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
        width: 100%;
        margin-top: 48px;
    }

    .hero-actions .btn {
        width: 100%;
        height: 52px;
        min-width: 0;
    }

    .about {
        min-height: auto;
        padding: 120px 0 90px;
        align-items: flex-start;
        background: linear-gradient( 180deg, rgba(21,17,25,.55), rgba(21,17,25,.25), rgba(248,247,251,.08) ), url('../images/AboutPurpleMobile.png');
    }

    .about-content {
        width: 88%;
        margin: 0 auto;
    }

    .section-label {
        margin-bottom: 34px;
        font-size: .82rem;
        letter-spacing: .42em;
        line-height: 1.8;
    }

    .about h2 {
        margin-bottom: 44px;
        font-size: clamp(2.45rem,11vw,3.6rem);
        line-height: 1.35;
        letter-spacing: .08em;
    }

    .about p {
        margin-bottom: 28px;
        font-size: .95rem;
        line-height: 2.35;
        letter-spacing: .07em;
    }

    .about-signature {
        margin-top: 58px;
        padding: 30px 28px;
    }

    .about-signature span {
        margin-bottom: 16px;
        line-height: 1.8;
    }

    .about-signature strong {
        line-height: 2;
    }

    .service,
    .collection,
    .journal {
        padding: 90px 0;
    }

    .service {
        padding: 96px 0 110px;
    }

    .service .section-heading {
        margin-bottom: 46px;
        text-align: left;
    }

    .service .section-heading span {
        margin-bottom: 14px;
        font-size: .78rem;
        letter-spacing: .28em;
    }

    .service .section-heading h2 {
        font-size: clamp(2rem, 9vw, 3rem);
        line-height: 1.35;
        letter-spacing: .08em;
    }

    .service .section-heading p {
        font-size: .92rem;
        line-height: 2;
        letter-spacing: .06em;
    }

    .service-grid {
        display: grid;
        gap: 16px;
        border-top: none;
    }

    .service-card {
        display: grid;
        grid-template-columns: 58px 1fr;
        grid-template-areas:
            "number title"
            "text text"
            "link link";
        gap: 14px 18px;
        align-items: start;
        padding: 26px 22px;
        border: 1px solid rgba(31, 27, 34, .08);
        border-radius: 24px;
        background: rgba(255, 255, 255, .62);
        box-shadow: 0 18px 48px rgba(143, 114, 157, .08);
    }

    .service-card:hover {
        padding: 26px 22px;
        box-shadow: 0 18px 48px rgba(143, 114, 157, .08);
    }

    .service-card::before {
        display: none;
    }

    .service-number {
        grid-area: number;
        font-size: 2.7rem;
        line-height: 1;
        color: rgba(143, 114, 157, .34);
    }

    .service-card h3 {
        grid-area: title;
        padding-top: 8px;
        font-size: 1.26rem;
        line-height: 1.45;
        letter-spacing: .14em;
    }

    .service-card p {
        grid-area: text;
        width: 100%;
        margin-top: 4px;
        font-size: .94rem;
        line-height: 2.05;
        letter-spacing: .06em;
        color: rgba(31, 27, 34, .62);
    }

    .service-card a {
        grid-area: link;
        justify-self: start;
        margin-top: 8px;
        font-size: .95rem;
        letter-spacing: .12em;
    }

    .collection::before {
        display: none;
    }

    .collection-gallery {
        grid-template-columns: 1fr;
        grid-auto-rows: auto;
    }

    .gallery-item,
    .gallery-item.tall {
        min-height: 240px;
    }

    .journal-card {
        width: 90vw;
        padding: 30px 24px;
    }

    .about-hero {
        min-height: auto;
        padding: 120px 0 80px;
    }

    .about-hero-bg {
        position: absolute;
    }

    .about-hero-bg img {
        object-position: 72% center;
    }

    .about-hero::before {
        background: linear-gradient(180deg,rgba(250,247,250,.42) 0%,rgba(250,247,250,.62) 42%,rgba(250,247,250,.98) 100%);
    }

    .about-hero-content {
        position: relative;
        left: auto;
        top: auto;
        transform: none;
        width: 86%;
        margin: 0 auto;
        padding-top: 0;
        text-align: center;
    }

    .about-label {
        justify-content: center;
        gap: 18px;
        margin-bottom: 32px;
        font-size: .85rem;
        letter-spacing: .3em;
    }

    .about-label::after {
        width: 86px;
    }

    .about-hero-content h1 {
        white-space: normal;
        font-size: 2.55rem;
        line-height: 1.45;
        letter-spacing: .12em;
    }

    .about-subtitle {
        letter-spacing: .16em;
        line-height: 2;
    }

    .about-service-line {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
        text-align: center;
        white-space: normal;
        letter-spacing: .12em;
        line-height: 2.2;
    }

    .about-service-line span {
        margin: 0 8px;
    }

    .about-feature-row {
        display: grid;
        grid-template-columns: repeat(2,1fr);
        gap: 30px 18px;
        width: 100%;
        margin-top: 48px;
    }

    .about-feature {
        width: auto;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .about-feature-icon {
        width: 52px;
        height: 52px;
        margin-bottom: 14px;
    }

    .about-feature strong {
        margin-bottom: 8px;
        font-size: 1rem;
        line-height: 1.5;
    }

    .about-feature span {
        font-size: .82rem;
        line-height: 1.6;
    }

    .about-hero-bottom {
        position: relative;
        grid-template-columns: 1fr;
        gap: 0;
        padding: 0 7%;
        min-height: auto;
        margin-top: 60px;
    }

    .about-hero-bottom div {
        padding: 20px 0;
        border-right: none;
        border-bottom: 1px solid rgba(255,255,255,.42);
    }

    .about-hero-bottom div:last-child {
        border-bottom: none;
    }

    .about-story {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .story-image {
        height: 55vh;
        min-height: 420px;
    }

    .story-text {
        height: auto;
        padding: 80px 7%;
    }

    .story-text h2,
    .about-content-block h2 {
        font-size: 2.5rem;
    }

    .about-move-section {
        height: auto;
        min-height: 58vh;
        padding: 80px 7%;
        background-attachment: scroll;
    }

    .about-move-content {
        width: 100%;
    }

    .about-move-title {
        font-size: 2.6rem;
    }

    .about-move-subtitle {
        font-size: 1.15rem;
    }

    .about-move-text {
        font-size: .92rem;
        line-height: 2.1;
    }

    .about-space {
        min-height: 720px;
        background-attachment: scroll;
    }

    .about-space-overlay {
        width: 88%;
    }

    .about-space-overlay h2,
    .about-space-title {
        font-size: clamp(3.3rem,16vw,5.4rem);
    }

    .team-banner {
        position: relative;
        min-height: auto;
        padding: 96px 0 90px;
        background: #FFFCF8;
        overflow: visible;
    }

    .team-banner-bg,
    .team-banner::after {
        display: none;
    }

    .team-heading {
        position: relative;
        top: auto;
        left: auto;
        right: auto;
        bottom: auto;
        transform: none;
        width: 86%;
        margin: 0 auto 34px;
        text-align: center;
        z-index: 2;
    }

    .team-heading span {
        display: block;
        font-size: .72rem;
        letter-spacing: .26em;
        line-height: 1.6;
    }

    .team-heading h2 {
        margin-top: 10px;
        font-size: 2.35rem;
        line-height: 1.25;
    }

    .team-floating-card {
        position: relative;
        top: auto;
        left: auto;
        right: auto;
        bottom: auto;
        transform: none;
        width: 88%;
        margin: 0 auto;
        padding: 38px 0 46px;
        border-radius: 30px;
        background: rgba(255,240,244,.88);
        box-shadow: 0 22px 55px rgba(216,185,199,.16);
        overflow: hidden;
    }

    .team-card-content {
        display: flex;
        grid-template-columns: none;
        flex-wrap: nowrap;
        gap: 0;
        width: 100%;
        overflow-x: auto;
        overflow-y: hidden;
        scroll-snap-type: x mandatory;
        scroll-behavior: smooth;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }

    .team-card-content::-webkit-scrollbar {
        display: none;
    }

    .team-member {
        flex: 0 0 100%;
        min-width: 100%;
        max-width: 100%;
        padding: 0 24px;
        box-sizing: border-box;
        scroll-snap-align: start;
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
        writing-mode: horizontal-tb;
    }

    .team-member-photo {
        position: relative;
        flex: none;
        width: 230px;
        height: 230px;
        max-width: 100%;
        margin: 0 auto 28px;
        border-radius: 26px;
        overflow: hidden;
    }

    .team-member-photo > img {
        display: block;
        width: 100%;
        height: 100%;
        max-width: none;
        object-fit: cover;
        object-position: center;
        margin: 0;
        border-radius: 0;
        box-shadow: none;
    }

    .team-member-ig {
        position: absolute;
        right: 14px;
        bottom: 14px;
        left: auto;
        top: auto;
        transform: none;
        width: 34px;
        height: 34px;
        opacity: 1;
        z-index: 4;
    }

    .team-member-ig img {
        width: 100%;
        height: 100%;
        object-fit: contain;
        margin: 0;
        border-radius: 0;
        box-shadow: none;
    }

    .team-member h3 {
        width: 100%;
        margin: 0 0 18px;
        text-align: center;
        font-size: 2rem;
        line-height: 1.2;
        writing-mode: horizontal-tb;
    }

    .team-member p {
        width: 100%;
        max-width: 280px;
        margin: 0 auto;
        text-align: left;
        font-size: .92rem;
        line-height: 2.05;
        letter-spacing: .06em;
        writing-mode: horizontal-tb;
    }

    .team-member p strong {
        display: block;
        margin-top: 12px;
    }

    .booking-modal-panel {
        width: 88vw;
        padding: 40px 26px;
        border-radius: 26px;
    }

    .booking-modal h2 {
        font-size: 1.7rem;
    }

    .booking-qr {
        width: 180px;
    }

    body {
        padding-bottom: 84px;
    }

    .site-footer-nav {
        display: none !important;
    }

    .mobile-footer-nav {
        display: block;
        position: fixed;
        left: 0;
        bottom: 0;
        z-index: 160;
        width: 100%;
        pointer-events: none;
    }

    .mobile-footer-bar {
        position: relative;
        z-index: 2;
        width: calc(100% - 24px);
        height: 64px;
        margin: 0 auto 12px;
        padding: 6px;
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 4px;
        background: rgba(247, 244, 239, .94);
        border: 1px solid rgba(61, 52, 44, .12);
        border-radius: 999px;
        box-shadow: 0 12px 34px rgba(61, 52, 44, .16);
        pointer-events: auto;
    }

    .mobile-footer-btn {
        position: relative;
        height: 52px;
        border-radius: 999px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: rgba(61, 52, 44, .56);
        font-family: 'Noto Serif TC', serif;
        font-size: 13px;
        letter-spacing: .12em;
        transition: color .28s ease, background .28s ease, transform .28s ease;
    }

    .mobile-footer-btn.active {
        color: rgba(61, 52, 44, .78);
        background: var(--rose-gold);
        box-shadow: 0 8px 18px rgba(216, 167, 160, .28);
    }

    .mobile-footer-btn.active span {
        color: rgba(61, 52, 44, .78);
    }

    .mobile-booking {
        color: var(--brown);
        background: rgba(197, 164, 106, .16);
    }

    .mobile-booking:active,
    .mobile-footer-btn:active {
        transform: scale(.96);
    }

    .mobile-footer-panel {
        position: absolute;
        left: 12px;
        right: 12px;
        bottom: 86px;
        z-index: 1;
        padding: 18px 18px 20px;
        background: rgba(247, 244, 239, .97);
        border: 1px solid rgba(61, 52, 44, .12);
        border-radius: 24px;
        box-shadow: 0 18px 48px rgba(61, 52, 44, .18);
        opacity: 0;
        visibility: hidden;
        transform: translateY(18px) scale(.98);
        transform-origin: bottom center;
        transition: opacity .28s ease, visibility .28s ease, transform .28s ease;
        pointer-events: auto;
    }

    .mobile-footer-nav.panel-open .mobile-footer-panel {
        opacity: 1;
        visibility: visible;
        transform: translateY(0) scale(1);
    }

    .mobile-panel-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding-bottom: 14px;
        margin-bottom: 10px;
        border-bottom: 1px solid rgba(61, 52, 44, .1);
    }

    .mobile-panel-header span {
        font-family: 'Noto Serif TC', serif;
        font-size: 15px;
        letter-spacing: .16em;
        color: var(--brown);
    }

    .mobile-panel-header button {
        width: 34px;
        height: 34px;
        border-radius: 50%;
        color: rgba(61, 52, 44, .7);
        background: rgba(61, 52, 44, .06);
        font-size: 22px;
        line-height: 1;
    }

    .mobile-panel-list {
        display: none;
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .mobile-panel-list.active {
        display: grid;
    }

    .mobile-panel-list a {
        display: flex;
        justify-content: space-between;
        align-items: center;
        min-height: 48px;
        padding: 0 16px;
        border-radius: 16px;
        background: rgba(255, 255, 255, .56);
        color: rgba(61, 52, 44, .78);
        font-family: 'Noto Serif TC', serif;
        font-size: 14px;
        letter-spacing: .12em;
        transition: background .25s ease, color .25s ease, transform .25s ease;
    }

    .mobile-panel-list a::after {
        content: "→";
        font-family: 'Cormorant Garamond', serif;
        color: var(--gold);
        font-size: 18px;
    }

    .mobile-panel-list a:active {
        transform: scale(.98);
        background: rgba(197, 164, 106, .14);
    }

    body.mobile-panel-open .back-to-top {
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transform: translateY(12px);
    }

    .intro-logo {
        width: 96px;
        height: 96px;
    }

    .intro-content {
        gap: 20px;
    }

    .intro-name {
        font-size: 1.35rem;
        gap: .16em;
        letter-spacing: .12em;
    }

    .intro-en {
        font-size: 1.3rem;
    }
}

@media (max-width:480px) {

    :root {
        --header-height: 66px;
    }

    .container {
        width: 94%;
    }

    .logo img {
        width: 28px;
        height: 28px;
    }

    .logo span {
        font-size: .72rem;
    }

    .menu {
        width: 85vw;
    }

    .menu a {
        font-size: 1.3rem;
    }

    .hero-title {
        bottom: 38px;
    }

    .hero-brand span {
        font-size: 2.2rem;
        line-height: 1.18;
    }

    .hero-studio {
        font-size: .75rem;
        letter-spacing: .2em;
    }

    .hero-subtitle {
        font-size: 1.3rem;
        max-width: 220px;
    }

    .hero-text {
        margin-top: 30px;
        font-size: .86rem;
        line-height: 2.2;
    }

    .hero-actions {
        margin-top: 42px;
    }

    .about {
        padding: 110px 0 84px;
    }

    .about-content {
        width: 86%;
    }

    .section-label {
        margin-bottom: 30px;
    }

    .about h2 {
        margin-bottom: 40px;
        font-size: clamp(2.25rem,12vw,3.15rem);
        line-height: 1.38;
    }

    .about p {
        margin-bottom: 26px;
        line-height: 2.45;
    }

    .about-signature {
        margin-top: 64px;
    }

    .gallery-item,
    .gallery-item.tall {
        min-height: 200px;
    }

    .journal-card {
        width: 92vw;
    }

    .about-hero {
        padding: 100px 0 70px;
    }

    .about-hero-content h1 {
        font-size: 2.25rem;
    }

    .about-feature-row {
        grid-template-columns: repeat(2,1fr);
        gap: 26px 14px;
        margin-top: 42px;
    }

    .about-feature-icon {
        width: 50px;
        height: 50px;
    }

    .about-feature strong {
        font-size: .95rem;
    }

    .about-feature span {
        font-size: .78rem;
    }

    .story-image {
        height: 48vh;
        min-height: 360px;
    }

    .story-text {
        padding: 64px 7%;
    }

    .story-text h2 {
        font-size: 2.15rem;
    }

    .story-text p {
        font-size: .92rem;
        line-height: 2.15;
    }

    .about-move-title {
        font-size: 2.25rem;
    }

    .about-ending h2 {
        font-size: 3.5rem;
    }

    .about-space {
        min-height: 640px;
    }

    .about-space-overlay h2,
    .about-space-title {
        font-size: clamp(2.7rem,15vw,4.3rem);
    }

    .team-banner {
        padding: 82px 0 78px;
    }

    .team-heading {
        width: 88%;
        margin-bottom: 28px;
    }

    .team-heading span {
        font-size: .66rem;
        letter-spacing: .22em;
    }

    .team-heading h2 {
        font-size: 2rem;
    }

    .team-floating-card {
        width: 90%;
        padding: 32px 0 40px;
        border-radius: 28px;
    }

    .team-member {
        padding: 0 20px;
    }

    .team-member-photo {
        width: 220px;
        height: 220px;
        border-radius: 24px;
        margin-bottom: 26px;
    }

    .team-member h3 {
        font-size: 1.85rem;
    }

    .team-member p {
        max-width: 260px;
        font-size: .88rem;
        line-height: 2;
        letter-spacing: .045em;
    }

    .back-to-top {
        z-index: 180;
        right: 18px;
        bottom: 96px;
        width: 42px;
        height: 42px;
    }

    .booking-modal-panel {
        width: 90vw;
        padding: 34px 22px;
    }

    .booking-qr {
        width: 160px;
    }

    .mobile-footer-bar {
        width: calc(100% - 18px);
        margin-bottom: 9px;
    }

    .mobile-footer-panel {
        left: 9px;
        right: 9px;
        bottom: 82px;
    }

    .mobile-footer-btn {
        font-size: 12px;
        letter-spacing: .08em;
    }
}

/* ================================
   Bottom Page Navigation
   固定底部切換導覽｜白色半透明版
================================ */

body {
    padding-bottom: 98px;
}

.site-footer-nav {
    position: fixed;
    left: 0;
    bottom: 0;
    z-index: 130;
    width: 100%;
    background: rgba(247, 244, 239, .88);
    color: var(--brown);
    border-top: 1px solid rgba(61, 52, 44, .12);
    box-shadow: 0 -12px 34px rgba(61, 52, 44, .08);
}

.footer-inner {
    width: 92%;
    max-width: 1480px;
    height: 98px;
    margin: auto;
    display: grid;
    grid-template-columns: 72px 1.1fr 1.5fr .8fr;
    align-items: center;
    gap: 34px;
}

.footer-brand {
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-brand img {
    width: 48px;
    height: 48px;
    object-fit: contain;
    filter: none;
}

.footer-info {
    display: grid;
    gap: 9px;
    font-family: 'Noto Serif TC', serif;
    font-size: 13px;
    color: rgba(31, 27, 34, .72);
}

.footer-info p {
    display: grid;
    grid-template-columns: 44px 1fr;
    align-items: baseline;
    gap: 12px;
    margin: 0;
}

.footer-info span {
    font-family: 'Cormorant Garamond', serif;
    font-size: 15px;
    font-weight: 400;
    font-style: italic;
    letter-spacing: .04em;
    color: rgba(143, 114, 157, .86);
}

.footer-info a {
    font-family: 'Noto Serif TC', serif;
    font-size: 13px;
    font-weight: 400;
    letter-spacing: .025em;
    color: rgba(31, 27, 34, .66);
    font-variant-numeric: lining-nums;
    transition: color .3s ease;
}

.footer-info a:hover {
    color: var(--purple);
}

/* 頁籤區 */
.footer-tabs {
    display: grid;
    grid-template-columns: repeat(3, minmax(90px, 1fr));
    gap: 26px;
    align-items: start;
}

.footer-tab-group {
    display: grid;
    grid-template-columns: 52px 1fr;
    gap: 16px;
    align-items: start;
    min-height: 58px;
}

.footer-tab-title {
    position: relative;
    padding: 0;
    color: rgba(61, 52, 44, .46);
    font-family: 'Noto Serif TC', serif;
    font-size: 15px;
    font-weight: 400;
    letter-spacing: .24em;
    writing-mode: vertical-rl;
    text-orientation: mixed;
    transition: color .3s ease;
}

.footer-tab-title::after {
    content: "";
    position: absolute;
    top: 0;
    right: -8px;
    width: 1px;
    height: 100%;
    background: rgba(61, 52, 44, .18);
    transform: scaleY(.72);
    transform-origin: center;
    transition: background .3s ease, transform .3s ease;
}

.footer-tab-title:hover,
.footer-tab-title.active {
    color: var(--brown);
}

.footer-tab-title.active::after {
    background: var(--gold);
    transform: scaleY(1);
}

.footer-tab-list {
    display: grid;
    gap: 7px;
    opacity: .62;
    transform: translateX(-4px);
    transition: opacity .3s ease, transform .3s ease;
}

.footer-tab-list.active {
    opacity: 1;
    transform: translateX(0);
}

.footer-tab-list a {
    width: fit-content;
    color: rgba(61, 52, 44, .66);
    font-family: 'Noto Serif TC', serif;
    font-size: 13px;
    font-weight: 300;
    letter-spacing: .16em;
    line-height: 1.4;
    transition: color .3s ease, transform .3s ease;
}

.footer-tab-list a:hover {
    color: var(--brown);
    transform: translateX(4px);
}

/* 社群 */
.footer-social {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 14px;
    font-family: 'Cormorant Garamond', serif;
    font-size: 12px;
    letter-spacing: .14em;
    color: rgba(61, 52, 44, .46);
}

.footer-social span {
    white-space: nowrap;
}

.footer-social a {
    color: rgba(61, 52, 44, .56);
    font-size: 12px;
    transition: color .3s ease;
}

.footer-social a:hover {
    color: var(--brown);
}

/* 只有一組服務頁籤時使用 */
.footer-tabs.single {
    grid-template-columns: 1fr;
    max-width: 220px;
}