/* premium-v2 Project Panda Design System */
:root {
    --primary-green: #2d5a27;
    --deep-forest: #1e3d1a;
    --light-green: #eaf2e9;
    --dark-green: #2d5a27;
    --accent-gold: #009C61;
    --dark-charcoal: #1a1a1a;
    --soft-white: #f5f5f5;
    --pure-white: #ffffff;
    --text-muted: #888888;
    --soft-cream: #f9f7f2;
    --light-gray: #f2f2f2;
    --rich-red: #e74c3c;
    /* Added Brand Red */

    --font-main: 'Inter', -apple-system, sans-serif;
    --font-serif: 'Playfair Display', 'Noto Serif JP', serif;

    --transition-smooth: all 0.8s cubic-bezier(0.25, 1, 0.5, 1);
    --premium-gold: #b49650;
    --dark-bg: #141414;
}

/* --- Full Capacity Notice Bar (Sticky & Slim version) --- */
.full-notice-bar {
    background: #fff5f5;
    border-bottom: 1px solid var(--rich-red);
    padding: 6px 0; /* 更加纤细 */
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 2000;
    box-shadow: 0 1px 19px rgba(231, 76, 60, 0.1); 
}

.notice-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.notice-text {
    display: flex;
    align-items: center;
    gap: 15px;
    color: var(--dark-charcoal);
}

.notice-text i {
    color: var(--rich-red);
    font-size: 1.4rem;
}

.notice-text p {
    margin: 0;
    font-size: 0.85rem; /* 字体调细 */
    line-height: 1.4;
    font-weight: 500;
}

.notice-text strong {
    color: var(--rich-red);
    font-weight: 700;
}

.notice-link-btn {
    background: var(--rich-red);
    color: #fff;
    padding: 5px 14px; /* 按钮也调细 */
    border-radius: 4px;
    font-size: 0.75rem; /* 字体调小 */
    font-weight: 700;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: background-color 0.2s ease;
    white-space: nowrap;
    border: none;
    box-shadow: none; /* 去除阴影 */
}

.notice-link-btn:hover {
    background: #c0392b;
    color: #fff;
    transform: none; /* 去除悬浮位移 */
    box-shadow: none; /* 确保无阴影 */
}

@media (max-width: 991px) {
    .full-notice-bar {
        padding: 8px 15px; /* 侧边留白 */
    }
    .notice-inner {
        flex-direction: row; /* 左右两栏布局 */
        justify-content: space-between;
        align-items: center;
        gap: 10px;
    }

    .notice-text {
        flex: 1;
        gap: 6px;
    }
    
    .notice-text i {
        display: none; /* 手机端隐藏大图标，改用红点 */
    }

    .notice-text p {
        font-size: 0.72rem; /* 极致精简字体 */
        line-height: 1.25;
        position: relative;
        padding-left: 12px;
        text-align: left;
    }

    /* 手机端改用小红点标识，更精致 */
    .notice-text p::before {
        content: "";
        position: absolute;
        left: 0;
        top: 4px;
        width: 6px;
        height: 6px;
        background: var(--rich-red);
        border-radius: 50%;
    }

    .notice-link-btn {
        padding: 6px 10px; 
        font-size: 0.7rem;
        border-radius: 4px;
        flex-shrink: 0; /* 按钮不换行 */
    }
    
    /* 极致压缩按钮文字 */
    .notice-link-btn i {
        display: none; /* 按钮内箭头也隐藏，节省空间 */
    }
}

.pc-only {
    display: none;
}

@media (min-width: 992px) {
    .pc-only {
        display: block;
    }
}

/* --- Tour Features (Compact Magazine Grid) --- */
.tour-features {
    background-color: #f2f2f2;
    /* 调深一点点的浅灰，让对比更清晰 */
    padding: 60px 0;
    color: var(--dark-charcoal);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 25px;
    padding: 25px 30px;
    background: var(--pure-white);
    /* 卡片变回纯白，在浅绿底色上更有立体感 */
    border: none;
    /* 去掉生硬边框 */
    transition: var(--transition-smooth);
}

.feature-item:hover {
    background: var(--light-green);
    border-color: var(--accent-gold);
    transform: translateY(-2px);
}

.f-number {
    font-family: var(--font-serif);
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--accent-gold);
    opacity: 0.3;
    line-height: 1;
    flex-shrink: 0;
    margin-top: 3px;
}

.f-info {
    flex: 1;
}

.f-info h3 {
    font-size: 1.15rem;
    color: var(--dark-charcoal);
    margin-bottom: 12px;
    /* 增加间距给线条留位置 */
    letter-spacing: 0.02em;
    font-family: var(--font-serif);
    position: relative;
    /* 确保线条定位准确 */
}

.f-info h3::after {
    content: '';
    position: absolute;
    bottom: -3px;
    /* 线条位于标题下方 10px */
    left: 0;
    width: 25px;
    height: 2px;
    background: var(--accent-gold);
    transition: width 0.4s ease;
    /* 增加交互动画 */
}

.feature-item:hover .f-info h3::after {
    width: 70px;
    /* 悬停时线条伸长 */
}

.f-info p {
    font-size: 0.88rem;
    line-height: 1.6;
    color: #666;
    margin: 0;
}

@media (max-width: 900px) {
    .features-grid {
        gap: 15px;
    }

    .f-number {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .features-grid {
        grid-template-columns: 1fr;
    }

    .tour-features {
        padding: 40px 0;
    }

    .feature-item {
        padding: 20px;
        gap: 15px;
    }
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    background-color: var(--pure-white);
    color: var(--dark-charcoal);
    line-height: 1.8;
    overflow-x: hidden;
}

h1,
h2,
h3 {
    font-family: var(--font-serif);
    font-weight: 700;
}

/* --- Preloader --- */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #ffffff;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.loader-inner {
    text-align: center;
}

.loader-logo {
    font-family: var(--font-serif);
    font-size: 1.2rem;
    letter-spacing: 0.5em;
    color: var(--primary-green);
    margin-top: 20px;
}

.loader-line {
    display: block;
    width: 150px;
    height: 1px;
    background: #eeeeee;
    position: relative;
    overflow: hidden;
}

.loader-line::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: var(--accent-gold);
    transform: translateX(-100%);
    animation: loadingLine 1.5s infinite ease-in-out;
}

@keyframes loadingLine {
    0% {
        transform: translateX(-100%);
    }

    50% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(100%);
    }
}

/* Animations */
@keyframes kenBurns {
    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(1.1);
    }
}

.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: var(--transition-smooth);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* --- Hero Section Refinement --- */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 5%;
    /* banner.jpg background with white overlay mask */
    background: linear-gradient(rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.9)), url('img/banner.jpg') no-repeat center center / cover;
    overflow: hidden;
}

.hero-main-img-container {
    width: 70%;
    height: 90%;
    position: relative;
    z-index: 2;
    padding-top: 25px;
    /* 为印章留出空间 */
}

.hero-accent-shape {
    position: absolute;
    top: 15px;
    left: 15px;
    width: 100%;
    height: 100%;
    background-color: var(--accent-gold);
    /* Using the target green #009C61 */
    opacity: 0.15;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    z-index: -1;
}

.hero-main-img {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
}

.hero-main-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.1);
}

.hero-watermark {
    position: absolute;
    bottom: 5px;
    left: 10px;
    font-family: var(--font-serif);
    font-size: 0.8rem;
    font-weight: 500;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 20;
    pointer-events: none;
    letter-spacing: 0.15em;

}

