:root {
            --color-bg: #070709;
            --color-surface: #121217;
            --color-surface-hover: #1a1a24;
            --color-accent: #e02580;
            --color-accent-dim: rgba(224, 37, 128, 0.15);
            --color-text-main: #fcfcfd;
            --color-text-muted: #a1a1aa;
            --color-border: rgba(255, 255, 255, 0.08);
            --font-serif: 'Playfair Display', 'Songti SC', 'Noto Serif SC', serif;
            --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
            --radius-sm: 8px;
            --radius-md: 16px;
            --radius-lg: 20px;
            --shadow-base: 0 10px 30px rgba(0,0,0,0.5);
            --shadow-glow: 0 4px 20px var(--color-accent-dim);
            --transition: 0.25s ease;
        }

        body {
            background-color: var(--color-bg);
            color: var(--color-text-main);
            font-family: var(--font-sans);
            line-height: 1.6;
            margin: 0;
            padding: 0;
            -webkit-font-smoothing: antialiased;
            overflow-x: hidden;
        }

        *, *::before, *::after {
            box-sizing: border-box;
        }

        /* 强制文本规范 */
        .yarn, .crown, p, h1, h2, h3, span {
            word-break: break-word;
            overflow-wrap: break-word;
            white-space: normal;
        }
        
        .yarn-cn {
            word-break: keep-all;
        }

        /* 强制Flex规范 */
        .flex-wrap {
            display: flex;
            flex-wrap: wrap;
        }
        .flex-wrap > * {
            min-width: 0;
        }

        /* ================= 导航栏 (完全复用结构) ================= */
        .peak {
            background: rgba(7, 7, 9, 0.85);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            border-bottom: 1px solid var(--color-border);
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 1000;
        }

        .loom {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            max-width: 1240px;
            margin: 0 auto;
            padding: 16px 24px;
        }
        .loom > * { min-width: 0; }

        .crest {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
        }
        .crest > * { min-width: 0; }
        .crest img {
            height: 28px;
            display: block;
        }

        .silkway {
            display: flex;
            flex-wrap: wrap;
            gap: 32px;
            align-items: center;
        }
        .silkway > * { min-width: 0; }

        .thread {
            color: var(--color-text-muted);
            text-decoration: none;
            font-size: 14px;
            font-weight: 500;
            transition: color var(--transition);
        }

        .thread:hover, .thread.active {
            color: var(--color-text-main);
        }

        /* ================= 主体容器 ================= */
        .realm {
            padding-top: 80px; /* 补偿固钉导航 */
            display: flex;
            flex-wrap: wrap;
            flex-direction: column;
            width: 100%;
        }
        .realm > * { min-width: 0; }

        /* ================= Section 1: Hero (无垠灵感视界) ================= */
        .aura {
            padding: 120px 24px 80px;
            max-width: 1240px;
            margin: 0 auto;
            width: 100%;
            display: flex;
            flex-wrap: wrap;
            gap: 48px;
            align-items: stretch;
        }
        .aura > * { min-width: 0; }

        .aura-hide {
            flex: 1 1 400px;
            display: flex;
            flex-wrap: wrap;
            flex-direction: column;
            justify-content: center;
        }
        .aura-hide > * { min-width: 0; }

        .aura-crown {
            font-family: var(--font-serif);
            font-size: clamp(2.5rem, 5vw, 4rem);
            font-weight: 600;
            line-height: 1.15;
            color: var(--color-text-main);
            margin: 0 0 24px 0;
            letter-spacing: -0.02em;
        }

        .aura-yarn {
            font-size: clamp(1.125rem, 2vw, 1.25rem);
            color: var(--color-text-muted);
            margin: 0 0 40px 0;
            line-height: 1.7;
            max-width: 480px;
        }

        /* 创意种子: HERO:asymmetric_grid */
        .aura-flock {
            flex: 1 1 500px;
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            grid-auto-rows: minmax(180px, auto);
            gap: 20px;
        }

        .shard {
            background: var(--color-surface);
            border: 1px solid var(--color-border);
            border-radius: var(--radius-lg);
            padding: 32px;
            display: flex;
            flex-wrap: wrap;
            flex-direction: column;
            justify-content: flex-end;
            position: relative;
            overflow: hidden;
            transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
        }
        .shard > * { min-width: 0; z-index: 2; position: relative; }

        .shard::before {
            content: '';
            position: absolute;
            top: 0; left: 0; right: 0; bottom: 0;
            background: radial-gradient(circle at top right, rgba(224, 37, 128, 0.08), transparent 60%);
            z-index: 1;
        }

        .shard:hover {
            transform: translateY(-5px);
            border-color: rgba(224, 37, 128, 0.3);
            box-shadow: var(--shadow-glow);
        }

        .shard-primary {
            grid-column: span 2;
            grid-row: span 2;
            background: linear-gradient(145deg, #121217 0%, #1a1a24 100%);
            padding: 48px;
        }

        .shard-crown {
            font-size: 1.5rem;
            font-weight: 600;
            margin: 0 0 12px;
        }
        
        .shard-primary .shard-crown {
            font-size: 2rem;
            font-family: var(--font-serif);
        }

        .shard-yarn {
            font-size: 0.95rem;
            color: var(--color-text-muted);
            margin: 0;
        }

        .shard-glyph {
            position: absolute;
            top: 32px;
            right: 32px;
            width: 48px;
            height: 48px;
            color: var(--color-accent);
            opacity: 0.8;
            z-index: 2;
        }

        .shard-primary .shard-glyph {
            width: 80px;
            height: 80px;
            opacity: 0.2;
            top: auto;
            bottom: 32px;
            right: 32px;
        }

        /* ================= Section 2: Gallery (穿搭先锋与经典重塑) ================= */
        .canvas {
            padding: 100px 24px;
            max-width: 1240px;
            margin: 0 auto;
            width: 100%;
            display: flex;
            flex-wrap: wrap;
            flex-direction: column;
        }
        .canvas > * { min-width: 0; }

        .canvas-crown {
            font-size: clamp(2rem, 3vw, 2.5rem);
            font-weight: 600;
            margin: 0 0 16px;
            text-align: center;
        }

        .canvas-yarn {
            text-align: center;
            color: var(--color-text-muted);
            font-size: 1.125rem;
            max-width: 600px;
            margin: 0 auto 64px;
        }

        .canvas-flock {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 32px;
            width: 100%;
        }

        .swatch {
            background: var(--color-surface);
            border: 1px solid var(--color-border);
            border-radius: var(--radius-md);
            padding: 40px;
            display: flex;
            flex-wrap: wrap;
            flex-direction: column;
            gap: 24px;
            transition: all var(--transition);
            box-shadow: var(--shadow-base);
            position: relative;
            overflow: hidden;
        }
        .swatch > * { min-width: 0; position: relative; z-index: 2; }

        .swatch::after {
            content: '';
            position: absolute;
            top: 0; left: 0; width: 100%; height: 2px;
            background: linear-gradient(90deg, transparent, var(--color-accent), transparent);
            opacity: 0;
            transition: opacity var(--transition);
        }

        .swatch:hover {
            background: var(--color-surface-hover);
            transform: translateY(-8px);
        }
        .swatch:hover::after {
            opacity: 1;
        }

        .swatch-glyph-hide {
            width: 64px;
            height: 64px;
            border-radius: 16px;
            background: rgba(255,255,255,0.03);
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: center;
            border: 1px solid rgba(255,255,255,0.05);
        }
        .swatch-glyph-hide > * { min-width: 0; }

        .swatch-glyph {
            width: 32px;
            height: 32px;
            color: var(--color-text-main);
        }

        .swatch-crown {
            font-size: 1.35rem;
            font-weight: 600;
            margin: 0;
            color: #fff;
        }

        .swatch-yarn {
            font-size: 1rem;
            color: var(--color-text-muted);
            margin: 0;
            line-height: 1.7;
        }

        /* ================= Section 3: Showcase (创作者精选解析) ================= */
        .vista {
            padding: 100px 24px;
            width: 100%;
            background: linear-gradient(180deg, rgba(18, 18, 23, 0) 0%, rgba(18, 18, 23, 0.8) 50%, rgba(18, 18, 23, 0) 100%);
            border-top: 1px solid rgba(255,255,255,0.03);
            border-bottom: 1px solid rgba(255,255,255,0.03);
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
        }
        .vista > * { min-width: 0; }

        .vista-hide {
            max-width: 1240px;
            width: 100%;
            display: flex;
            flex-wrap: wrap;
            gap: 64px;
            align-items: center;
        }
        .vista-hide > * { min-width: 0; }

        .vista-info {
            flex: 1 1 400px;
            display: flex;
            flex-wrap: wrap;
            flex-direction: column;
        }
        .vista-info > * { min-width: 0; }

        .vista-crown {
            font-size: clamp(2rem, 3vw, 2.5rem);
            margin: 0 0 24px;
            font-weight: 600;
        }

        .vista-yarn {
            color: var(--color-text-muted);
            font-size: 1.125rem;
            margin: 0 0 32px;
            line-height: 1.7;
        }

        .vault {
            flex: 1 1 500px;
            background: #0a0a0c;
            border: 1px solid rgba(255,255,255,0.1);
            border-radius: var(--radius-md);
            padding: 32px;
            position: relative;
            box-shadow: 0 20px 40px rgba(0,0,0,0.6);
            display: flex;
            flex-wrap: wrap;
            flex-direction: column;
            gap: 16px;
        }
        .vault > * { min-width: 0; }

        .vault-sash {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 8px;
            margin-bottom: 8px;
            padding-bottom: 16px;
            border-bottom: 1px dashed rgba(255,255,255,0.1);
        }
        .vault-sash > * { min-width: 0; }
        
        .vault-knot {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background: rgba(255,255,255,0.2);
        }
        .vault-knot:nth-child(1) { background: #ff5f56; }
        .vault-knot:nth-child(2) { background: #ffbd2e; }
        .vault-knot:nth-child(3) { background: #27c93f; }

        .motif-yarn {
            font-family: 'Courier New', Courier, monospace;
            color: #d4d4d8;
            font-size: 0.95rem;
            line-height: 1.8;
            margin: 0;
        }

        .motif-highlight {
            color: var(--color-accent);
            font-weight: bold;
        }
        .motif-tag {
            color: #a78bfa;
        }

        /* ================= Section 4: CTA (唤醒您的设计意念) ================= */
        .atelier {
            padding: 120px 24px;
            width: 100%;
            display: flex;
            flex-wrap: wrap;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        .atelier > * { min-width: 0; z-index: 2; position: relative; }

        .atelier::before {
            content: '';
            position: absolute;
            width: 800px;
            height: 800px;
            background: radial-gradient(circle, var(--color-accent-dim) 0%, transparent 60%);
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            z-index: 1;
            pointer-events: none;
        }

        .atelier-crown {
            font-size: clamp(2rem, 4vw, 3rem);
            margin: 0 0 24px;
            font-family: var(--font-serif);
        }

        .atelier-yarn {
            font-size: 1.25rem;
            color: var(--color-text-muted);
            max-width: 640px;
            margin: 0 auto 48px;
            line-height: 1.6;
        }

        .spark {
            display: inline-flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: center;
            padding: 18px 42px;
            background-color: var(--color-accent);
            color: #fff;
            border-radius: 100px;
            font-weight: 500;
            text-decoration: none;
            box-shadow: 0 4px 15px rgba(224, 37, 128, 0.3);
            border: 1px solid rgba(255,255,255,0.1);
            transition: all var(--transition);
            font-size: 1.125rem;
        }
        .spark > * { min-width: 0; }

        .spark:hover {
            background-color: #f03590;
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(224, 37, 128, 0.5);
        }

        /* ================= Footer ================= */
        .hem {
            background: var(--color-bg);
            padding: 64px 24px 32px;
            border-top: 1px solid var(--color-border);
            width: 100%;
            display: flex;
            flex-wrap: wrap;
            flex-direction: column;
            align-items: center;
        }
        .hem > * { min-width: 0; }

        .legacy {
            max-width: 1240px;
            width: 100%;
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: center;
            gap: 24px;
        }
        .legacy > * { min-width: 0; }

        .imprint {
            color: var(--color-text-muted);
            font-size: 0.875rem;
            font-weight: 500;
        }

        .seam {
            display: flex;
            flex-wrap: wrap;
            gap: 32px;
        }
        .seam > * { min-width: 0; }

        .seam a {
            color: var(--color-text-muted);
            text-decoration: none;
            font-size: 0.875rem;
            transition: color var(--transition);
        }

        .seam a:hover {
            color: var(--color-text-main);
        }

        /* ================= 响应式 ================= */
        @media (max-width: 1024px) {
            .aura { padding-top: 100px; gap: 40px; }
            .vista-hide { gap: 40px; }
        }

        @media (max-width: 768px) {
            .peak { position: relative; }
            .realm { padding-top: 0; }
            .loom { flex-direction: column; gap: 16px; padding: 16px; }
            .silkway { gap: 16px; justify-content: center; }
            
            .aura { padding: 48px 24px; flex-direction: column; }
            .aura-flock { grid-template-columns: 1fr; grid-auto-rows: auto; }
            .shard-primary { grid-column: auto; grid-row: auto; padding: 32px; }
            
            .canvas { padding: 64px 24px; }
            .vista { padding: 64px 24px; }
            .vista-hide { flex-direction: column; }
            
            .atelier { padding: 80px 24px; }
            .legacy { flex-direction: column; text-align: center; }
            .seam { justify-content: center; }
        }

.rein-peak{
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 100;
            background: rgba(7, 7, 9, 0.8);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        }

.rein-peak .rein-loom{
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: center;
            height: 80px;
            max-width: 1360px;
            margin: 0 auto;
            padding: 0 24px;
            min-width: 0;
        }

.rein-peak .rein-crest{
            display: flex;
            align-items: center;
            min-width: 0;
        }

.rein-peak .rein-crest img{
            height: 32px;
            width: auto;
        }

.rein-peak .rein-silkway{
            display: flex;
            flex-wrap: wrap;
            gap: 32px;
            align-items: center;
            min-width: 0;
        }

.rein-peak .rein-thread{
            font-size: 0.9rem;
            font-weight: 500;
            color: #a1a1aa;
            position: relative;
            padding: 8px 0;
        }

.rein-peak .rein-thread:hover, .rein-peak .rein-thread.rein-active{
            color: #fcfcfd;
        }

.rein-peak .rein-thread::after{
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background-color: #e02580;
            transition: all 0.25s ease;
        }

.rein-peak .rein-thread:hover::after, .rein-peak .rein-thread.rein-active::after{
            width: 100%;
        }

@media (max-width: 768px){.rein-peak .rein-silkway{
                display: none; 
            }}

.rein-peak {
    background: rgb(7, 7, 9);
    background-image: none;
}

.legacy-hem-zone {
    font-family: var(--font-sans);
    line-height: 1.6;
    color: var(--color-text-main);
}
.legacy-hem-zone,
.legacy-hem-zone *,
.legacy-hem-zone *::before,
.legacy-hem-zone *::after {
    box-sizing: border-box;
}

.legacy-hem-zone nav,
.legacy-hem-zone div,
.legacy-hem-zone section,
.legacy-hem-zone article,
.legacy-hem-zone aside,
.legacy-hem-zone p,
.legacy-hem-zone h1,
.legacy-hem-zone h2,
.legacy-hem-zone h3,
.legacy-hem-zone h4,
.legacy-hem-zone h5,
.legacy-hem-zone h6,
.legacy-hem-zone a {
    margin: 0;
    padding: 0;
    font: inherit;
    color: inherit;
    letter-spacing: inherit;
    line-height: inherit;
}

.legacy-hem-zone p,
.legacy-hem-zone h1,
.legacy-hem-zone h2,
.legacy-hem-zone h3,
.legacy-hem-zone h4,
.legacy-hem-zone h5,
.legacy-hem-zone h6 {
    text-decoration: none;
}

.legacy-hem-zone img {
    display: block;
    max-width: 100%;
    height: auto;
    border: 0;
}

.legacy-hem-zone {
    box-shadow: none;
    filter: none;
    text-shadow: none;
    background-image: none;
    border-top: none;
    border-left: none;
    border-right: none;
    outline: none;
}

.legacy-hem-zone a,
.legacy-hem-zone a:hover,
.legacy-hem-zone a:focus,
.legacy-hem-zone a:active {
    background: transparent;
    box-shadow: none;
    outline: none;
    text-decoration: none;
}

.legacy-hem-zone .legacy-yarn{
            word-break: break-word;
            overflow-wrap: break-word;
            word-break: keep-all;
            color: #a1a1aa;
            line-height: 1.8;
        }

.legacy-hem-zone .legacy-realm{
            width: 100%;
            max-width: 1360px;
            margin: 0 auto;
            padding: 0 24px;
        }

.legacy-hem-zone .legacy-thread{
            font-size: 0.9rem;
            font-weight: 500;
            color: #a1a1aa;
            position: relative;
            padding: 8px 0;
        }

.legacy-hem-zone .legacy-thread:hover{
            color: #fcfcfd;
        }

.legacy-hem-zone .legacy-thread::after{
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background-color: #e02580;
            transition: all 0.25s ease;
        }

.legacy-hem-zone .legacy-thread:hover::after{
            width: 100%;
        }

.legacy-hem-zone{
            padding: 60px 0 40px;
            border-top: 1px solid rgba(255, 255, 255, 0.08);
            background: #050507;
        }

.legacy-hem-zone .legacy-hem-flock{
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: center;
            gap: 32px;
        }

.legacy-hem-zone .legacy-legacy{
            font-family: 'Playfair Display', 'Songti SC', 'Noto Serif SC', serif;
            font-size: 1.8rem;
            font-weight: 700;
            color: #fcfcfd;
            letter-spacing: 1px;
        }

.legacy-hem-zone .legacy-seam{
            display: flex;
            flex-wrap: wrap;
            gap: 24px;
            font-size: 0.9rem;
            color: #a1a1aa;
        }

.legacy-hem-zone .legacy-imprint{
            width: 100%;
            text-align: center;
            margin-top: 40px;
            padding-top: 24px;
            border-top: 1px solid rgba(255,255,255,0.05);
            font-size: 0.85rem;
            color: #71717a;
        }

@media (max-width: 768px){.legacy-hem-zone .legacy-hem-flock{
                flex-direction: column;
                text-align: center;
            }

.legacy-hem-zone .legacy-seam{
                justify-content: center;
            }}