.hero-corner-line {
    position: absolute;
    top: 10%;
    left: 5%;
    width: 100px;
    height: 100px;
    border-top: 1px solid var(--accent-gold);
    border-left: 1px solid var(--accent-gold);
    opacity: 0.4;
}

.hero-side-text {
    position: absolute;
    right: 2%;
    top: 50%;
    transform: translateY(-50%) rotate(90deg);
    font-size: 0.75rem;
    letter-spacing: 0.8em;
    color: var(--accent-gold);
    opacity: 0.6;
    font-weight: 300;
}

/* 催行決定印章：复古红色印章 */
.status-stamp {
    position: absolute;
    top: -25px;
    right: -30px;
    z-index: 20;
    transform: rotate(12deg);
    padding: 10px 22px;
    background: #fff;
    border: 4px double #e74c3c;
    color: #e74c3c;
    font-family: var(--font-main);
    font-weight: 900;
    font-size: 1.3rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow:
        0 4px 15px rgba(231, 76, 60, 0.15),
        2px 2px 0 rgba(231, 76, 60, 0.1);
    pointer-events: none;
    border-radius: 4px;

    /* 动画配置：延迟 2s 显示 */
    opacity: 0;
    animation: stampIn 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
    animation-delay: 3.5s;
}

@keyframes stampIn {
    0% {
        opacity: 0;
        transform: rotate(15deg) scale(2);
        filter: blur(5px);
    }

    100% {
        opacity: 1;
        transform: rotate(12deg) scale(1);
        filter: blur(0);
    }
}

.status-stamp::before {
    content: '';
    position: absolute;
    inset: 2px;
    border: 1px solid rgba(231, 76, 60, 0.3);
}

/* 移动端适配印章尺寸 */
@media (max-width: 768px) {
    .status-stamp {
        top: -15px;
        right: -10px;
        font-size: 1rem;
        padding: 6px 15px;
        border-width: 3px;
    }
}

/* Scroll Hint Animation */
.scroll-hint {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.scroll-text {
    font-size: 0.7rem;
    letter-spacing: 0.3em;
    opacity: 0.5;
}

.scroll-line {
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, var(--accent-gold) 0%, transparent 100%);
    position: relative;
    overflow: hidden;
}

.scroll-line::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: white;
    animation: scrollMove 2s infinite cubic-bezier(0.65, 0, 0.35, 1);
}

@keyframes scrollMove {
    0% {
        transform: translateY(-100%);
    }

    100% {
        transform: translateY(100%);
    }
}

/* Base title group (Original Colors) */
.hero-title-group {
    position: absolute;
    left: 15%;
    bottom: 20%;
    z-index: 5;
    pointer-events: none;
}

.hero-title-group h1 {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 8vw, 4.5rem);
    line-height: 1.1;
    color: #1a1a1a;
    /* Original Charcoal */
}

.hero-title-group .sub {
    font-size: 1rem;
    letter-spacing: 0.5em;
    color: #009C61;
    /* Updated to Green */
    display: block;
    margin-bottom: 20px;
}

.hero-title-group p {
    color: #1a1a1a;
    margin-top: 25px;
    letter-spacing: 0.12em;
    font-size: 1.5rem;
    font-weight: 600;
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    display: inline-block;
    padding: 10px 22px;
    border-left: 3px solid var(--accent-gold);
}

.hero-title-group p em {
    font-style: normal;
    color: var(--accent-gold);
    font-weight: 800;
}

.hero-date-tag {
    display: inline-flex;
    align-items: center;
    font-size: 0.85em;
    /* 稍微缩小，体现主次 */
    font-weight: 400;
    /* 稍微变细 */
    letter-spacing: 0.08em;
    opacity: 0.8;
    /* 稍微柔和一点 */
    margin-left: 1.5rem;
}

.hero-date-tag::before {
    content: "|";
    margin-right: 1.5rem;
    opacity: 0.4;
    font-weight: 300;
}

.hero-title-group-split p .hero-date-tag {
    color: #ffffff;
    opacity: 0.9;
}

/* Split layer: same position as base, all white text.
   JS sets clip-path to match image polygon exactly. */
.hero-title-group-split {
    position: absolute;
    left: 15%;
    bottom: 20%;
    z-index: 15;
    /* 确保高于图片容器 (z-index: 2) */
    /* above image (z:auto), below nav */
    pointer-events: none;
    /* clip-path applied by JS */
}

.hero-title-group-split h1 {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 8vw, 4.5rem);
    line-height: 1.1;
    color: #ffffff;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.6), 0 2px 10px rgba(0, 0, 0, 0.4);
}

.hero-title-group-split .sub {
    font-size: 1rem;
    letter-spacing: 0.5em;
    display: block;
    margin-bottom: 20px;
    color: #ffffff;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 1);
}

.hero-title-group-split p {
    color: #fff;
    margin-top: 25px;
    letter-spacing: 0.12em;
    font-size: 1.5rem;
    font-weight: 700;
    background: rgba(0, 0, 0, 0.55);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    display: inline-block;
    padding: 10px 22px;
    border-left: 3px solid var(--accent-gold);
}

.hero-title-group-split p em {
    font-style: normal;
    color: #5EFFA3;
    font-weight: 800;
}

/* Sticky Navigation */
.nav-container {
    display: none;
    /* Temporarily hidden per user request */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 5%;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    transition: 0.5s;
}

.nav-container.scrolled {
    background: rgba(255, 255, 255, 0.95);
    padding: 10px 5%;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.nav-container.scrolled .logo,
.nav-container.scrolled .nav-links a {
    color: var(--dark-charcoal);
}

.logo {
    font-size: 1.5rem;
    font-family: var(--font-serif);
    color: var(--pure-white);
    font-weight: 700;
}

.nav-container.scrolled .logo {
    color: var(--primary-green);
}

.nav-links {
    display: flex;
    gap: 40px;
}

.nav-links a {
    color: var(--pure-white);
    text-decoration: none;
    font-size: 0.9rem;
    letter-spacing: 0.1em;
    transition: 0.3s;
}

/* --- Concept Monograph Section --- */
.concept-monograph {
    position: relative;
    overflow: hidden;
}

/* Background Watermark - Moved to left and refined */
.concept-watermark {
    position: absolute;
    top: 50%;
    left: 5%;
    transform: translateY(-50%);
    font-size: 20rem;
    font-weight: 800;
    color: var(--accent-gold);
    opacity: 0.05;
    /* Slightly more visible */
    font-family: var(--font-serif);
    line-height: 1;
    pointer-events: none;
    z-index: 0;
    white-space: nowrap;
}

.monograph-grid {
    display: grid;
    grid-template-columns: 1fr 0.9fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 1;
}

/* Typography Refinement */
.concept-header .section-title {
    font-size: 2.2rem;
    line-height: 1.4;
    margin-bottom: 40px;
}

.concept-header .highlight {
    color: var(--accent-gold);
    display: inline-block;
    /* Ensure border-bottom works correctly with the line break */
    border-bottom: 2px solid var(--accent-gold);
    padding-bottom: 2px;
}

.monograph-copy {
    margin-top: 30px;
    max-width: 580px;
    /* 稍微放宽以平衡文字量 */
}

.concept-subtitle {
    font-size: 0.9rem;
    letter-spacing: 0.3em;
    color: var(--accent-gold);
    margin-bottom: 25px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 15px;
}

.concept-subtitle::after {
    content: '';
    flex: 1;
    height: 1px;
    background: linear-gradient(to right, var(--accent-gold), transparent);
}

.lead-text {
    font-size: 1.25rem;
    /* 字数多时稍微调细一点，增加可读性 */
    font-weight: 600;
    margin-bottom: 1.2rem;
    color: var(--dark-charcoal);
    line-height: 1.8;
}

.copy-block p {
    color: #444;
    margin-bottom: 1.2rem;
    font-size: 1rem;
    line-height: 1.8;
}

/* 哲理性金句区 */
.monograph-quote {
    margin: 40px 0;
    padding: 25px 30px;
    background: var(--light-green);
    /* 使用浅绿背景提示这是一份特殊的感悟 */
    border-left: 3px solid var(--accent-gold);
    font-style: italic;
    font-size: 0.95rem;
    color: var(--deep-forest);
    line-height: 1.8;
    position: relative;
}

.copy-footer {
    margin-top: 40px;
    font-size: 1.05rem;
    letter-spacing: 0.05em;
    font-weight: 700;
    color: var(--dark-charcoal);
    padding-left: 0;
    border-left: none;
    /* 取消边框，改用文字加粗来收尾 */
}

/* --- Tour Summary Ribbon (The Commerce Bridge) --- */
.tour-summary-ribbon {
    background: var(--deep-forest);
    padding: 35px 0;
    position: relative;
    z-index: 100;
}

.ribbon-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

/* 数值与状态组 */
.m-val-group {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

/* Premium 状态标签：精致横版设计 */
.m-status-premium {
    background: rgba(231, 76, 60, 0.1);
    color: #e74c3c;
    font-size: 0.7rem;
    font-weight: 800;
    padding: 2px 10px;
    border-radius: 100px;
    /* 完美胶囊 */
    border: 1.5px solid #e74c3c;
    letter-spacing: 0.05em;
    line-height: 1.4;
    white-space: nowrap;

    /* 动画配置：同步主印章节奏 */
    opacity: 0;
    transform: translateX(-10px);
    animation: slideInRight 0.6s cubic-bezier(0.23, 1, 0.32, 1) forwards;
    animation-delay: 0.5s;
}

/* 售罄/满员状态扩展 */
.sold-out {
    color: #e74c3c !important;
    border-color: #e74c3c !important;
}

/* 禁用/置灰按钮 */
.disabled-style {
    background: #95a5a6 !important;
    background-color: #95a5a6 !important;
    border-color: #95a5a6 !important;
    color: #fff !important;
    cursor: not-allowed !important;
    pointer-events: none !important;
    box-shadow: none !important;
    transform: none !important;
}

.disabled-style::after {
    display: none !important;
}

@keyframes slideInRight {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.ribbon-item {
    display: flex;
    flex-direction: column;
}

.ribbon-item .r-label {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.7);
    letter-spacing: 0.2em;
    margin-bottom: 6px;
}

.ribbon-item .r-value {
    font-size: 1.1rem;
    font-weight: 700;
    color: white;
    display: flex;
    align-items: baseline;
    gap: 4px;
}

/* 针对价格項目的特殊强化 */
.ribbon-item:nth-child(2) .r-value {
    color: #ffd700;
    /* 高级感极强的亮金色 */
    font-size: 1.6rem;
    font-family: 'Inter', sans-serif;
    letter-spacing: -0.02em;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}


.ribbon-cta .r-btn {
    color: var(--accent-gold);
    padding: 16px 50px;
    font-size: 1rem;
    font-weight: 700;
    text-decoration: none;
    background: #fff;
    transition: 0.4s;
}

.ribbon-cta .r-btn:hover {
    background: var(--accent-gold);
    color: white;
}

/* Visual Layering: Stacked Book Design */
.visual-container {
    position: relative;
    padding: 20px 80px 80px 0;
    /* Increase right/bottom padding for the spreading images */
}

.stacked-visuals {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
}

.visual-frame {
    background: white;
    padding: 10px;
    box-shadow: 5px 5px 20px rgba(0, 0, 0, 0.08);
    /* 减小阴影，让边缘更干脆 */
    transition: var(--transition-smooth);
}

.frame-primary {
    width: 80%;
    position: relative;
    z-index: 1;
}

.frame-secondary {
    width: 70%;
    position: absolute;
    top: 60%;
    left: 58%;
    z-index: 2;
    transform: rotate(4deg);
    box-shadow: 8px 8px 30px rgba(0, 0, 0, 0.1);
}

.visual-frame img {
    width: 100%;
    display: block;
}

.frame-caption {
    margin-top: 10px;
    font-size: 0.7rem;
    color: var(--text-muted);
    line-height: 1.4;
    text-align: center;
}

.visual-deco-box {
    position: absolute;
    top: -40px;
    right: -40px;
    width: 280px;
    height: 280px;
    background-image: radial-gradient(var(--accent-gold) 1.2px, transparent 0);
    background-size: 24px 24px;
    opacity: 0.25;
    /* 降低透明度，使其作为优雅背景存在 */
    z-index: 0;
}

.visual-deco-box::after {
    content: '50';
    position: absolute;
    bottom: -20px;
    right: -10px;
    font-size: 12rem;
    font-weight: 900;
    font-family: var(--font-serif);
    color: var(--accent-gold);
    opacity: 0.08;
    line-height: 1;
}

@media (max-width: 1024px) {
    .monograph-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .concept-watermark {
        font-size: 10rem;
        top: 0;
        right: 5%;
    }
}

.section {
    padding: 100px 0;
    /* Reduced from 150px */
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 5%;
}

.section-label {
    font-size: 0.8rem;
    color: var(--accent-gold);
    text-transform: uppercase;
    letter-spacing: 0.5em;
    display: block;
    margin-bottom: 10px;
}

.section-title {
    font-size: 3rem;
    margin-bottom: 60px;
    line-height: 1.2;
}

/* --- Exhibition Section (12-Column Balanced Grid) --- */
.exhibition {
    background-color: var(--soft-white);
    padding: 120px 0;
}

.exhibition-header {
    margin-bottom: 60px;
}

.moodboard {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: repeat(10, 110px);
    /* Slightly taller units */
    gap: 24px;
}

.mood-item {
    position: relative;
    overflow: hidden;
    background: #000;
    border-radius: 2px;
}

.mood-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
    opacity: 0.95;
    display: block;
}

.mood-item:hover img {
    opacity: 1;
    transform: scale(1.04);
}

/* TOP ROW: Force aligned to top */
.item-1 {
    grid-column: 1 / 7;
    grid-row: 1 / 5;
}

.item-2 {
    grid-column: 7 / 10;
    grid-row: 1 / 4;
    /* Aligned to item-3 top */
}

.item-3 {
    grid-column: 10 / 13;
    grid-row: 1 / 4;
    /* Previously started at row 2, now starts at row 1 to ALIGN TOP */
}

/* MIDDLE BLOCK: Staggered */
.item-4 {
    grid-column: 7 / 13;
    grid-row: 4 / 7;
}

.item-5 {
    grid-column: 1 / 4;
    grid-row: 5 / 9;
}

.item-6 {
    grid-column: 4 / 7;
    grid-row: 5 / 7;
    /* Height swapped: was 5/9 */
}

/* LOWER BLOCK: Balanced */
.item-7 {
    grid-column: 7 / 13;
    grid-row: 7 / 11;
}

.item-8 {
    grid-column: 1 / 4;
    grid-row: 9 / 11;
}

.item-9 {
    grid-column: 4 / 7;
    grid-row: 7 / 11;
    /* Height swapped: was 9/11 */
}

.mood-caption {
    position: absolute;
    bottom: 25px;
    left: 25px;
    max-width: 80%;
    color: white;
    font-size: 0.8rem;
    letter-spacing: 0.1em;
    opacity: 0;
    transition: 0.5s cubic-bezier(0.25, 1, 0.5, 1);
    background: rgba(0, 0, 0, 0.6);
    /* Glass effect */
    padding: 8px 16px;
    backdrop-filter: blur(8px);
    z-index: 2;
    transform: translateY(10px);
}

.mood-item:hover .mood-caption {
    opacity: 1;
    transform: translateY(0);
}


/* --- Artist Profile Section (Editorial) --- */
.artist-profile {
    position: relative;
    background-color: #fcfaf5;
    /* Premium Ivory for Special Project 1 */
    padding: 120px 0;
    overflow: hidden;
    border-top: 1px solid rgba(0, 0, 0, 0.02);
    border-bottom: 1px solid rgba(0, 0, 0, 0.02);
}

.profile-watercolor {
    position: absolute;
    bottom: -20px;
    left: 20%;
    font-size: 18rem;
    font-weight: 800;
    font-family: var(--font-serif);
    color: var(--accent-gold);
    opacity: 0.04;
    white-space: nowrap;
    pointer-events: none;
    z-index: 0;
}

.profile-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 100px;
    align-items: flex-start;
    position: relative;
    z-index: 1;
}

/* Portrait Styling */
.portrait-frame {
    position: relative;
    padding: 30px;
}

.portrait-frame::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 80%;
    height: 90%;
    background: var(--light-green);
    /* Subtle green backdrop */
    z-index: -1;
}

.portrait-frame img {
    width: 100%;
    display: block;
    filter: drop-shadow(20px 20px 60px rgba(0, 0, 0, 0.1));
}



/* Photographer Section: Professional Magazine Editorial Layout */
.artist-section-header {
    text-align: left;
    margin-bottom: 50px;
    position: relative;
}

/* Background Design Accent */
.artist-section-header::before {
    content: '01';
    position: absolute;
    left: -20px;
    top: -20px;
    font-size: 8rem;
    font-weight: 900;
    color: rgba(0, 0, 0, 0.03);
    z-index: -1;
    font-family: var(--font-serif);
}

.editorial-tag {
    font-size: 1rem;
    letter-spacing: 0.4em;
    color: var(--accent-gold);
    font-weight: 800;
    display: block;
    margin-bottom: 25px;
    padding-left: 45px;
    position: relative;
}

/* Horizontal line for tag */
.editorial-tag::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 35px;
    height: 1px;
    background: var(--accent-gold);
}

.editorial-title {
    font-size: 2.1rem;
    font-family: var(--font-serif);
    color: var(--dark-charcoal);
    line-height: 1.3;
    margin-bottom: 25px;
    letter-spacing: -0.02em;
}

.editorial-divider {
    width: 40px;
    height: 4px;
    background: var(--accent-gold);
    margin: 0;
}

/* Symmetric Editorial Grid (Author vs Story Balance) */
.magazine-editorial-grid {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 70px;
    align-items: flex-start;
}

/* Narrative Section: Refined Editorial Storytelling */
.narrative-wrapper {
    position: relative;
    /* Space for the vertical accent */
}



/* Narrative Diversity: Dynamic Storytelling Styles */
.narrative-lead {
    font-size: 1.3rem;
    color: var(--dark-charcoal);
    font-family: var(--font-serif);
    margin-bottom: 25px;
    line-height: 1.6;
}

.narrative-lead strong {
    color: var(--accent-gold);
}

.narrative-desc {
    font-size: 1.1rem;
    line-height: 2.1;
    color: #444;
    margin-bottom: 45px;
    text-align: justify;
    font-weight: 300;
}

.highlight-year {
    font-weight: 700;
    color: var(--dark-charcoal);
    border-bottom: 2px solid var(--accent-gold);
}

.narrative-desc strong {
    font-weight: 600;
    color: var(--dark-charcoal);
}

/* Philosophical Quote Area */
.narrative-philosophy {
    border-left: 3px solid #f0f0f0;
    padding-left: 30px;
    margin: 30px 0;
}

.experience-text {
    font-size: 1rem;
    color: #888;
    line-height: 1.8;
    font-weight: 300;
    margin-bottom: 20px;
    letter-spacing: 0.05em;
}

.quote-text {
    font-size: 1.4rem;
    font-family: var(--font-serif);
    color: var(--accent-gold);
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 15px;
}

.opportunity-text {
    font-size: 1.05rem;
    color: #666;
    line-height: 1.8;
    font-weight: 300;
}

/* Author Feature Card (Portrait & Bio Integrated) */
.author-card-integrated {
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    height: 100%;
    margin-bottom: 50px;
}


.portrait-container {
    width: 100%;
    margin: 0;
    line-height: 0;
}

.img-portrait-s {
    width: 100%;
    display: block;
    box-shadow: none;
    /* Shadow is now on the card */
}

.author-profile-box {
    padding: 35px 30px;
    background: #fff;
}

.portrait-caption {
    font-size: 0.75rem;
    color: #999;
    font-weight: 300;
    text-align: left;
    margin: 12px 0 -10px 30px;
    /* Push in to align with box text, negative bottom margin to preserve spacing to author box */
    line-height: 1.5;
}

.profile-header {
    margin-bottom: 25px;
}

.profile-tag {
    font-size: 0.75rem;
    font-weight: 800;
    color: var(--accent-gold);
    letter-spacing: 0.3em;
    display: block;
    margin-bottom: 2px;
}

.profile-name-jp {
    font-size: 1.6rem;
    font-family: var(--font-serif);
    color: var(--dark-charcoal);
    margin: 0;
    letter-spacing: 0.05em;
}

.profile-name-en {
    display: block;
    font-size: 0.9rem;
    color: #888;
    letter-spacing: 0.05em;
    font-weight: 300;
}

.profile-text-jp {
    font-size: 0.95rem;
    line-height: 1.9;
    color: #555;
    text-align: justify;
    font-weight: 300;
    margin: 0;
}

/* Birthday Exclusive Feature Card */
.featured-birthday-card {
    background: #fffdf7;
    /* Soft champagne background */
    border: 1px solid rgba(212, 175, 55, 0.2);
    padding: 0;
    margin-top: 61px;
    box-shadow: 0 15px 45px rgba(212, 175, 55, 0.05);
    /* Soft gold shadow */
    position: relative;
    overflow: hidden;
    border-radius: 4px;
}

/* Celebrating Badge (Gift Icon & Text) */
.birthday-badge {
    position: absolute;
    top: 0;
    right: 25px;
    background: var(--accent-gold);
    color: #fff;
    padding: 12px 10px 18px;
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 0.15em;
    writing-mode: vertical-lr;
    /* Vertically elegant */
    clip-path: polygon(0 0, 100% 0, 100% 100%, 50% 85%, 0 100%);
    text-align: center;
    z-index: 2;
}

.birthday-badge i {
    margin-bottom: 8px;
    font-size: 0.9rem;
}

/* Card Column Layout */
.birthday-inner-layout {
    display: flex;
    align-items: center;
}

/* Calendar Style Date Column */
.birthday-date-column {
    background: #fff;
    padding: 35px 30px;
    border-right: 1px solid rgba(0, 0, 0, 0.05);
    text-align: center;
    min-width: 140px;
}

.birthday-date-column .month {
    display: block;
    font-size: 0.8rem;
    font-weight: 800;
    color: var(--accent-gold);
    letter-spacing: 0.2em;
    margin-bottom: 5px;
}

.birthday-date-column .day {
    display: block;
    font-size: 2.8rem;
    font-family: var(--font-serif);
    color: var(--dark-charcoal);
    line-height: 1;
}

/* Event Detail Column */
.birthday-content-column {
    padding: 35px 40px;
    position: relative;
}

.birthday-title-jp {
    font-size: 1.4rem;
    font-family: var(--font-serif);
    color: var(--dark-charcoal);
    margin-bottom: 18px;
    line-height: 1.4;
    letter-spacing: 0.05em;
}

.birthday-title-jp .title-main {
    font-size: 1.15rem;
    color: var(--accent-gold);
    border-bottom: 2px solid var(--accent-gold);
    display: inline-block;
    padding-bottom: 2px;
}

.birthday-text-jp {
    font-size: 0.95rem;
    line-height: 1.8;
    color: #666;
    margin: 0;
}

/* Subtle Celebration Sparkle Decor (Pseudo-elements) */
.featured-birthday-card::after {
    content: '✦';
    position: absolute;
    bottom: 10px;
    right: 20px;
    color: rgba(212, 175, 55, 0.15);
    font-size: 3rem;
    pointer-events: none;
}

@media (max-width: 1024px) {
    .magazine-editorial-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }
}






.signature {
    font-family: 'Outfit', sans-serif;
    /* Fallback for signature-like feel */
    font-style: italic;
    font-size: 2rem;
    color: var(--accent-gold);
    opacity: 0.6;
}

@media (max-width: 1024px) {
    .profile-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .profile-watercolor {
        font-size: 8rem;
    }
}

/* =============================================
   ITINERARY SECTION — Clean Rebuild
   ============================================= */
.itinerary-path {
    position: relative;
    padding: 120px 0;
    background-image: url('img/tour_banner.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    overflow: hidden;
}

.itinerary-path::before {
    content: '';

    position: absolute;
    inset: 0;
    top: -2px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(3px);
    z-index: 0;
}

.itinerary-path .container {
    position: relative;
    z-index: 1;
}

/* Wide centered canvas — no sidebar tricks */
.timeline-canvas {
    background: #fff;
    max-width: 1000px;
    margin: 0 auto;
    padding-bottom: 40px;
    padding-right: 20px;
    padding-left: 20px;
}

.timeline-canvas::after {
    display: none;
}

/* Remove old decoration */

/* ---- Each Day Block ---- */
.itinerary-row {
    display: grid;
    grid-template-columns: 160px 1fr;
    gap: 0;
    margin-bottom: 60px;
    position: relative;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
    padding-top: 40px;
}

.itinerary-row::before {
    display: none;
}

.itinerary-row:last-child {
    margin-bottom: 0;
}

/* ---- Left: Day Marker ---- */
.itinerary-col.day-sticky {
    position: sticky;
    top: 120px;
    align-self: start;
    padding-right: 30px;
    padding-top: 3px;
    border-right: 1px solid rgba(0, 156, 97, 0.15);
    text-align: right;
}

.day-num {
    font-family: var(--font-serif);
    font-size: 3.2rem;
    font-weight: 700;
    line-height: 1;
    color: var(--accent-gold);
    display: flex;
    justify-content: flex-end;
    align-items: baseline;
    margin-bottom: 6px;
    letter-spacing: -0.02em;
}

.day-num .d-text {
    font-family: var(--font-main);
    font-size: 1.1rem;
    letter-spacing: 0.15em;
    font-weight: 700;
    margin-right: 4px;
    opacity: 0.8;
}

.day-label {
    display: block;
    font-family: var(--font-main);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    color: var(--text-muted);
    line-height: 1.5;
}

/* ---- Right: Card Content ---- */
.itinerary-col.itinerary-card {
    padding-left: 50px;
    max-width: none;
    /* Remove old constraint */
    width: 100%;
}

.itinerary-card h3 {
    font-family: var(--font-serif);
    font-size: 1.6rem;
    font-weight: 700;
    line-height: 1.3;
    color: var(--dark-charcoal);
    margin-bottom: 28px;
    position: static;
    /* Remove old ::before hacks */
}

.itinerary-card h3::before {
    display: none;
}

/* ---- Events Grid ---- */
.detail-item {
    display: grid;
    grid-template-columns: 60px 1fr;
    gap: 0 24px;
    margin-bottom: 16px;
    align-items: baseline;
    position: static;
    /* Remove old ::before/::after */
}

.detail-item::before,
.detail-item::after {
    display: none;
}

.detail-item .time {
    font-family: var(--font-main);
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--accent-gold);
    letter-spacing: 0.04em;
    text-align: right;
    padding-top: 0;
    white-space: nowrap;
}

.detail-item p {
    font-size: 0.97rem;
    line-height: 1.8;
    color: #1e1e1e;
    /* Slightly darker for better contrast against white+image bg */
    margin: 0;
}

.detail-item p strong {
    color: var(--dark-charcoal);
    font-weight: 700;
}

.inline-plane {
    display: inline-block;
    vertical-align: middle;
    margin: 0 3px;
    color: var(--accent-gold);
    opacity: 0.9;
}

/* ---- Pink Highlights (starred events) ---- */
.highlight-pink {
    background: rgba(255, 182, 193, 0.12);
    border-left: 3px solid #ffb6c1;
    padding: 16px 18px;
    margin-left: -84px;
    /* Pull back to align with left grid edge */
    padding-left: 84px;
    margin-bottom: 16px;
}

.highlight-pink p strong {
    color: #b85068;
}

.highlight-pink .time {
    color: #b85068;
}

/* Special birthday event box — Gold Celebration style (contrasts with pink parent) */
.special-event-new {
    border-top: 1px solid rgba(var(--accent-gold-rgb, 180, 150, 80), 0.3);
    border-bottom: 1px solid rgba(var(--accent-gold-rgb, 180, 150, 80), 0.3);
    border-left: 3px solid var(--accent-gold);
    border-right: none;
    padding: 20px 24px;
    background: #fff;
    /* Warm ivory, distinct from pink */
    margin-top: 12px;
    margin-right: -20px;
    margin-bottom: 4px;
    position: relative;
}

/* "BIRTHDAY" label tag */
.special-event-new::before {
    content: 'BIRTHDAY EVENT';
    position: absolute;
    top: -1px;
    right: 0;
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    color: var(--accent-gold);
    padding: 3px 8px;
    border-bottom: 1px solid rgba(180, 150, 80, 0.25);
    border-left: 1px solid rgba(180, 150, 80, 0.25);
}

.special-event-new strong {
    display: block;
    font-family: var(--font-serif);
    font-size: 1rem;
    font-weight: 700;
    color: #8a6800;
    /* Warm gold text */
    margin-bottom: 10px;
}

.special-event-new p {
    font-size: 0.88rem;
    line-height: 1.75;
    color: #4a3f28;
    margin: 0;
}

/* ---- Meal/Stay Footer ---- */
.meal-status {
    margin-top: 28px;
    padding: 16px 20px;
    border-top: 1px solid rgba(0, 156, 97, 0.12);
    background: rgba(0, 156, 97, 0.03);
    font-size: 0.95rem;
    color: #1a1a1a;
    letter-spacing: 0.05em;
    font-weight: 600;
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    align-items: center;
}

/* SVG pin icon before accommodation info */
.meal-status span::before {
    content: '';
    display: inline-block;
    width: 14px;
    height: 14px;
    margin-right: 5px;
    vertical-align: middle;
    background-color: var(--primary-green);
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 2C8.13 2 5 5.13 5 9c0 5.25 7 13 7 13s7-7.75 7-13c0-3.87-3.13-7-7-7zm0 9.5c-1.38 0-2.5-1.12-2.5-2.5s1.12-2.5 2.5-2.5 2.5 1.12 2.5 2.5-1.12 2.5-2.5 2.5z'/%3E%3C/svg%3E");
    mask-repeat: no-repeat;
    mask-size: contain;
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 2C8.13 2 5 5.13 5 9c0 5.25 7 13 7 13s7-7.75 7-13c0-3.87-3.13-7-7-7zm0 9.5c-1.38 0-2.5-1.12-2.5-2.5s1.12-2.5 2.5-2.5 2.5 1.12 2.5 2.5-1.12 2.5-2.5 2.5z'/%3E%3C/svg%3E");
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-size: contain;
}

/* Responsive: stack on small screens */
@media (max-width: 768px) {
    .d-none {
        display: none;
    }

    .itinerary-row {
        grid-template-columns: 1fr;
    }

    .itinerary-col.day-sticky {
        position: static;
        border-right: none;
        border-bottom: 1px solid rgba(0, 156, 97, 0.15);
        text-align: left;
        padding-bottom: 16px;
        margin-bottom: 16px;
    }

    .itinerary-col.itinerary-card {
        padding-left: 0;
    }

    .highlight-pink {
        margin-left: 0;
        padding-left: 0;
    }

    /* --- Timeline Canvas Mobile --- */
    .timeline-canvas {
        padding: 0 16px 30px;
    }

    .itinerary-path {
        padding: 60px 0;
        background-attachment: scroll;
        /* Fix parallax glitch on iOS */
    }
}

@media (max-width: 1024px) {
    .bamboo-spine {
        left: 20px;
        transform: none;
        width: 4px;
    }

    .itinerary-row,
    .itinerary-row:nth-child(even) {
        flex-direction: column;
        padding-left: 0px;
        gap: 30px;
    }

    .itinerary-col {
        width: 100%;
    }

    .itinerary-row::before {
        left: 20px;
    }

    .day-num {
        font-size: 4rem;
    }
}

@media (max-width: 768px) {
    .bamboo-timeline {
        padding-left: 40px;
    }

    .time-aside {
        position: static;
        width: 100%;
        text-align: left;
        margin-bottom: 20px;
    }

    .timeline-item {
        flex-direction: column;
        gap: 0;
    }

    .timeline-item::after {
        left: -45px;
    }
}

/* ==========================================
   Footer CTA — Premium Split Layout
   ========================================== */
.footer-cta {
    background: var(--deep-forest);
    color: white;
    padding: 70px 0;
    position: relative;
}

/* Subtle top accent line */
.footer-cta::after {
    content: '';
    position: absolute;
    top: 0;
    left: 5%;
    right: 5%;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(0, 156, 97, 0.4), transparent);
}

/* Two-column grid */
.cta-inner-grid {
    display: grid;
    grid-template-columns: 1fr 1px 360px;
    gap: 60px;
    align-items: center;
}

.footer-cta::before {
    display: none;
}

/* Left: Editorial Column */
.cta-left {
    padding-right: 10px;
}



.cta-label {
    display: inline-flex;
    align-items: center;
    font-size: 0.75rem;
    letter-spacing: 0.4em;
    color: var(--accent-gold);
    margin-bottom: 22px;
    font-weight: 700;
}

.cta-label::after {
    content: '';
    width: 30px;
    height: 1px;
    background: var(--accent-gold);
    margin-left: 15px;
    opacity: 0.5;
}

.cta-title {
    font-family: var(--font-serif);
    font-size: 2.25rem;
    line-height: 1.3;
    font-weight: 500;
    margin-bottom: 20px;
    letter-spacing: -0.01em;
}

.cta-title em {
    font-style: italic;
    color: var(--accent-gold);
    opacity: 1;
    font-weight: 400;
    margin-left: 5px;
}

.cta-description {
    font-size: 0.95rem;
    line-height: 2;
    color: rgba(255, 255, 255, 0.65);
    margin: 0;
    max-width: 90%;
}

/* Center: Hairline Divider */
.cta-divider {
    width: 1px;
    height: 160px;
    background: linear-gradient(to bottom, transparent, rgba(255, 255, 255, 0.18), transparent);
    justify-self: center;
}

/* Right: Action Zone */
.cta-right {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
}

.cta-price-hint {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.price-label {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.5);
    letter-spacing: 0.1em;
    margin-bottom: 2px;
}

.price-value {
    font-size: 2.8rem;
    font-weight: 700;
    font-family: var(--font-serif);
    color: white;
    line-height: 1;
    letter-spacing: -0.02em;
}

.price-note {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.9);
    /* 纯白色高可见度 */
    font-weight: 500;
    margin-top: 8px;
    letter-spacing: 0.02em;
}

/* 移除突兀的伪元素 */
.price-note::before {
    display: none;
}

.cta-button-main {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: var(--accent-gold);
    color: white;
    padding: 16px 30px;
    text-decoration: none;
    font-size: 0.88rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.cta-button-main:hover {
    background: white;
    color: var(--dark-charcoal);
    transform: translateX(6px);
}

.btn-arrow {
    flex-shrink: 0;
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.cta-button-main:hover .btn-arrow {
    transform: translateX(4px);
}

.cta-footnote-highlight {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.75);
    /* 提升亮度，让日期更清晰 */
    letter-spacing: 0.15em;
    margin-top: 5px;
    font-weight: 500;
}

@media (max-width: 900px) {
    .cta-inner-grid {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .cta-divider {
        display: none;
    }
}

/* Responsive */
@media (max-width: 1024px) {
    .photographer-wrap {
        flex-direction: column;
    }

    .photo-sideways,
    .bio-content {
        width: 100%;
    }

    .photo-sideways {
        position: static;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .hero {
        padding: 40px 20px 120px 20px;
        /* Increased bottom padding to protect the scroll hint */
        height: 100vh;
        display: flex;
        flex-direction: column;
        gap: 30px;
        /* Force image to top and text towards bottom with space between */
        align-items: center;
    }

    .hero-main-img-container {
        width: 100%;
        height: 48vh;
        /* Reduce slightly to guarantee fit */
        order: 1;
        margin: 0;
    }

    .hero-title-group {
        position: relative;
        left: 0;
        bottom: 0;
        width: 100%;
        text-align: center;
        order: 2;
        padding: 0;
        margin: 0;
    }

    .hero-title-group-split {
        display: none;
        /* Hide the clipping layer on mobile to avoid double text */
    }

    .hero-main-img {
        width: 100%;
        height: 100%;
    }

    .hero-title-group h1 {
        font-size: 2rem;
        word-break: break-all;
    }

    .hero-title-group p {
        font-size: 1.1rem;
        margin-top: 15px;
        width: 100%;
        padding: 10px;
    }

    .scroll-hint {
        bottom: 15px;
        /* Pull it closer to the bottom edge */
    }

    .scroll-line {
        height: 30px;
        /* Shorten the line on mobile */
    }


    .hero-title-group .sub {
        font-size: 0.8rem;
        margin-bottom: 10px;
    }


    .section-title {
        font-size: 2rem;
    }
}

/* Floating Booking CTA */
.floating-cta {
    position: fixed;
    bottom: 40px;
    right: 40px;
    z-index: 2000;
    background: var(--accent-gold);
    color: white;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 24px;
    border-radius: 100px;
    box-shadow: 0 10px 30px rgba(0, 156, 97, 0.3);
    opacity: 0;
    transform: translateY(20px);
    pointer-events: none;
    transition: transform 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
}

.f-text {
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.05em;
}

.floating-cta:hover {
    background: #008150;
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 156, 97, 0.4);
}

.floating-cta:active {
    transform: scale(0.95);
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    .floating-cta {
        bottom: 20px;
        right: 20px;
        padding: 10px 20px;
    }
}

/* Mobile Adjustments for Floating CTA */
@media (max-width: 768px) {
    .floating-cta {
        bottom: 20px;
        right: 20px;
        padding: 10px 20px;
    }
}

/* =============================================
   MOBILE RESPONSIVE — Global Overrides
   ============================================= */
@media (max-width: 768px) {

    /* --- Tour Summary Ribbon --- */
    .ribbon-inner {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 20px 16px;
        padding: 0 4px;
    }

    .ribbon-cta {
        grid-column: 1 / -1;
        /* Full width */
        text-align: center;
    }

    .ribbon-cta .r-btn {
        display: block;
        padding: 14px;
        font-size: 0.95rem;
    }

    .ribbon-item .r-value {
        font-size: 0.95rem;
    }

    /* --- Gallery / Moodboard --- */
    .moodboard {
        display: flex;
        flex-direction: column;
        gap: 12px;
        height: auto;
    }

    .mood-item {
        width: 100%;
        height: 220px;
    }

    .mood-item.item-1,
    .mood-item.item-4,
    .mood-item.item-7 {
        height: 260px;
        /* Slightly taller for hero items */
    }

    .mood-caption {
        opacity: 1;
        /* Always show captions on mobile (no hover) */
        transform: translateY(0);
    }

    /* --- Concept Monograph --- */
    .monograph-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .concept-header .section-title {
        font-size: 1.6rem;
        line-height: 1.4;
    }

    .concept-watermark {
        font-size: 5rem;
        left: 0;
        opacity: 0.03;
    }

    .monograph-copy {
        max-width: 100%;
        margin-top: 20px;
    }

    .lead-text {
        font-size: 1.1rem;
    }

    /* --- Footer CTA --- */
    .cta-inner-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .cta-divider {
        display: none;
    }

    .cta-right {
        align-items: stretch;
    }

    .cta-button-main {
        justify-content: center;
    }

    .cta-title {
        font-size: 1.6rem;
    }

    /* --- Profile Section --- */
    .profile-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    /* --- Hero Responsive --- */
    .hero-side-text {
        display: none;
        /* Too cramped on mobile */
    }

    .hero-main-img {
        width: 95%;
        right: 0;
        left: auto;
    }
}

/* Special Project 02: Exhibition Integrated Styles */
.exhibition-modern {
    background-color: var(--pure-white);
    padding: 120px 0;
    border-top: 1px solid rgba(0, 0, 0, 0.03);
}

.exhibition-modern .magazine-editorial-grid {
    display: grid;
    grid-template-columns: 0.4fr 1.6fr;
    gap: 80px;
    align-items: flex-start;
}

/* Project 2 Exclusive Narrative Styling */
.exhibition-modern .narrative-philosophy {
    border-left: 3px solid var(--accent-gold) !important;
    background: linear-gradient(to right, rgba(212, 175, 55, 0.04), transparent) !important;
    padding: 35px 40px !important;
    margin-top: 40px !important;
}

.exhibition-modern .opportunity-text {
    font-size: 1.15rem !important;
    line-height: 2.1 !important;
    color: #222 !important;
    font-family: var(--font-serif);
    font-style: italic;
}

/* Moodboard Scroller spacing */
.moodboard-scroller {
    border-top: 1px solid rgba(0, 0, 0, 0.04);
    padding-top: 80px;
}

/* Concept Monogram (Left Accent for Project 2) */
.concept-monogram {
    position: relative;
    padding-top: 60px;
}

.monogram-vertical-label {
    writing-mode: vertical-rl;
    font-family: var(--font-serif);
    font-size: 0.75rem;
    letter-spacing: 0.6em;
    color: var(--accent-gold);
    text-transform: uppercase;
    opacity: 0.8;
    position: relative;
    padding-right: 20px;
    border-right: 1px solid rgba(212, 175, 55, 0.3);
}

.monogram-number {
    position: absolute;
    top: -40px;
    left: -20px;
    font-size: 10rem;
    font-family: var(--font-serif);
    color: var(--accent-gold);
    opacity: 0.05;
    font-weight: 800;
    pointer-events: none;
}

.monogram-subtitle {
    margin-top: 40px;
    writing-mode: vertical-rl;
    font-family: var(--font-serif);
    font-size: 1.8rem;
    color: var(--dark-charcoal);
    letter-spacing: 0.1em;
    font-weight: 600;
}


/* Feature Highlight Box: Ya'an Bifengxia */
.feature-highlight-box {
    background: #fdfaf4;
    padding: 45px 50px;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    position: relative;
    margin-top: 40px;
}

.feature-highlight-box::before,
.feature-highlight-box::after {
    content: '';
    position: absolute;
    color: var(--accent-gold);
    font-size: 0.8rem;
    opacity: 0.5;
}

.feature-highlight-box::before {
    left: 20px;
    top: 15px;
}

.feature-highlight-box::after {
    right: 20px;
    bottom: 15px;
}

.highlight-text {
    font-size: 1.25rem;
    line-height: 2;
    color: var(--dark-charcoal);
    font-family: var(--font-serif);
    margin: 0;
    font-weight: 500;
}

.narrative-lead-centered {
    font-size: 1.35rem !important;
    line-height: 1.9 !important;
    color: #333 !important;
    margin: 0 auto 40px !important;
    font-weight: 400 !important;
}

.narrative-lead-column {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #444;
    margin-bottom: 35px;
    font-weight: 300;
}

.narrative-content-p strong {
    font-weight: 600;
}

.exhibition-modern .artist-section-header {
    text-align: left !important;
    margin-bottom: 50px !important;
}

.exhibition-modern .artist-section-header::before {
    display: none !important;
}

.exhibition-modern .editorial-divider {
    margin: 0 !important;
}

/* --- Responsive Adjustments for Mobile (Portrait) --- */
@media (max-width: 768px) {

    /* Magazine Editorial Grid stacking */
    .magazine-editorial-grid {
        grid-template-columns: 1fr !important;
        gap: 40px !important;
    }

    /* Birthday Card Mobile Layout */
    .birthday-inner-layout {
        flex-direction: column !important;
        align-items: stretch !important;
    }

    .birthday-date-column {
        border-right: none !important;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05) !important;
        padding: 30px 20px !important;
        min-width: unset !important;
    }

    .birthday-content-column {
        padding: 30px 25px !important;
        text-align: center !important;
    }

    .birthday-title-jp {
        font-size: 1.25rem !important;
    }

    .birthday-badge {
        right: 15px !important;
        padding: 8px 6px 14px !important;
    }

    /* Project 2 Monogram stacking */
    .concept-monogram {
        padding-top: 40px !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        text-align: center !important;
        margin-bottom: 40px !important;
    }

    .monogram-vertical-label {
        writing-mode: horizontal-tb !important;
        border-right: none !important;
        border-bottom: 1px solid rgba(212, 175, 55, 0.3) !important;
        padding-right: 0 !important;
        padding-bottom: 15px !important;
        margin-bottom: 15px !important;
    }

    .monogram-subtitle {
        writing-mode: horizontal-tb !important;
        margin-top: 15px !important;
        font-size: 1.5rem !important;
    }

    .monogram-number {
        font-size: 6rem !important;
        top: -10px !important;
        left: 50% !important;
        transform: translateX(-50%) !important;
    }

    .exhibition-modern .artist-section-header {
        text-align: center !important;
    }

    .exhibition-modern .editorial-divider {
        margin: 0 auto !important;
    }
}

/* --- Advanced Itinerary Styles --- */
.tour-meta-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    margin: 60px auto;
    max-width: 1000px;
    width: 95%;
    background: #fff;
    padding: 40px 0;
    border-top: 1px solid var(--accent-gold);
    border-bottom: 1px solid var(--accent-gold);
    border-radius: 4px;
    /* 增加微弱圆角感 */
}

.meta-card {
    background: transparent;
    padding: 0 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    border-right: 1px solid rgba(0, 0, 0, 0.05);
    /* 柔和的分隔线 */
    text-align: center;
    position: relative;
    /* 为内部绝对定位元素提供参考点 */
}

.meta-card:last-child {
    border-right: none;
}

.meta-card i {
    font-size: 1.5rem;
    /* 增大图标 */
    color: var(--accent-gold);
}

.m-label {
    display: block;
    font-size: 0.85rem;
    /* 增大字号 */
    color: #666;
    letter-spacing: 0.05em;
    font-weight: 500;
    text-transform: uppercase;
    margin-bottom: 4px;
}

.m-val {
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary-green);
}

.loc-tag {
    font-size: 0.75rem;
    color: var(--accent-gold);
    border: 1px solid var(--accent-gold);
    padding: 2px 8px;
    display: inline-block;
    margin-top: 10px;
}

.card-header-main {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    border-bottom: 1px solid #eee;
    padding-bottom: 15px;
    margin-bottom: 20px;
}

.transport {
    font-size: 0.8rem;
    background: var(--light-green);
    color: var(--primary-green);
    padding: 4px 12px;
    border-radius: 20px;
    font-weight: 700;
}

.highlight-base {
    background: #fffdf5;
    border-left-color: #f1c40f !important;
}

.meal-row {
    margin-top: 25px;
    padding-top: 15px;
    padding-left: 5px;
    border-top: 1px dashed #ddd;
    display: flex;
    gap: 20px;
    font-size: 0.9rem;
    color: #666;
}

.meal-row span::before {
    content: "●";
    margin-right: 5px;
    color: var(--accent-gold);
}

.hotel-info-tag {
    margin-top: 15px;
    font-size: 1rem;
    color: var(--primary-green);
    font-weight: 700;
    padding: 10px 15px;
    background: #f0f7f2;
    border-radius: 4px;
    display: flex;
    align-items: center;
    gap: 10px;
}

@media (max-width: 768px) {

    /* 0. 结构性调整：从左右布局改为上下堆叠，释放正文宽度 */
    .itinerary-row {
        grid-template-columns: 1fr;
        padding-top: 35px;
        margin-bottom: 45px;
    }

    .itinerary-col.day-sticky {
        position: static;
        text-align: left;
        border-right: none;
        border-bottom: 2px solid rgba(0, 156, 97, 0.08);
        padding: 0 0 12px 0;
        margin-bottom: 20px;
        width: 100%;
        display: flex;
        justify-content: flex-start;
        align-items: center;
        gap: 15px;
    }

    .day-num {
        font-size: 2.4rem;
        justify-content: flex-start;
        margin-bottom: 0;
    }

    .day-label {
        font-size: 0.9rem;
        padding-left: 15px;
        border-left: 1px solid #ddd;
        margin-top: 4px;
    }

    .loc-tag {
        margin-top: 0;
        margin-left: auto;
        /* 标签自动靠右 */
        font-size: 0.7rem;
    }

    .itinerary-col.itinerary-card {
        padding-left: 0;
    }

    /* 1. 解决标题与标签拥挤问题 */
    .card-header-main {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .card-header-main h3 {
        font-size: 1.25rem;
        line-height: 1.4;
        width: 100%;
    }

    .transport {
        font-size: 0.75rem;
        padding: 2px 10px;
    }

    /* 2. 优化正文宽度：减小午前/午后的边距 */
    .detail-item {
        gap: 12px;
        align-items: flex-start;
    }

    .detail-item .time {
        min-width: 40px;
        font-size: 0.85rem;
    }

    .detail-item p {
        font-size: 0.9rem;
        line-height: 1.7;
    }

    /* 3. 解决底部餐食重叠 */
    .meal-row {
        flex-wrap: wrap;
        gap: 10px 15px;
        font-size: 0.85rem;
    }

    .meal-row span {
        white-space: nowrap;
    }

    /* 4. 优化酒店标签 */
    .hotel-info-tag {
        font-size: 0.9rem;
        padding: 10px;
        flex-wrap: wrap;
    }
}

.hotel-info-tag::before {
    content: "\f236";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    font-size: 1.1rem;
    color: var(--accent-gold);
}

.birthday-highlight-box {
    background: #fff0f0;
    border-left: 4px solid #e74c3c !important;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 20px !important;
    margin-top: 20px;
}

.b-badge {
    font-size: 2rem;
    color: #e74c3c;
    /* 对齐首行文字 */
}

.itinerary-footer-notes {
    margin: 30px auto 0;
    max-width: 1000px;
    width: 100%;
    padding: 20px 30px;
    background: #f9f9f9;
    /* border-radius: 8px; */
    font-size: 0.82rem;
    color: #888;
    line-height: 2;
    position: relative;
}

.itinerary-footer-notes p {
    padding-left: 20px;
    position: relative;
}

.itinerary-footer-notes p::before {
    content: "※";
    position: absolute;
    left: 0;
    color: var(--accent-gold);
}

.itinerary-footer-notes:last-child {
    margin-bottom: 0;
}

@media (max-width: 900px) {
    .tour-meta-grid {
        grid-template-columns: repeat(2, 1fr);
        padding: 0;
        gap: 0;
        width: 100%;
        margin: 40px auto;
    }

    .meta-card {
        padding: 25px 15px;
        border-right: 1px solid rgba(0, 0, 0, 0.05);
    }

    /* 处理 2x2 网格的边框逻辑 */
    .meta-card:nth-child(2n) {
        border-right: none;
    }

    .meta-card:nth-child(1),
    .meta-card:nth-child(2) {
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    }
}

@media (max-width: 480px) {
    .meta-card {
        padding: 20px 10px;
    }

    .meta-card i {
        font-size: 1.25rem;
    }

    .m-label {
        font-size: 0.7rem;
        letter-spacing: 0.02em;
    }

    .m-val {
        font-size: 0.85rem;
    }
}