/* ========== 基础重置 ========== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Microsoft YaHei", "微软雅黑", -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif;
    background:
        radial-gradient(circle at 12% 8%, rgba(255, 255, 255, 0.95) 0, rgba(255, 255, 255, 0) 28%),
        radial-gradient(circle at 82% 0%, rgba(210, 228, 238, 0.7) 0, rgba(210, 228, 238, 0) 30%),
        linear-gradient(135deg, #f8fafb 0%, #eef3f6 46%, #f6f8f9 100%);
    color: #2c3e50;
    line-height: 1.7;
    font-weight: 300;
    min-height: 100vh;
}

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

body.is-loading {
    overflow: hidden;
}

/* ========== Loading Screen ========== */
.loader-screen {
    position: fixed;
    inset: 0;
    z-index: 2000;
    display: grid;
    place-items: center;
    background:
        radial-gradient(circle at 30% 24%, rgba(255, 255, 255, 0.95), transparent 30%),
        radial-gradient(circle at 72% 70%, rgba(138, 175, 196, 0.22), transparent 34%),
        linear-gradient(135deg, rgba(248, 250, 251, 0.96), rgba(238, 243, 246, 0.92));
    opacity: 1;
    visibility: visible;
    transition: opacity 0.7s ease, visibility 0.7s ease;
}

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

.loader-screen::before {
    content: '';
    position: absolute;
    width: min(56vw, 520px);
    aspect-ratio: 1;
    border-radius: 50%;
    background:
        radial-gradient(circle, rgba(255, 255, 255, 0.88), rgba(138, 175, 196, 0.12) 52%, transparent 70%);
    filter: blur(10px);
    transform: translate(-28%, -22%);
}

.loader-glass {
    position: relative;
    width: min(78vw, 320px);
    min-height: 260px;
    border-radius: 28px;
    display: grid;
    justify-items: center;
    align-content: center;
    padding: 42px 36px;
    border: 1px solid rgba(255, 255, 255, 0.66);
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.68), rgba(255, 255, 255, 0.28)),
        rgba(245, 247, 249, 0.42);
    backdrop-filter: blur(28px) saturate(180%);
    -webkit-backdrop-filter: blur(28px) saturate(180%);
    box-shadow:
        0 30px 80px rgba(44, 62, 80, 0.16),
        inset 0 1px 0 rgba(255, 255, 255, 0.9),
        inset 0 -1px 0 rgba(93, 132, 153, 0.08);
    overflow: hidden;
}

.loader-glass::before {
    content: '';
    position: absolute;
    inset: 1px;
    border-radius: inherit;
    background:
        linear-gradient(120deg, rgba(255, 255, 255, 0.78), transparent 38%),
        radial-gradient(circle at 72% 0%, rgba(255, 255, 255, 0.7), transparent 30%);
    pointer-events: none;
}

.loader-mark {
    position: relative;
    width: 68px;
    height: 68px;
    display: grid;
    place-items: center;
    border-radius: 22px;
    color: #fff;
    background: linear-gradient(135deg, #8aafc4, #5d8499);
    font-size: 34px;
    font-weight: 300;
    letter-spacing: 0;
    box-shadow:
        0 18px 34px rgba(93, 132, 153, 0.24),
        inset 0 1px 0 rgba(255, 255, 255, 0.45);
    animation: loaderFloat 2.4s ease-in-out infinite;
}

.loader-name {
    position: relative;
    margin-top: 26px;
    font-size: 13px;
    letter-spacing: 5px;
    color: #2c3e50;
}

.loader-line {
    position: relative;
    width: 142px;
    height: 2px;
    margin-top: 26px;
    border-radius: 999px;
    background: rgba(138, 175, 196, 0.22);
    overflow: hidden;
}

.loader-line span {
    display: block;
    width: 44%;
    height: 100%;
    border-radius: inherit;
    background: linear-gradient(90deg, transparent, #5d8499, transparent);
    animation: loaderLine 1.35s ease-in-out infinite;
}

.loader-caption {
    position: relative;
    margin-top: 18px;
    font-size: 12px;
    color: #8a98a6;
    letter-spacing: 1px;
}

@keyframes loaderFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
}

@keyframes loaderLine {
    0% { transform: translateX(-110%); }
    100% { transform: translateX(260%); }
}

@media (prefers-reduced-motion: reduce) {
    .loader-mark,
    .loader-line span {
        animation: none;
    }

    .loader-screen {
        transition-duration: 0.2s;
    }
}

/* ========== 配色变量 ==========
   主色 雾蓝: #8aafc4
   强调色 深雾蓝: #5d8499
   背景 雾灰白: #f5f7f9
   文字 深灰蓝: #2c3e50
   副文字 灰: #7a8a99
*/

body::before {
    content: '';
    position: fixed;
    inset: 0;
    pointer-events: none;
    background:
        linear-gradient(120deg, rgba(255, 255, 255, 0.28), rgba(255, 255, 255, 0) 36%),
        radial-gradient(circle at 50% 20%, rgba(138, 175, 196, 0.1), transparent 32%);
    z-index: -1;
}

.pond-canvas {
    position: fixed;
    inset: 0;
    width: 100vw;
    height: 100vh;
    z-index: 0;
    pointer-events: none;
    opacity: 0.78;
    mix-blend-mode: multiply;
}

nav,
section,
footer {
    position: relative;
    z-index: 1;
}

#hero {
    isolation: isolate;
}

/* ========== 导航栏：Liquid Glass ========== */
.site-nav {
    position: fixed;
    top: 18px;
    left: 0;
    right: 0;
    z-index: 1000;
    pointer-events: none;
}

.nav-inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 10px 12px 10px 22px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    pointer-events: auto;
    border: 1px solid rgba(255, 255, 255, 0.62);
    border-radius: 999px;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.7), rgba(255, 255, 255, 0.36)),
        rgba(245, 247, 249, 0.42);
    backdrop-filter: blur(24px) saturate(180%);
    -webkit-backdrop-filter: blur(24px) saturate(180%);
    box-shadow:
        0 22px 60px rgba(44, 62, 80, 0.12),
        inset 0 1px 0 rgba(255, 255, 255, 0.86),
        inset 0 -1px 0 rgba(93, 132, 153, 0.08);
    overflow: hidden;
    transition:
        max-width 0.45s cubic-bezier(0.2, 0.8, 0.2, 1),
        transform 0.35s ease,
        background 0.35s ease,
        box-shadow 0.35s ease;
}

.nav-inner::before {
    content: '';
    position: absolute;
    inset: 1px;
    border-radius: inherit;
    background:
        radial-gradient(circle at 18% 0%, rgba(255, 255, 255, 0.82), transparent 28%),
        linear-gradient(115deg, rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0.08) 44%, rgba(138, 175, 196, 0.12));
    pointer-events: none;
    mix-blend-mode: screen;
}

.nav-inner::after {
    content: '';
    position: absolute;
    top: 7px;
    left: 24px;
    right: 24px;
    height: 1px;
    border-radius: 999px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.95), transparent);
    pointer-events: none;
}

.site-nav:hover .nav-inner,
.site-nav.nav-open .nav-inner {
    transform: translateY(2px);
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.78), rgba(255, 255, 255, 0.42)),
        rgba(245, 247, 249, 0.52);
    box-shadow:
        0 26px 70px rgba(44, 62, 80, 0.16),
        inset 0 1px 0 rgba(255, 255, 255, 0.9),
        inset 0 -1px 0 rgba(93, 132, 153, 0.1);
}

.site-nav.nav-scrolled .nav-inner {
    max-width: 980px;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.72), rgba(255, 255, 255, 0.38)),
        rgba(245, 247, 249, 0.48);
    box-shadow:
        0 18px 46px rgba(44, 62, 80, 0.14),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.logo {
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 1px;
    color: #5d8499;
    position: relative;
    z-index: 1;
    white-space: nowrap;
}

.nav-links {
    display: flex;
    gap: 8px;
    list-style: none;
    position: relative;
    z-index: 1;
    padding: 4px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.2);
    transition: gap 0.35s ease, background 0.35s ease;
}

.site-nav:hover .nav-links {
    gap: 14px;
    background: rgba(255, 255, 255, 0.28);
}

.nav-links a {
    display: inline-flex;
    min-height: 36px;
    align-items: center;
    padding: 0 14px;
    border-radius: 999px;
    font-size: 14px;
    color: rgba(44, 62, 80, 0.68);
    transition: color 0.3s, background 0.3s, box-shadow 0.3s, transform 0.3s;
    position: relative;
    overflow: hidden;
}

.nav-links a:hover {
    color: #2c3e50;
    background: rgba(255, 255, 255, 0.58);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.85),
        0 8px 20px rgba(93, 132, 153, 0.12);
    transform: translateY(-1px);
}

.nav-links a::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, rgba(255, 255, 255, 0.7), transparent 40%);
    opacity: 0;
    transition: opacity 0.3s;
}

.nav-links a:hover::after {
    opacity: 1;
}

.nav-toggle {
    display: none;
    width: 42px;
    height: 42px;
    border: 1px solid rgba(255, 255, 255, 0.62);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.42);
    backdrop-filter: blur(18px) saturate(180%);
    -webkit-backdrop-filter: blur(18px) saturate(180%);
    position: relative;
    z-index: 2;
    cursor: pointer;
}

.nav-toggle span {
    display: block;
    width: 16px;
    height: 1.5px;
    background: #5d8499;
    margin: 5px auto;
    border-radius: 999px;
    transition: transform 0.3s ease;
}

.site-nav.nav-open .nav-toggle span:first-child {
    transform: translateY(3.25px) rotate(45deg);
}

.site-nav.nav-open .nav-toggle span:last-child {
    transform: translateY(-3.25px) rotate(-45deg);
}

/* ========== 通用容器 ========== */
section {
    padding: 120px 40px;
    max-width: 1100px;
    margin: 0 auto;
}

.section-title {
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: #8aafc4;
    margin-bottom: 16px;
}

.section-heading {
    font-size: 32px;
    font-weight: 300;
    color: #2c3e50;
    margin-bottom: 50px;
    letter-spacing: 1px;
}

/* ========== 首页 Hero ========== */
#hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding-top: 110px;
}

.hero-greeting {
    font-size: 14px;
    color: #8aafc4;
    letter-spacing: 6px;
    text-transform: uppercase;
    margin-bottom: 24px;
}

.hero-name {
    font-size: 72px;
    font-weight: 200;
    color: #2c3e50;
    letter-spacing: 2px;
    margin-bottom: 12px;
    line-height: 1.1;
}

.hero-name-en {
    font-size: 24px;
    font-weight: 300;
    color: #7a8a99;
    letter-spacing: 4px;
    margin-bottom: 32px;
}

.hero-tagline {
    font-size: 18px;
    color: #7a8a99;
    max-width: 540px;
    line-height: 1.8;
    margin-bottom: 48px;
    font-weight: 300;
}

.hero-cta {
    display: inline-block;
    padding: 14px 36px;
    background: #8aafc4;
    color: #fff;
    font-size: 14px;
    letter-spacing: 2px;
    border-radius: 30px;
    transition: all 0.3s;
}

.hero-cta:hover {
    background: #5d8499;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(138, 175, 196, 0.3);
}

.home-page .pond-canvas {
    opacity: 0.26;
}

#hero.hero-curated {
    max-width: 1180px;
    min-height: 100vh;
    display: grid;
    grid-template-columns: minmax(270px, 0.42fr) minmax(0, 1fr);
    gap: 34px;
    align-items: center;
    padding-top: 116px;
    padding-bottom: 70px;
}

.hero-curated-intro {
    align-self: stretch;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-right: 24px;
    border-right: 1px solid rgba(138, 175, 196, 0.22);
}

#hero.hero-curated .hero-greeting {
    max-width: 220px;
    line-height: 1.8;
    margin-bottom: 30px;
}

#hero.hero-curated .hero-name {
    font-size: 58px;
    line-height: 1.08;
    margin-bottom: 14px;
}

#hero.hero-curated .hero-name-en {
    font-size: 18px;
    letter-spacing: 5px;
    margin-bottom: 28px;
}

#hero.hero-curated .hero-tagline {
    max-width: 320px;
    margin-bottom: 30px;
    font-size: 15px;
    line-height: 1.9;
}

.hero-directory-note {
    margin-top: 30px;
    padding-top: 22px;
    border-top: 1px solid rgba(138, 175, 196, 0.22);
}

.hero-directory-note span {
    display: block;
    color: #8aafc4;
    font-size: 11px;
    letter-spacing: 3px;
    margin-bottom: 10px;
}

.hero-directory-note p {
    color: #4a5a6a;
    font-size: 13px;
    line-height: 1.8;
}

.hero-showcase {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: minmax(390px, 1fr) auto;
    gap: 18px;
    align-items: stretch;
}

.hero-project-card,
.hero-index-panel {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(138, 175, 196, 0.16);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.74);
    box-shadow: 0 18px 42px rgba(93, 132, 153, 0.13), inset 0 1px 0 rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(18px) saturate(160%);
    -webkit-backdrop-filter: blur(18px) saturate(160%);
}

.hero-project-card {
    min-height: 390px;
    display: grid;
    align-content: end;
    transition: transform 0.32s ease, box-shadow 0.32s ease, border-color 0.32s ease;
}

.hero-project-card:hover {
    transform: translateY(-5px);
    border-color: rgba(93, 132, 153, 0.28);
    box-shadow: 0 24px 56px rgba(93, 132, 153, 0.18), inset 0 1px 0 rgba(255, 255, 255, 0.94);
}

.hero-project-media {
    position: absolute;
    inset: 0;
    background: #eef3f6;
}

.hero-project-media::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(248, 250, 251, 0.05), rgba(36, 59, 83, 0.64)),
        linear-gradient(90deg, rgba(36, 59, 83, 0.08), rgba(36, 59, 83, 0));
}

.hero-project-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(0.82) contrast(0.98);
    transform: scale(1.03);
    transition: transform 0.45s ease;
}

.hero-project-card:hover .hero-project-media img {
    transform: scale(1.08);
}

.hero-project-copy {
    position: relative;
    z-index: 1;
    padding: 26px;
    color: #fff;
}

.hero-project-copy span {
    display: block;
    margin-bottom: 12px;
    color: rgba(255, 255, 255, 0.74);
    font-size: 11px;
    letter-spacing: 2px;
}

.hero-project-copy strong {
    display: block;
    color: #fff;
    font-size: 30px;
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: 8px;
}

.hero-project-copy p {
    max-width: 300px;
    color: rgba(255, 255, 255, 0.82);
    font-size: 14px;
    line-height: 1.7;
}

.hero-index-panel {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 0.7fr repeat(3, 1fr);
    align-items: center;
    gap: 18px;
    min-height: 138px;
    padding: 24px 28px;
}

.hero-index-panel > span {
    color: #8aafc4;
    font-size: 11px;
    letter-spacing: 2px;
}

.hero-index-panel div {
    min-height: 78px;
    padding-left: 18px;
    border-left: 1px solid rgba(138, 175, 196, 0.2);
}

.hero-index-panel strong {
    display: block;
    color: #2c3e50;
    font-size: 20px;
    font-weight: 400;
    margin-bottom: 6px;
}

.hero-index-panel p {
    color: #7a8a99;
    font-size: 13px;
    line-height: 1.6;
}

/* ========== About ========== */
.about-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 80px;
    align-items: start;
}

.about-photo {
    width: 100%;
    aspect-ratio: 1 / 1;
    background: linear-gradient(135deg, #e8eef2 0%, #d4e1e9 100%);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #a0b4c0;
    font-size: 13px;
    letter-spacing: 2px;
}

.about-text p {
    font-size: 16px;
    color: #4a5a6a;
    margin-bottom: 20px;
}

.about-text p:first-child::first-letter {
    font-size: 48px;
    float: left;
    line-height: 1;
    margin-right: 8px;
    color: #8aafc4;
    font-weight: 300;
}

/* ========== Skills ========== */
.skills-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.skill-card {
    background: #fff;
    padding: 36px 32px;
    border-radius: 8px;
    border: 1px solid rgba(138, 175, 196, 0.12);
    transition: all 0.3s;
}

.skill-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(138, 175, 196, 0.12);
    border-color: rgba(138, 175, 196, 0.3);
}

.skill-card-title {
    font-size: 18px;
    font-weight: 400;
    color: #5d8499;
    margin-bottom: 16px;
    letter-spacing: 1px;
}

.skill-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.skill-tag {
    font-size: 13px;
    padding: 6px 14px;
    background: #eef3f6;
    color: #5d8499;
    border-radius: 20px;
}

/* ========== Experience ========== */
.timeline {
    position: relative;
    padding-left: 32px;
    border-left: 1px solid rgba(138, 175, 196, 0.3);
}

.timeline-item {
    position: relative;
    padding-bottom: 48px;
}

.timeline-item:last-child {
    padding-bottom: 0;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -37px;
    top: 8px;
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: #8aafc4;
    box-shadow: 0 0 0 4px #f5f7f9;
}

.timeline-period {
    font-size: 13px;
    color: #8aafc4;
    letter-spacing: 2px;
    margin-bottom: 8px;
}

.timeline-role {
    font-size: 20px;
    font-weight: 400;
    color: #2c3e50;
    margin-bottom: 4px;
}

.timeline-company {
    font-size: 14px;
    color: #7a8a99;
    margin-bottom: 12px;
}

.timeline-desc {
    font-size: 15px;
    color: #4a5a6a;
    line-height: 1.8;
}

/* ========== Works ========== */
.works-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.work-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid rgba(138, 175, 196, 0.12);
    transition: all 0.4s;
    cursor: pointer;
}

.work-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(138, 175, 196, 0.18);
}

.work-cover {
    width: 100%;
    aspect-ratio: 16 / 10;
    background: linear-gradient(135deg, #d4e1e9 0%, #b8cdd9 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 13px;
    letter-spacing: 2px;
    position: relative;
    overflow: hidden;
}

.work-cover::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(138, 175, 196, 0.3), rgba(93, 132, 153, 0.4));
}

.work-cover span {
    position: relative;
    z-index: 1;
    letter-spacing: 3px;
}

.work-cover-image {
    background: #eef3f6;
}

.work-cover-image::after {
    display: none;
}

.work-cover-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.06);
    transition: transform 0.4s;
}

.work-card:hover .work-cover-image img {
    transform: scale(1.1);
}

.work-card:nth-child(2) .work-cover {
    background: linear-gradient(135deg, #e8eef2 0%, #c8d8e0 100%);
}

.work-card:nth-child(3) .work-cover {
    background: linear-gradient(135deg, #d8e4ea 0%, #a8c2d0 100%);
}

.work-card:nth-child(4) .work-cover {
    background: linear-gradient(135deg, #c8d8e0 0%, #98b4c4 100%);
}

/* ========== Works Tab 切换 ========== */
.works-tabs {
    display: flex;
    gap: 8px;
    margin-bottom: 48px;
    border-bottom: 1px solid rgba(138, 175, 196, 0.2);
}

.works-tab {
    padding: 14px 28px;
    font-size: 14px;
    letter-spacing: 3px;
    color: #7a8a99;
    background: transparent;
    border: none;
    border-bottom: 2px solid transparent;
    cursor: pointer;
    transition: all 0.3s;
    font-family: inherit;
    margin-bottom: -1px;
}

.works-tab:hover {
    color: #5d8499;
}

.works-tab.active {
    color: #2c3e50;
    border-bottom-color: #8aafc4;
}

.works-tab .tab-count {
    font-size: 11px;
    color: #a0b4c0;
    margin-left: 8px;
    letter-spacing: 1px;
}

.works-panel {
    display: none;
}

.works-panel.active {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    animation: fadeIn 0.4s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(8px); }
    to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 768px) {
    .works-panel.active {
        grid-template-columns: 1fr;
    }
    .works-tab {
        padding: 12px 18px;
        font-size: 13px;
        letter-spacing: 2px;
    }
}

/* ========== Typography Strict Lock ========== */
body :is(h1, .section-heading, .hero-name),
.home-page .hero-reference .hero-name,
.project-page-main .section-heading {
    color: #111 !important;
    font-family: var(--font-portfolio) !important;
    font-size: var(--type-h1) !important;
    font-weight: 700 !important;
    line-height: 1.2 !important;
    letter-spacing: -0.02em !important;
}

body :is(h2),
.home-page .hero-works-heading h2,
.project-page-main .project-section-header h2 {
    color: #111 !important;
    font-family: var(--font-portfolio) !important;
    font-size: var(--type-h2) !important;
    font-weight: 600 !important;
    line-height: 1.25 !important;
    letter-spacing: -0.02em !important;
}

body :is(h3),
.project-page-main :is(.case-narrative h3, .case-breakpoint-list h3, .scenario-grid h3, .scope-columns h3, .prd-card h3, .prototype-copy h3, .summary-panel h3, .workflow-grid h3),
.home-page :is(.skills-card h3, .skill-card h3, .hero-project-copy h3) {
    color: #111 !important;
    font-family: var(--font-portfolio) !important;
    font-size: var(--type-h3) !important;
    font-weight: 600 !important;
    line-height: 1.3 !important;
    letter-spacing: -0.02em !important;
}

body :is(h4),
.project-page-main :is(.project-intro strong, .case-kpi-grid strong, .flow-steps strong),
.home-page :is(.hero-reference-stats strong, .about-card strong, .timeline-card h4, .work-card-title) {
    color: #111 !important;
    font-family: var(--font-portfolio) !important;
    font-size: var(--type-h4) !important;
    font-weight: 500 !important;
    line-height: 1.35 !important;
    letter-spacing: -0.02em !important;
}

body :is(p, li),
.home-page :is(.hero-one-line, .about-text p, .hero-project-copy p),
.project-page-main :is(.project-intro-copy p, .project-section-header p, .project-section p, .project-section li, .case-kpi-grid p, .summary-panel p, .workflow-grid p, .prd-card p, .flow-steps p, .scope-columns p, .scenario-grid p, .case-narrative p, .case-breakpoint-list li, .prototype-copy p) {
    color: #333 !important;
    font-family: var(--font-portfolio) !important;
    font-size: var(--type-body) !important;
    font-weight: 400 !important;
    line-height: 1.6 !important;
    letter-spacing: 0 !important;
    text-align: left !important;
}

.home-page .hero-one-line,
.project-page-main .project-intro-copy p {
    font-size: var(--type-body-lg) !important;
    line-height: 1.55 !important;
}

body :is(small, .nav-links a, .cover-menu a, .hero-skill-pills span, .skill-tags span, .work-tags span, .project-action, .project-back, .hero-text-link, .hero-cta, .prd-link, .work-meta, .timeline-period, .zoom-hint) {
    color: #666 !important;
    font-family: var(--font-portfolio) !important;
    font-size: var(--type-small) !important;
    font-weight: 400 !important;
    line-height: 1.6 !important;
    letter-spacing: 0 !important;
}

body :is(.section-title, .project-label, .case-kpi-grid span, .scenario-grid span, .flow-steps span, .workflow-grid span, .prototype-copy span, .rail-nav small, .rail-footer, .loader-caption, .loader-name, .hero-name-en, .cover-announcement, .home-page .hero-works-heading p, .work-year, .meta-note) {
    color: #999 !important;
    font-family: var(--font-portfolio) !important;
    font-size: var(--type-note) !important;
    font-weight: 400 !important;
    line-height: 1.6 !important;
    letter-spacing: 0 !important;
}

/* Final color and body-size locks for legacy themed selectors. */
body.home-page .hero-reference .hero-name,
body:not(.home-page) .section-heading,
body:not(.home-page) .project-section-header h2,
body:not(.home-page) .project-section h3,
body:not(.home-page) .case-narrative h3,
body:not(.home-page) .case-breakpoint-list h3,
body:not(.home-page) .scenario-grid h3,
body:not(.home-page) .scope-columns h3,
body:not(.home-page) .prd-card h3,
body:not(.home-page) .prototype-copy h3,
body:not(.home-page) .workflow-grid h3,
body:not(.home-page) .summary-panel h3 {
    color: #111 !important;
}

body.home-page .hero-reference .hero-one-line,
body:not(.home-page) .project-intro-copy p {
    color: #333 !important;
    font-size: var(--type-body-lg) !important;
    font-weight: 400 !important;
    line-height: 1.55 !important;
    letter-spacing: 0 !important;
    text-align: left !important;
}

body.home-page .hero-reference .hero-text-link,
body.home-page .hero-reference .hero-skill-pills span,
body:not(.home-page) .project-action:not(.project-action-primary),
body:not(.home-page) .project-back,
body:not(.home-page) .prd-link {
    color: #666 !important;
}

body:not(.home-page) .project-section p,
body:not(.home-page) .project-section li,
body:not(.home-page) .case-kpi-grid p,
body:not(.home-page) .summary-panel p,
body:not(.home-page) .workflow-grid p,
body:not(.home-page) .prd-card p,
body:not(.home-page) .flow-steps p,
body:not(.home-page) .scope-columns p,
body:not(.home-page) .scenario-grid p,
body:not(.home-page) .case-narrative p,
body:not(.home-page) .case-breakpoint-list li,
body:not(.home-page) .prototype-copy p {
    color: #333 !important;
}

body:not(.home-page) .section-title,
body:not(.home-page) .project-label,
body:not(.home-page) .case-kpi-grid span,
body:not(.home-page) .scenario-grid span,
body:not(.home-page) .flow-steps span,
body:not(.home-page) .workflow-grid span,
body:not(.home-page) .prototype-copy span {
    color: #999 !important;
}

/* ========== Warm Ivory Theme Refinement ========== */
:root {
    --ivory-bg: #f7f2e8;
    --ivory-panel: #fbf8f1;
    --ivory-panel-soft: #f1eadc;
    --ivory-line: rgba(98, 82, 58, 0.16);
    --ivory-ink: #2f2a22;
    --ivory-text: #675b4b;
    --ivory-muted: #958877;
    --ivory-accent: #7d8a55;
    --ivory-accent-dark: #5f6f3b;
    --ivory-button: #6f694d;
}

.home-page,
body {
    color: var(--ivory-text);
    background:
        radial-gradient(circle at 18% 8%, rgba(255, 255, 255, 0.88), transparent 30%),
        radial-gradient(circle at 80% 18%, rgba(245, 238, 224, 0.84), transparent 32%),
        linear-gradient(112deg, #fbf8f0 0%, #f8f2e7 48%, #f1eadc 100%);
}

.home-side-rail {
    border-right-color: var(--ivory-line);
    background: rgba(252, 248, 239, 0.82);
}

.rail-logo,
.hero-reference .hero-name,
.home-page .hero-project-copy strong,
.home-page .hero-works-heading h2,
.work-title,
.section-heading,
.contact-heading,
.project-detail .section-heading,
.project-section-header h2 {
    color: var(--ivory-ink);
}

.rail-dot,
.rail-nav a.active::before,
.home-collab-strip span {
    background: var(--ivory-accent);
}

.rail-nav span,
.hero-reference-stats span,
.home-collab-strip a,
.section-title,
.project-label,
.work-meta {
    color: var(--ivory-accent-dark);
}

.rail-nav strong,
.rail-nav small,
.hero-reference .hero-name-en,
.hero-reference .hero-role,
.hero-one-line,
.hero-text-link,
.home-page .hero-project-copy em,
.home-page .hero-project-copy p,
.work-desc,
.contact-sub,
.about-text p,
.timeline-desc {
    color: var(--ivory-text);
}

.hero-reference .hero-skill-pills span,
.skill-tag,
.project-tags b,
.contact-link,
.works-tabs {
    border-color: var(--ivory-line);
    color: var(--ivory-text);
    background: rgba(255, 252, 246, 0.72);
}

.hero-reference .hero-cta,
.works-tab.active,
.project-action.project-action-primary,
.hero-dash-card-contact a {
    color: #fff;
    background: linear-gradient(135deg, #858164, var(--ivory-button));
    box-shadow: 0 16px 28px rgba(98, 82, 58, 0.16);
}

.hero-quote-card,
.home-collab-strip,
.home-page .hero-project-card,
.work-card,
.skill-card,
.timeline-item,
.about-photo-card,
.about-proof-grid div,
.project-intro,
.case-kpi-grid > div,
.case-narrative,
.case-breakpoint-list,
.scenario-grid > div,
.scope-columns > div,
.prd-card,
.flow-steps > div,
.workflow-grid > div,
.summary-panel > div {
    border-color: var(--ivory-line);
    background: rgba(255, 252, 246, 0.72);
}

.hero-quote-card {
    background: rgba(240, 232, 217, 0.9);
}

.hero-quote-card span {
    color: var(--ivory-accent-dark);
}

.hero-reference-stats div,
.home-page .hero-works-heading::after {
    border-color: var(--ivory-line);
    background-color: transparent;
}

.home-page .home-media-jiaplus,
.home-page #works .home-media-jiaplus {
    display: grid;
    place-items: center;
    background: #efe6d6;
}

.home-page .home-media-jiaplus .project-main-room,
.home-page #works .work-media-showcase .project-main-room {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    filter: saturate(0.94) brightness(1.02);
}

.project-compare-line {
    left: 50%;
    background: rgba(255, 252, 246, 0.92);
}

.project-compare-handle {
    left: 50%;
    top: 50%;
    background: var(--ivory-accent);
}

.project-mini-preview {
    display: none !important;
}

.home-page .home-media-exhibition,
.home-page #works .home-media-exhibition {
    background:
        radial-gradient(circle at 52% 42%, rgba(255, 255, 255, 0.74), transparent 34%),
        linear-gradient(135deg, #f9f5eb, #eee3d1);
}

.home-page .home-media-exhibition .phone-shot {
    border-color: #1e211d;
    background: #fbf8ef;
}

#works {
    margin-left: 128px;
    max-width: 1310px;
    padding-left: 72px;
    padding-right: 72px;
}

#works .works-panel.active {
    justify-content: center;
}

@media (max-width: 1180px) {
    #works {
        margin-left: auto;
    }
}

.work-info {
    padding: 24px 28px 28px;
}

.work-title {
    font-size: 18px;
    font-weight: 400;
    color: #2c3e50;
    margin-bottom: 8px;
}

.work-desc {
    font-size: 14px;
    color: #7a8a99;
    line-height: 1.7;
    margin-bottom: 12px;
}

.work-meta {
    font-size: 12px;
    color: #a0b4c0;
    letter-spacing: 1px;
}

/* ========== Project Detail ========== */
.project-page-main {
    padding-top: 118px;
}

.project-detail {
    padding-top: 40px;
}

.project-back {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #5d8499;
    font-size: 12px;
    letter-spacing: 3px;
    margin-bottom: 28px;
    padding: 10px 16px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.48);
    border: 1px solid rgba(255, 255, 255, 0.72);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.82);
    backdrop-filter: blur(18px) saturate(160%);
    -webkit-backdrop-filter: blur(18px) saturate(160%);
    transition: transform 0.3s, color 0.3s, box-shadow 0.3s;
}

.project-back:hover {
    color: #2c3e50;
    transform: translateY(-2px);
    box-shadow: 0 14px 32px rgba(138, 175, 196, 0.18), inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.project-hero {
    width: 100%;
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    background: #eef3f6;
    border: 1px solid rgba(138, 175, 196, 0.16);
    box-shadow: 0 20px 50px rgba(138, 175, 196, 0.16);
    margin-bottom: 0;
    padding: 0;
    cursor: zoom-in;
    font-family: inherit;
}

.project-intro {
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(260px, 0.65fr);
    gap: 32px;
    align-items: end;
    margin-bottom: 32px;
}

.project-intro-copy {
    max-width: 860px;
}

.project-intro-copy p {
    color: #4a5a6a;
    font-size: 16px;
    line-height: 1.9;
    margin-bottom: 16px;
}

.project-actions {
    display: grid;
    gap: 12px;
}

.project-action {
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 18px;
    border-radius: 8px;
    border: 1px solid rgba(138, 175, 196, 0.16);
    background: rgba(255, 255, 255, 0.68);
    color: #2c3e50;
    font-size: 14px;
    letter-spacing: 1px;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.86);
    transition: transform 0.3s, box-shadow 0.3s, background 0.3s;
}

.project-action:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 14px 28px rgba(138, 175, 196, 0.16), inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.project-action-primary {
    background: #243b53;
    color: #fff;
    border-color: #243b53;
    box-shadow: 0 18px 32px rgba(36, 59, 83, 0.22);
}

.project-action-primary:hover {
    background: #1e3145;
    box-shadow: 0 20px 36px rgba(36, 59, 83, 0.26);
}

.project-hero img {
    width: 100%;
    display: block;
    transition: transform 0.5s ease;
}

.project-hero:hover img {
    transform: scale(1.018);
}

.zoom-hint {
    position: absolute;
    right: 18px;
    bottom: 18px;
    z-index: 1;
    padding: 10px 14px;
    border-radius: 999px;
    color: #2c3e50;
    font-size: 12px;
    letter-spacing: 1px;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.82), rgba(255, 255, 255, 0.46)),
        rgba(245, 247, 249, 0.42);
    border: 1px solid rgba(255, 255, 255, 0.76);
    box-shadow: 0 12px 28px rgba(44, 62, 80, 0.13), inset 0 1px 0 rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(16px) saturate(170%);
    -webkit-backdrop-filter: blur(16px) saturate(170%);
}

.workflow-grid > div {
    background: #fff;
    border: 1px solid rgba(138, 175, 196, 0.12);
    border-radius: 8px;
    padding: 26px 28px;
}

.case-kpi-grid,
.scenario-grid,
.scope-columns,
.prd-grid,
.flow-steps,
.summary-panel {
    display: grid;
    gap: 22px;
}

.case-kpi-grid {
    grid-template-columns: repeat(3, 1fr);
}

.case-kpi-grid > div,
.case-narrative,
.case-breakpoint-list,
.scenario-grid > div,
.scope-columns > div,
.prd-card,
.flow-steps > div,
.prototype-groups article,
.summary-panel > div {
    background: rgba(255, 255, 255, 0.76);
    border: 1px solid rgba(138, 175, 196, 0.12);
    border-radius: 8px;
    padding: 28px;
    box-shadow: 0 16px 34px rgba(138, 175, 196, 0.1);
}

.case-kpi-grid span,
.scenario-grid span,
.flow-steps span,
.prototype-copy span {
    display: inline-flex;
    color: #8aafc4;
    font-size: 12px;
    letter-spacing: 2px;
    margin-bottom: 14px;
}

.case-kpi-grid strong,
.case-narrative h3,
.case-breakpoint-list h3,
.scenario-grid h3,
.scope-columns h3,
.prd-card h3,
.flow-steps strong,
.prototype-copy h3,
.summary-panel h3 {
    display: block;
    color: #2c3e50;
    font-size: 18px;
    font-weight: 400;
    margin-bottom: 12px;
}

.case-kpi-grid p,
.case-narrative p,
.case-breakpoint-list li,
.scenario-grid p,
.scope-columns p,
.scope-columns li,
.prd-card p,
.prd-card li,
.flow-steps p,
.prototype-copy p,
.summary-panel p {
    color: #4a5a6a;
    font-size: 15px;
    line-height: 1.85;
}

.case-narrative p + p {
    margin-top: 14px;
}

.case-problem-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.85fr);
    gap: 22px;
}

.case-breakpoint-list ol,
.scope-columns ul,
.prd-card ul {
    display: grid;
    gap: 10px;
    padding-left: 20px;
}

.scenario-grid {
    grid-template-columns: repeat(3, 1fr);
}

.scope-columns {
    grid-template-columns: 1fr 1fr 1.1fr;
}

.prd-grid {
    grid-template-columns: repeat(2, 1fr);
}

.prd-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    margin-top: 18px;
    padding: 0 22px;
    border-radius: 8px;
    background: #243b53;
    color: #fff;
    font-size: 14px;
    letter-spacing: 1px;
    box-shadow: 0 18px 32px rgba(36, 59, 83, 0.22);
    transition: transform 0.3s, box-shadow 0.3s;
}

.prd-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 20px 36px rgba(36, 59, 83, 0.26);
}

.flow-steps {
    grid-template-columns: 1fr;
    gap: 14px;
}

.flow-steps > div {
    display: grid;
    grid-template-columns: 86px minmax(0, 1fr);
    gap: 24px;
    align-items: start;
    min-height: 112px;
}

.flow-steps span {
    align-items: center;
    justify-content: center;
    width: 54px;
    height: 54px;
    border-radius: 999px;
    background: rgba(238, 247, 244, 0.9);
    border: 1px solid rgba(138, 175, 196, 0.16);
}

.prototype-groups {
    display: grid;
    gap: 28px;
}

.prototype-groups article {
    padding: 28px;
}

.prototype-copy {
    max-width: 820px;
    margin-bottom: 24px;
}

.case-gallery-three {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.summary-panel {
    grid-template-columns: repeat(2, 1fr);
}

.project-label {
    font-size: 12px;
    color: #8aafc4;
    letter-spacing: 3px;
    margin-bottom: 12px;
}

.project-section {
    padding: 82px 0 0;
}

.project-structure .project-section-header {
    margin-bottom: 18px;
}

.project-section-header {
    max-width: 760px;
    margin-bottom: 28px;
}

.project-section-header h2 {
    color: #2c3e50;
    font-size: 32px;
    font-weight: 300;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.project-section-header p {
    color: #4a5a6a;
    font-size: 15px;
    line-height: 1.85;
}

.case-gallery {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 22px;
}

.case-shot {
    padding: 14px;
    border: 1px solid rgba(138, 175, 196, 0.12);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.72);
    cursor: zoom-in;
    font-family: inherit;
    box-shadow: 0 16px 34px rgba(138, 175, 196, 0.12);
    transition: transform 0.3s, box-shadow 0.3s;
}

.case-shot:hover {
    transform: translateY(-4px);
    box-shadow: 0 22px 42px rgba(138, 175, 196, 0.18);
}

.case-shot img {
    width: 100%;
    aspect-ratio: 390 / 844;
    object-fit: cover;
    display: block;
    border-radius: 8px;
    background: #f5f7f8;
    border: 1px solid rgba(138, 175, 196, 0.12);
}

.case-shot span {
    display: block;
    padding-top: 12px;
    color: #2c3e50;
    font-size: 14px;
    letter-spacing: 1px;
    text-align: center;
}

.workflow-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
}

.workflow-grid > div {
    display: grid;
    grid-template-columns: 86px minmax(0, 1fr);
    gap: 24px;
    align-items: start;
    min-height: 112px;
}

.workflow-grid span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 54px;
    height: 54px;
    border-radius: 999px;
    background: rgba(238, 247, 244, 0.9);
    border: 1px solid rgba(138, 175, 196, 0.16);
    color: #8aafc4;
    font-size: 12px;
    letter-spacing: 2px;
}

.workflow-grid h3 {
    display: block;
    color: #2c3e50;
    font-size: 18px;
    font-weight: 400;
    margin-bottom: 10px;
}

.workflow-grid p {
    display: block;
    color: #4a5a6a;
    font-size: 15px;
    line-height: 1.8;
}

/* ========== Image Lightbox ========== */
.image-lightbox {
    position: fixed;
    inset: 0;
    z-index: 3000;
    display: grid;
    place-items: center;
    padding: 92px 28px 36px;
    background:
        radial-gradient(circle at 28% 18%, rgba(255, 255, 255, 0.9), transparent 30%),
        rgba(238, 243, 246, 0.72);
    backdrop-filter: blur(30px) saturate(180%);
    -webkit-backdrop-filter: blur(30px) saturate(180%);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.28s ease;
}

.image-lightbox.is-open {
    opacity: 1;
    pointer-events: auto;
}

body.lightbox-open {
    overflow: hidden;
}

.lightbox-toolbar {
    position: fixed;
    top: 24px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px;
    border-radius: 999px;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.76), rgba(255, 255, 255, 0.42)),
        rgba(245, 247, 249, 0.42);
    border: 1px solid rgba(255, 255, 255, 0.72);
    box-shadow: 0 18px 44px rgba(44, 62, 80, 0.18), inset 0 1px 0 rgba(255, 255, 255, 0.88);
    backdrop-filter: blur(22px) saturate(180%);
    -webkit-backdrop-filter: blur(22px) saturate(180%);
}

.lightbox-btn,
.lightbox-close {
    min-width: 44px;
    height: 38px;
    padding: 0 14px;
    border: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.52);
    color: #2c3e50;
    font: inherit;
    font-size: 14px;
    cursor: pointer;
    transition: background 0.25s, transform 0.25s;
}

.lightbox-close {
    font-size: 22px;
    line-height: 1;
}

.lightbox-btn:hover,
.lightbox-close:hover {
    background: rgba(255, 255, 255, 0.82);
    transform: translateY(-1px);
}

.lightbox-stage {
    width: min(92vw, 1220px);
    height: min(76vh, 760px);
    display: grid;
    place-items: center;
    overflow: hidden;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.42);
    border: 1px solid rgba(255, 255, 255, 0.72);
    box-shadow: 0 26px 70px rgba(44, 62, 80, 0.22), inset 0 1px 0 rgba(255, 255, 255, 0.88);
}

.lightbox-image {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transform: scale(var(--zoom, 1));
    transition: transform 0.18s ease;
    user-select: none;
}



/* ========== Portfolio Recruiter Enhancements ========== */
.hero-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 34px;
}

.hero-cta-secondary {
    background: rgba(255, 255, 255, 0.68);
    color: #5d8499;
    border: 1px solid rgba(138, 175, 196, 0.22);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.86);
}

.hero-cta-secondary:hover {
    background: rgba(255, 255, 255, 0.9);
    color: #2c3e50;
}

.hero-metrics {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    width: min(100%, 820px);
}

.hero-metrics div,
.about-proof-grid div {
    border: 1px solid rgba(138, 175, 196, 0.14);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.78);
    box-shadow: 0 16px 38px rgba(93, 132, 153, 0.14), inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.hero-metrics div {
    padding: 18px 20px;
}

.hero-metrics strong {
    display: block;
    color: #2c3e50;
    font-size: 20px;
    font-weight: 400;
    margin-bottom: 4px;
}

.hero-metrics span,
.about-proof-grid span {
    display: block;
    color: #7a8a99;
    font-size: 13px;
    line-height: 1.6;
}

.about-photo-card {
    align-items: flex-start;
    justify-content: flex-end;
    padding: 28px;
    text-align: left;
    min-height: 340px;
    color: #2c3e50;
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.72), rgba(210, 228, 238, 0.58)),
        radial-gradient(circle at 28% 22%, rgba(138, 175, 196, 0.32), transparent 34%);
}

.about-photo-card span {
    color: #8aafc4;
    font-size: 12px;
    letter-spacing: 3px;
    margin-bottom: 12px;
}

.about-photo-card strong {
    color: #2c3e50;
    font-size: 28px;
    font-weight: 300;
    letter-spacing: 1px;
}

.about-photo-card small {
    margin-top: 10px;
    color: #7a8a99;
    font-size: 13px;
    letter-spacing: 1px;
    line-height: 1.5;
}

.about-proof-grid {
    display: grid;
    gap: 12px;
    margin-top: 26px;
}

.about-proof-grid div {
    padding: 18px 20px;
}

.about-proof-grid strong {
    display: block;
    color: #2c3e50;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.7;
    margin-top: 4px;
}

.work-cover-concept {
    background:
        radial-gradient(circle at 24% 24%, rgba(255, 255, 255, 0.68), transparent 34%),
        linear-gradient(135deg, #d8e4ea 0%, #8aafc4 100%);
}

.work-card-soft {
    cursor: default;
}

.work-card-soft:hover {
    transform: translateY(-3px);
}

@media (max-width: 768px) {
    .hero-actions {
        width: 100%;
    }

    .hero-actions .hero-cta {
        width: 100%;
        text-align: center;
    }

    .hero-metrics {
        grid-template-columns: 1fr;
    }

    .about-photo-card {
        min-height: 260px;
    }
}

/* ========== Contact ========== */
#contact {
    text-align: center;
}

.contact-heading {
    font-size: 36px;
    font-weight: 200;
    color: #2c3e50;
    margin-bottom: 16px;
    letter-spacing: 2px;
}

.contact-sub {
    color: #7a8a99;
    font-size: 15px;
    margin-bottom: 48px;
}

.contact-links {
    display: flex;
    justify-content: center;
    gap: 48px;
    flex-wrap: wrap;
}

.contact-link {
    font-size: 15px;
    color: #5d8499;
    transition: color 0.3s;
    letter-spacing: 1px;
}

.contact-link:hover {
    color: #2c3e50;
}

/* ========== Footer ========== */
footer {
    text-align: center;
    padding: 40px;
    color: #a0b4c0;
    font-size: 12px;
    letter-spacing: 2px;
    border-top: 1px solid rgba(138, 175, 196, 0.15);
}

/* ========== 响应式 ========== */
@media (max-width: 768px) {
    .site-nav {
        top: 12px;
        padding: 0 16px;
    }
    .nav-inner {
        padding: 9px 10px 9px 18px;
        max-width: 100%;
        overflow: visible;
    }
    .nav-toggle {
        display: block;
    }
    .nav-links {
        position: absolute;
        top: calc(100% + 10px);
        left: 0;
        right: 0;
        display: grid;
        gap: 6px;
        padding: 10px;
        border: 1px solid rgba(255, 255, 255, 0.62);
        border-radius: 24px;
        background:
            linear-gradient(135deg, rgba(255, 255, 255, 0.76), rgba(255, 255, 255, 0.42)),
            rgba(245, 247, 249, 0.5);
        backdrop-filter: blur(26px) saturate(185%);
        -webkit-backdrop-filter: blur(26px) saturate(185%);
        box-shadow:
            0 24px 54px rgba(44, 62, 80, 0.16),
            inset 0 1px 0 rgba(255, 255, 255, 0.9);
        opacity: 0;
        transform: translateY(-8px) scale(0.98);
        pointer-events: none;
        transition: opacity 0.28s ease, transform 0.28s ease;
    }
    .site-nav:hover .nav-links {
        gap: 6px;
    }
    .site-nav.nav-open .nav-links {
        opacity: 1;
        transform: translateY(0) scale(1);
        pointer-events: auto;
    }
    .nav-links a {
        width: 100%;
        justify-content: space-between;
        min-height: 44px;
        padding: 0 16px;
    }
    section { padding: 80px 24px; }
    .hero-name { font-size: 48px; }
    .hero-name-en { font-size: 18px; }
    #hero.hero-curated {
        min-height: auto;
        grid-template-columns: 1fr;
        gap: 36px;
        padding-top: 120px;
        padding-bottom: 70px;
    }
    #hero.hero-curated .hero-name {
        font-size: 50px;
    }
    .hero-showcase {
        grid-template-columns: 1fr;
    }
    .hero-project-card {
        min-height: 280px;
    }
    .hero-index-panel {
        grid-template-columns: 1fr;
    }
    .about-content { grid-template-columns: 1fr; gap: 40px; }
    .skills-grid { grid-template-columns: 1fr; }
    .works-grid { grid-template-columns: 1fr; }
    .project-intro,
    .case-kpi-grid,
    .case-problem-layout,
    .scenario-grid,
    .scope-columns,
    .prd-grid,
    .flow-steps,
    .summary-panel,
    .workflow-grid { grid-template-columns: 1fr; }
    .case-gallery-three,
    .case-gallery { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .project-page-main { padding-top: 92px; }
    .project-detail { padding-top: 20px; }
    .project-section { padding-top: 64px; }
    .project-section-header h2 { font-size: 26px; }
    .workflow-grid > div {
        grid-template-columns: 1fr;
        gap: 14px;
        min-height: 0;
    }
    .flow-steps > div {
        grid-template-columns: 1fr;
        gap: 14px;
        min-height: 0;
    }
    .zoom-hint {
        left: 14px;
        right: 14px;
        bottom: 14px;
        text-align: center;
    }
    .image-lightbox {
        padding: 86px 14px 24px;
    }
    .lightbox-toolbar {
        top: 16px;
        width: calc(100% - 28px);
        justify-content: center;
    }
    .lightbox-stage {
        width: 100%;
        height: 70vh;
        border-radius: 14px;
    }
}

/* ========== Exhibition Catalogue Redesign ========== */
:root {
    --catalog-paper: #f7f4ed;
    --catalog-paper-blue: #eef4f6;
    --catalog-panel: rgba(255, 255, 255, 0.72);
    --catalog-ink: #14293b;
    --catalog-text: #354555;
    --catalog-muted: #748494;
    --catalog-line: rgba(20, 41, 59, 0.14);
    --catalog-blue: #5f86a7;
    --catalog-blue-dark: #12304a;
    --catalog-gold: #bd965f;
    --catalog-shadow: 0 18px 54px rgba(34, 57, 78, 0.08);
}

html {
    scroll-behavior: smooth;
}

body {
    color: var(--catalog-text);
    background:
        linear-gradient(90deg, #fbfaf6 0%, #f6f3eb 42%, #eaf3f6 100%);
    font-family: -apple-system, BlinkMacSystemFont, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
    letter-spacing: 0;
}

body::before,
.pond-canvas {
    display: none !important;
}

a {
    color: inherit;
}

.loader-screen {
    background: #f7f4ed;
}

.loader-glass {
    border-radius: 8px;
    border: 1px solid var(--catalog-line);
    background: rgba(255, 255, 255, 0.78);
    box-shadow: var(--catalog-shadow);
    backdrop-filter: blur(18px);
}

.site-nav {
    top: 0;
    left: 0;
    right: 0;
    transform: none;
    padding: 0 34px;
    border-bottom: 1px solid var(--catalog-line);
    background: rgba(250, 249, 245, 0.86);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
}

.nav-inner {
    max-width: 1440px;
    min-height: 74px;
    padding: 0;
    margin: 0 auto;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
}

.logo {
    color: var(--catalog-ink);
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 4px;
}

.nav-links {
    gap: 50px;
}

.nav-links a {
    min-width: 0;
    padding: 0;
    color: #3d4854;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.5px;
    border-radius: 0;
    background: transparent;
}

.nav-links a:hover {
    color: var(--catalog-blue-dark);
    background: transparent;
}

section {
    max-width: 1440px;
    padding: 88px 48px;
    margin: 0 auto;
}

.section-title {
    color: var(--catalog-blue);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 4px;
    margin-bottom: 18px;
}

.section-heading {
    color: var(--catalog-ink);
    font-size: 34px;
    font-weight: 600;
    letter-spacing: 0;
    line-height: 1.2;
    margin-bottom: 28px;
}

.home-page #hero.hero-curated {
    display: grid;
    grid-template-columns: minmax(320px, 42%) minmax(520px, 58%);
    gap: 0;
    max-width: none;
    min-height: 552px;
    padding: 74px 0 0;
    border-bottom: 1px solid var(--catalog-line);
}

.hero-curated-intro {
    width: 100%;
    max-width: none;
    padding: 50px 50px 40px;
    border-right: 1px solid var(--catalog-line);
}

.hero-greeting {
    color: var(--catalog-blue);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.hero-name {
    color: var(--catalog-ink);
    font-family: "Songti SC", "STSong", "Noto Serif SC", serif;
    font-size: clamp(52px, 5.4vw, 74px);
    font-weight: 700;
    letter-spacing: 0;
    line-height: 0.98;
    margin-bottom: 10px;
}

.hero-name-en {
    color: var(--catalog-blue);
    font-size: 24px;
    font-weight: 400;
    letter-spacing: 6px;
    margin-bottom: 22px;
}

.hero-rule {
    width: 58px;
    height: 2px;
    margin-bottom: 22px;
    background: var(--catalog-gold);
}

.hero-statement {
    color: var(--catalog-ink);
    font-family: "Songti SC", "STSong", "Noto Serif SC", serif;
    font-size: clamp(48px, 5vw, 76px);
    font-weight: 700;
    line-height: 1.08;
    letter-spacing: 0;
    margin-bottom: 14px;
}

.hero-role {
    color: var(--catalog-blue);
    font-size: 17px;
    font-weight: 600;
    letter-spacing: 2px;
    margin-bottom: 12px;
}

.hero-tagline {
    max-width: 560px;
    color: #536273;
    font-size: 15px;
    line-height: 1.78;
    letter-spacing: 0;
    margin-bottom: 22px;
}

.hero-actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 14px 24px;
}

.hero-cta,
.project-action,
.prd-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 0 22px;
    border: 1px solid var(--catalog-line);
    border-radius: 999px;
    color: #fff;
    background: var(--catalog-blue-dark);
    box-shadow: 0 10px 22px rgba(18, 48, 74, 0.16);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.hero-cta:hover,
.project-action:hover,
.prd-link:hover {
    transform: translateY(-1px);
    box-shadow: 0 14px 30px rgba(18, 48, 74, 0.18);
}

.hero-cta-secondary,
.hero-cta-ghost,
.project-action:not(.project-action-primary) {
    color: var(--catalog-text);
    background: rgba(255, 255, 255, 0.72);
    box-shadow: none;
}

.hero-path-panel {
    padding: 54px 58px 40px;
}

.hero-path-header {
    margin-bottom: 38px;
}

.hero-path-header h2 {
    color: var(--catalog-ink);
    font-size: 24px;
    font-weight: 700;
    letter-spacing: 0;
    margin-bottom: 14px;
}

.hero-path-header p {
    color: var(--catalog-muted);
    font-size: 15px;
    line-height: 1.7;
}

.hero-path {
    position: relative;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 46px;
    margin-bottom: 36px;
}

.hero-path::before {
    content: "";
    position: absolute;
    top: 25px;
    left: 8%;
    right: 8%;
    height: 1px;
    background: linear-gradient(90deg, rgba(95, 134, 167, 0.28), rgba(189, 150, 95, 0.62));
}

.hero-path-item {
    position: relative;
    z-index: 1;
    color: #536273;
}

.hero-path-item span {
    display: grid;
    width: 56px;
    height: 56px;
    place-items: center;
    margin: 0 auto 20px;
    border-radius: 50%;
    color: var(--catalog-blue-dark);
    background: #dfe9f0;
    box-shadow: 0 0 0 12px rgba(223, 233, 240, 0.42);
    font-weight: 700;
}

.hero-path-item:nth-child(3) span {
    color: #9a6b2d;
    background: #f2e6d4;
    box-shadow: 0 0 0 12px rgba(242, 230, 212, 0.45);
}

.hero-path-item strong {
    display: block;
    width: fit-content;
    margin: 0 auto 12px;
    padding: 9px 26px;
    border: 1px solid var(--catalog-line);
    border-radius: 999px;
    color: var(--catalog-ink);
    background: rgba(255, 255, 255, 0.74);
    font-size: 16px;
}

.hero-path-item p {
    color: #657382;
    font-size: 14px;
    line-height: 1.8;
    text-align: center;
}

.hero-belief {
    display: flex;
    align-items: center;
    gap: 12px;
    min-height: 58px;
    padding: 18px 26px;
    border: 1px solid var(--catalog-line);
    border-radius: 8px;
    color: #4e5e6e;
    background: rgba(255, 255, 255, 0.68);
    box-shadow: 0 16px 40px rgba(34, 57, 78, 0.04);
    line-height: 1.8;
}

.hero-belief span,
.hero-belief strong {
    color: var(--catalog-blue);
    font-weight: 700;
}

.hero-works {
    max-width: none;
    padding: 0 50px 48px;
    border-bottom: 1px solid var(--catalog-line);
}

.hero-works-heading {
    max-width: 1338px;
    margin: 0 auto 26px;
    padding-top: 28px;
}

.hero-works-heading h2 {
    color: var(--catalog-ink);
    font-size: 23px;
    font-weight: 700;
    margin-bottom: 8px;
}

.hero-works-heading p {
    color: var(--catalog-muted);
    font-size: 14px;
}

.hero-showcase {
    display: grid;
    grid-template-columns: minmax(320px, 1fr) minmax(320px, 1fr) 320px;
    gap: 28px;
    max-width: 1338px;
    margin: 0 auto;
}

.hero-project-card,
.work-card {
    display: grid;
    grid-template-columns: 52% 1fr;
    gap: 22px;
    min-height: 226px;
    padding: 16px;
    border: 1px solid var(--catalog-line);
    border-radius: 8px;
    color: var(--catalog-text);
    background: rgba(255, 255, 255, 0.72);
    box-shadow: var(--catalog-shadow);
    overflow: hidden;
}

.hero-project-card:hover,
.work-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 22px 58px rgba(34, 57, 78, 0.12);
}

.hero-project-media,
.work-cover {
    min-height: 190px;
    border-radius: 6px;
    overflow: hidden;
    background: #e5eced;
}

.hero-project-media img,
.work-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-project-copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-project-copy span,
.work-meta,
.project-label {
    color: var(--catalog-blue);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
}

.hero-project-copy strong,
.work-title {
    display: block;
    color: var(--catalog-ink);
    font-size: 22px;
    font-weight: 700;
    line-height: 1.3;
    margin: 10px 0 12px;
}

.hero-project-copy p,
.work-desc {
    color: #627283;
    font-size: 14px;
    line-height: 1.75;
}

.hero-index-panel {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    padding: 22px;
    border: 1px solid transparent;
    border-radius: 8px;
    background: rgba(239, 245, 248, 0.72);
    box-shadow: var(--catalog-shadow);
}

.hero-index-panel > span {
    grid-column: 1 / -1;
    color: var(--catalog-blue);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 14px;
}

.hero-index-panel div {
    padding: 20px;
    border: 1px solid rgba(255, 255, 255, 0.72);
    background: rgba(255, 255, 255, 0.55);
}

.hero-index-panel strong {
    color: var(--catalog-ink);
    font-size: 22px;
    font-weight: 700;
}

.hero-index-panel p {
    color: #677789;
    font-size: 13px;
    margin-top: 8px;
}

#about,
#skills,
#experience,
#works,
#contact {
    border-bottom: 1px solid var(--catalog-line);
}

.about-content {
    display: grid;
    grid-template-columns: 310px 1fr;
    gap: 70px;
    align-items: stretch;
}

.about-photo-card,
.skill-card,
.timeline-item,
.about-proof-grid div,
.prd-card,
.scenario-grid > div,
.scope-columns > div,
.case-kpi-grid > div,
.case-breakpoint-list,
.case-narrative,
.summary-panel > div,
.workflow-grid > div,
.flow-steps > div {
    border: 1px solid var(--catalog-line);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.64);
    box-shadow: none;
}

.about-photo-card {
    min-height: 330px;
    padding: 28px;
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.74), rgba(229, 239, 244, 0.72));
}

.about-photo-card strong {
    color: var(--catalog-ink);
    font-size: 28px;
    font-weight: 600;
}

.about-text p {
    color: #536273;
    font-size: 16px;
    line-height: 2;
}

.about-proof-grid {
    grid-template-columns: 1fr;
}

.about-proof-grid div {
    padding: 16px 20px;
}

.about-proof-grid span {
    color: var(--catalog-blue);
    font-size: 12px;
    letter-spacing: 1px;
}

.skills-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.skill-card {
    min-height: 220px;
    padding: 22px;
}

.skill-card-title {
    color: var(--catalog-ink);
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 18px;
}

.skill-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.skill-tag {
    border: 1px solid rgba(95, 134, 167, 0.24);
    border-radius: 999px;
    color: #536273;
    background: rgba(255, 255, 255, 0.58);
    font-size: 13px;
}

.timeline {
    display: grid;
    gap: 14px;
}

.timeline-item {
    display: grid;
    grid-template-columns: 170px 180px 210px 1fr;
    gap: 22px;
    padding: 22px;
    align-items: start;
}

.timeline-period {
    color: var(--catalog-blue);
    font-size: 13px;
    letter-spacing: 0.5px;
}

.timeline-role,
.timeline-company {
    color: var(--catalog-ink);
    font-size: 17px;
    font-weight: 700;
}

.timeline-desc {
    color: #5d6d7e;
    line-height: 1.8;
}

.works-tabs {
    display: inline-flex;
    gap: 0;
    padding: 4px;
    border: 1px solid var(--catalog-line);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.52);
}

.works-tab {
    border-radius: 999px;
    color: #607184;
    background: transparent;
}

.works-tab.active {
    color: #fff;
    background: var(--catalog-blue-dark);
}

.works-panel.active {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
    margin-top: 26px;
}

.works-panel[data-panel="spatial"].active {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.works-panel .work-card {
    grid-template-columns: 1fr;
    min-height: 0;
}

.work-cover {
    display: grid;
    min-height: 240px;
    place-items: center;
    color: var(--catalog-blue-dark);
    font-size: 18px;
    font-weight: 700;
    background:
        linear-gradient(135deg, rgba(255,255,255,0.36), rgba(255,255,255,0)),
        #dfe9ee;
}

.work-info {
    padding: 6px 2px 4px;
}

#contact {
    text-align: left;
}

.contact-heading {
    color: var(--catalog-ink);
    font-size: clamp(34px, 5vw, 64px);
    font-weight: 700;
    letter-spacing: 0;
}

.contact-sub {
    max-width: 660px;
    color: #5d6d7e;
    font-size: 16px;
    line-height: 1.8;
}

.contact-links {
    justify-content: flex-start;
    gap: 16px;
}

.contact-link {
    display: inline-flex;
    align-items: center;
    min-height: 42px;
    padding: 0 20px;
    border: 1px solid var(--catalog-line);
    border-radius: 999px;
    color: var(--catalog-blue-dark);
    background: rgba(255, 255, 255, 0.64);
    letter-spacing: 0.5px;
}

footer {
    color: #6c7c8c;
    border-top: 0;
    background: rgba(238, 244, 246, 0.74);
}

.project-page-main {
    padding-top: 118px;
    background:
        linear-gradient(90deg, #fbfaf6 0%, #f6f3eb 42%, #eaf3f6 100%);
}

.project-detail {
    max-width: 1180px;
    padding: 0 36px 80px;
}

.project-back {
    display: inline-flex;
    margin-bottom: 28px;
    color: var(--catalog-blue);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
}

.project-intro {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 42px;
    padding: 28px;
    border: 1px solid var(--catalog-line);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.62);
}

.project-intro-copy p,
.project-section-header p,
.project-section p,
.project-section li {
    color: #586879;
    line-height: 1.9;
}

.project-actions {
    display: grid;
    align-content: start;
    gap: 12px;
}

.project-section {
    padding: 74px 0 0;
}

.project-section-header {
    max-width: 760px;
    margin-bottom: 26px;
}

.project-section-header h2 {
    color: var(--catalog-ink);
    font-size: 30px;
    font-weight: 700;
    letter-spacing: 0;
}

.project-hero {
    border: 1px solid var(--catalog-line);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.62);
    box-shadow: var(--catalog-shadow);
}

.case-gallery-card,
.case-gallery-item,
.lightbox-stage {
    border-radius: 8px;
}

@media (max-width: 1180px) {
    .home-page #hero.hero-curated {
        grid-template-columns: 1fr;
    }

    .hero-curated-intro {
        border-right: 0;
        border-bottom: 1px solid var(--catalog-line);
    }

    .hero-showcase {
        grid-template-columns: 1fr 1fr;
    }

    .hero-index-panel {
        grid-column: 1 / -1;
    }

    .skills-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .timeline-item {
        grid-template-columns: 160px 1fr;
    }

    .timeline-desc {
        grid-column: 1 / -1;
    }
}

@media (max-width: 768px) {
    .site-nav {
        padding: 0 16px;
    }

    .nav-inner {
        min-height: 64px;
    }

    .nav-links {
        left: 0;
        right: 0;
        border-radius: 8px;
        border: 1px solid var(--catalog-line);
        background: rgba(250, 249, 245, 0.96);
        box-shadow: var(--catalog-shadow);
    }

    section {
        padding: 64px 22px;
    }

    .home-page #hero.hero-curated {
        min-height: auto;
        padding-top: 64px;
    }

    .hero-curated-intro,
    .hero-path-panel {
        padding: 52px 22px 44px;
    }

    .hero-statement {
        font-size: 48px;
    }

    .hero-name {
        font-size: 54px;
    }

    .hero-name-en {
        font-size: 20px;
    }

    .hero-actions {
        align-items: stretch;
    }

    .hero-actions .hero-cta {
        width: auto;
        min-width: 0;
        flex: 1 1 auto;
        white-space: nowrap;
    }

    .hero-path,
    .hero-showcase,
    .skills-grid,
    .works-panel.active,
    .works-panel[data-panel="spatial"].active,
    .about-content,
    .project-intro {
        grid-template-columns: 1fr;
    }

    .hero-path::before {
        display: none;
    }

    .hero-path-item span {
        margin-left: 0;
        margin-right: 0;
    }

    .hero-path-item strong {
        margin-left: 0;
    }

    .hero-path-item p {
        text-align: left;
    }

    .hero-belief {
        display: block;
    }

    .hero-works {
        padding: 0 22px 42px;
    }

    .hero-project-card {
        grid-template-columns: 1fr;
    }

    .hero-index-panel {
        grid-template-columns: 1fr;
    }

    .timeline-item {
        grid-template-columns: 1fr;
    }

    .project-detail {
        padding: 0 22px 64px;
    }
}

/* ========== AI PM Dashboard Direction ========== */
:root {
    --dash-bg: #f7fbff;
    --dash-blue: #245b9b;
    --dash-ink: #10243a;
    --dash-text: #334a62;
    --dash-muted: #6f8194;
    --dash-line: rgba(31, 76, 119, 0.15);
    --dash-card: rgba(255, 255, 255, 0.82);
    --dash-shadow: 0 18px 50px rgba(20, 61, 102, 0.10);
}

body {
    color: var(--dash-text);
    background:
        radial-gradient(circle at 78% 14%, rgba(214, 232, 250, 0.58), transparent 30%),
        radial-gradient(circle at 28% 20%, rgba(255, 255, 255, 0.9), transparent 28%),
        linear-gradient(105deg, #ffffff 0%, #f6fbff 48%, #edf6ff 100%);
}

.site-nav {
    background: rgba(255, 255, 255, 0.88);
    border-bottom: 1px solid rgba(31, 76, 119, 0.12);
}

.nav-inner {
    min-height: 72px;
}

.logo {
    color: var(--dash-ink);
    font-size: 20px;
    letter-spacing: 2px;
}

.nav-links {
    gap: 44px;
}

.nav-links a {
    position: relative;
    color: #1b3654;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0;
}

.nav-links a::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -25px;
    height: 3px;
    background: transparent;
    border-radius: 999px;
}

.nav-links a:hover::after {
    background: var(--dash-blue);
}

.home-page #hero.hero-curated {
    grid-template-columns: minmax(430px, 44%) minmax(560px, 56%);
    max-width: 1440px;
    min-height: 560px;
    margin: 0 auto;
    padding: 72px 48px 0;
    border-bottom: 0;
    background:
        linear-gradient(90deg, transparent 0 44%, rgba(31, 76, 119, 0.10) 44%, rgba(31, 76, 119, 0.10) calc(44% + 1px), transparent calc(44% + 1px)),
        radial-gradient(circle at 78% 18%, rgba(226, 239, 251, 0.72), transparent 34%);
}

.hero-curated-intro {
    justify-content: center;
    padding: 54px 62px 48px 0;
    border-right: 0;
}

.hero-greeting {
    display: none;
}

.hero-name {
    color: var(--dash-ink);
    font-family: -apple-system, BlinkMacSystemFont, "PingFang SC", "Microsoft YaHei", sans-serif;
    font-size: clamp(64px, 5.4vw, 82px);
    font-weight: 800;
    line-height: 1;
    letter-spacing: 0;
    margin-bottom: 10px;
}

.hero-name-en {
    color: var(--dash-blue);
    font-size: clamp(36px, 3.6vw, 54px);
    font-weight: 400;
    letter-spacing: 0;
    line-height: 1.05;
    margin-bottom: 22px;
}

.hero-rule {
    width: 58px;
    height: 2px;
    margin-bottom: 24px;
    background: var(--dash-blue);
}

.hero-role {
    color: var(--dash-ink);
    font-size: 22px;
    font-weight: 800;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.hero-skill-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 22px;
}

.hero-skill-pills span {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 0 14px;
    border: 1px solid var(--dash-line);
    border-radius: 7px;
    color: #1b416b;
    background: rgba(255, 255, 255, 0.74);
    font-size: 14px;
    font-weight: 600;
}

.hero-tagline {
    max-width: 560px;
    color: #405772;
    font-size: 17px;
    line-height: 1.78;
    margin-bottom: 28px;
}

.hero-cta,
.project-action,
.prd-link {
    min-height: 56px;
    padding: 0 32px;
    border-radius: 7px;
    border-color: rgba(31, 76, 119, 0.22);
    background: linear-gradient(180deg, #2b5f9c, #183a63);
    box-shadow: 0 14px 28px rgba(20, 61, 102, 0.20);
    font-size: 16px;
    letter-spacing: 0;
}

.hero-cta-secondary,
.hero-cta-ghost,
.project-action:not(.project-action-primary) {
    color: var(--dash-ink);
    background: rgba(255, 255, 255, 0.72);
    box-shadow: none;
}

.hero-dashboard {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
    align-content: center;
    padding: 34px 0 34px 58px;
}

.hero-dash-card {
    min-height: 220px;
    padding: 22px 26px 20px;
    border: 1px solid rgba(31, 76, 119, 0.10);
    border-radius: 12px;
    background: var(--dash-card);
    box-shadow: var(--dash-shadow);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
}

.hero-dash-icon {
    display: grid;
    width: 44px;
    height: 44px;
    place-items: center;
    margin-bottom: 12px;
    border-radius: 50%;
    color: var(--dash-blue);
    background: #e3f0fb;
    font-size: 13px;
    font-weight: 800;
}

.hero-dash-card h2 {
    color: var(--dash-ink);
    font-size: 21px;
    font-weight: 800;
    margin: 0 0 14px;
}

.hero-dash-card ul {
    display: grid;
    gap: 8px;
    margin: 0 0 14px;
    list-style: none;
    padding-left: 0;
}

.hero-dash-card li {
    position: relative;
    padding-left: 22px;
    margin: 0;
    color: #2e4864;
    font-size: 14px;
    line-height: 1.4;
}

.hero-dash-card li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.72em;
    width: 8px;
    height: 4px;
    border-left: 2px solid var(--dash-blue);
    border-bottom: 2px solid var(--dash-blue);
    transform: rotate(-45deg);
}

.hero-dash-card a {
    display: inline-flex;
    color: var(--dash-blue);
    font-size: 15px;
    font-weight: 800;
}

.hero-dash-card a::after {
    content: " ->";
    margin-left: 8px;
}

.hero-stat-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    margin: 0 0 12px;
}

.hero-stat-row div {
    padding-right: 18px;
    border-right: 1px solid var(--dash-line);
}

.hero-stat-row div:last-child {
    border-right: 0;
}

.hero-stat-row strong {
    display: block;
    color: var(--dash-ink);
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 4px;
}

.hero-stat-row span,
.hero-dash-card p {
    margin: 0;
    color: var(--dash-muted);
    font-size: 14px;
    line-height: 1.75;
}

.hero-dash-card-contact {
    min-height: 0;
}

.hero-dash-card-contact p {
    color: #314963;
    font-size: 15px;
    line-height: 1.58;
}

.hero-dash-card-contact a {
    justify-content: center;
    min-width: 136px;
    min-height: 40px;
    padding: 0 18px;
    margin-top: 14px;
    border-radius: 6px;
    color: #fff;
    background: linear-gradient(180deg, #2b5f9c, #183a63);
}

.hero-dash-card-contact a::after {
    content: "";
}

.hero-works {
    max-width: 1440px;
    padding: 0 48px 34px;
    border-bottom: 1px solid rgba(31, 76, 119, 0.10);
}

.hero-works-heading {
    max-width: none;
    margin-bottom: 14px;
    padding-top: 0;
}

.hero-works-heading h2 {
    display: inline;
    color: var(--dash-ink);
    font-size: 24px;
    font-weight: 800;
}

.hero-works-heading p {
    display: inline;
    margin-left: 18px;
    color: var(--dash-muted);
    font-size: 14px;
}

.hero-showcase {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: none;
    gap: 24px;
}

.hero-project-card {
    grid-template-columns: 46% 1fr;
    min-height: 172px;
    padding: 0;
    border: 1px solid rgba(31, 76, 119, 0.14);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.82);
    box-shadow: 0 14px 36px rgba(20, 61, 102, 0.10);
}

.hero-project-media {
    min-height: 172px;
    border-radius: 10px 0 0 10px;
}

.hero-project-copy {
    padding: 28px 30px;
}

.hero-project-copy span {
    display: inline-flex;
    width: fit-content;
    padding: 4px 10px;
    border-radius: 999px;
    color: var(--dash-blue);
    background: #e6f1fb;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0;
}

.hero-project-copy strong {
    color: var(--dash-ink);
    font-size: 28px;
    font-weight: 800;
    margin: 12px 0;
}

.hero-project-copy p {
    color: #51667c;
    font-size: 14px;
    line-height: 1.7;
}

.section-title {
    color: var(--dash-blue);
}

.section-heading,
.contact-heading,
.project-section-header h2,
.project-detail .section-heading {
    color: var(--dash-ink);
}

@media (max-width: 1180px) {
    .home-page #hero.hero-curated {
        grid-template-columns: 1fr;
        background: transparent;
    }

    .hero-curated-intro {
        padding-right: 0;
    }

    .hero-dashboard {
        padding: 0 0 48px;
    }
}

@media (max-width: 768px) {
    .logo {
        font-size: 18px;
    }

    .nav-links a::after {
        display: none;
    }

    .home-page #hero.hero-curated {
        padding: 72px 22px 0;
    }

    .hero-curated-intro {
        padding: 50px 0 34px;
    }

    .hero-name {
        font-size: 58px;
    }

    .hero-name-en {
        font-size: 36px;
    }

    .hero-role {
        font-size: 18px;
    }

    .hero-skill-pills span {
        font-size: 13px;
    }

    .hero-actions .hero-cta {
        width: 100%;
        flex: 1 1 100%;
    }

    .hero-dashboard,
    .hero-showcase,
    .hero-project-card {
        grid-template-columns: 1fr;
    }

    .hero-dash-card {
        min-height: 0;
    }

    .hero-works {
        padding: 34px 22px;
    }

    .hero-works-heading h2,
    .hero-works-heading p {
        display: block;
        margin-left: 0;
        margin-top: 8px;
    }

    .hero-project-media {
        border-radius: 10px 10px 0 0;
    }
}

/* ========== Reference Layout: Sidebar Portfolio ========== */
.home-page {
    background:
        radial-gradient(circle at 18% 4%, rgba(255, 255, 255, 0.96), transparent 28%),
        radial-gradient(circle at 82% 8%, rgba(242, 248, 253, 0.82), transparent 34%),
        linear-gradient(112deg, #fbfaf7 0%, #ffffff 50%, #f5f9fc 100%);
}

.home-page .site-nav {
    display: none;
}

.home-side-rail {
    position: fixed;
    z-index: 90;
    inset: 0 auto 0 0;
    width: 128px;
    border-right: 1px solid rgba(35, 60, 82, 0.14);
    background: rgba(255, 255, 255, 0.76);
    backdrop-filter: blur(22px);
    -webkit-backdrop-filter: blur(22px);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.rail-logo {
    margin-top: 38px;
    color: #38546d;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 30px;
    line-height: 1;
}

.rail-dot {
    width: 7px;
    height: 7px;
    margin-top: 28px;
    border-radius: 50%;
    background: #7f9746;
}

.rail-nav {
    display: grid;
    gap: 42px;
    width: 100%;
    margin-top: auto;
    margin-bottom: auto;
}

.rail-nav a {
    position: relative;
    display: grid;
    justify-items: center;
    gap: 5px;
    color: #6f7f8d;
    font-size: 12px;
}

.rail-nav a.active::before {
    content: "";
    position: absolute;
    left: 59px;
    top: 14px;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #7f9746;
}

.rail-nav span {
    color: #70828f;
    font-size: 20px;
    line-height: 1;
}

.rail-nav strong {
    color: #566675;
    font-size: 13px;
    font-weight: 700;
}

.rail-nav small {
    color: #87929d;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1.4px;
}

.rail-footer {
    margin-bottom: 34px;
    color: #88939e;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.8px;
    line-height: 1.8;
    text-align: center;
}

.home-page section,
.home-page footer {
    margin-left: 128px;
}

.home-page #hero.hero-reference {
    display: grid;
    grid-template-columns: minmax(480px, 1.05fr) minmax(520px, 0.95fr);
    gap: 68px;
    max-width: 1310px;
    min-height: 455px;
    padding: 68px 72px 26px;
    margin-left: 128px;
    border-bottom: 0;
    background: transparent;
}

.hero-reference .hero-curated-intro {
    padding: 0;
    align-self: end;
    border: 0;
}

.hero-reference .hero-name {
    color: #132437;
    font-family: -apple-system, BlinkMacSystemFont, "PingFang SC", "Microsoft YaHei", sans-serif;
    font-size: 72px;
    font-weight: 800;
    line-height: 1;
    letter-spacing: 0;
    margin: 0 0 18px;
}

.hero-reference .hero-name-en {
    color: #46627b;
    font-size: 32px;
    font-weight: 700;
    letter-spacing: 14px;
    line-height: 1;
    margin: 0 0 30px;
}

.hero-reference .hero-role {
    color: #2e577e;
    font-size: 22px;
    font-weight: 800;
    letter-spacing: 2px;
    margin: 0 0 12px;
}

.hero-one-line {
    color: #607184;
    font-size: 15px;
    line-height: 1.8;
    margin: 0 0 22px;
}

.hero-reference .hero-skill-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 0 0 34px;
}

.hero-reference .hero-skill-pills span {
    min-height: 30px;
    padding: 0 16px;
    border: 1px solid rgba(57, 82, 104, 0.18);
    border-radius: 5px;
    color: #617181;
    background: rgba(255, 255, 255, 0.6);
    font-size: 13px;
    font-weight: 700;
}

.hero-reference .hero-actions {
    align-items: center;
    gap: 38px;
}

.hero-reference .hero-cta {
    min-width: 192px;
    min-height: 54px;
    padding: 0 26px;
    border: 0;
    border-radius: 7px;
    color: #fff;
    background: linear-gradient(135deg, #456b8d, #1e4165);
    box-shadow: 0 16px 28px rgba(31, 65, 101, 0.18);
}

.hero-reference .hero-cta span {
    margin-left: 24px;
}

.hero-text-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #6b8194;
    font-size: 14px;
    font-weight: 700;
}

.hero-reference-aside {
    align-self: end;
}

.hero-reference-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0;
    margin-bottom: 58px;
}

.hero-reference-stats div {
    min-height: 100px;
    padding: 0 32px;
    border-right: 1px solid rgba(57, 82, 104, 0.14);
    text-align: center;
}

.hero-reference-stats div:last-child {
    border-right: 0;
}

.hero-reference-stats span {
    display: block;
    color: #7d9844;
    font-size: 28px;
    line-height: 1;
    margin-bottom: 18px;
}

.hero-reference-stats strong {
    display: block;
    color: #14263a;
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 10px;
}

.hero-reference-stats p {
    color: #6c7d8c;
    font-size: 13px;
    line-height: 1.45;
    margin: 0;
}

.hero-quote-card {
    display: grid;
    grid-template-columns: 42px 1fr;
    align-items: center;
    min-height: 120px;
    padding: 24px 36px;
    border-radius: 10px;
    background: rgba(239, 244, 248, 0.88);
    box-shadow: 0 18px 45px rgba(35, 60, 82, 0.06);
}

.hero-quote-card span {
    color: #43617b;
    font-size: 54px;
    line-height: 1;
    font-family: Georgia, serif;
}

.hero-quote-card p {
    color: #3d4f61;
    font-size: 15px;
    font-weight: 700;
    line-height: 2;
    margin: 0;
}

.home-page #hero-works.hero-works {
    max-width: 1310px;
    padding: 28px 72px 48px;
    margin-left: 128px;
    border-bottom: 0;
}

.home-page .hero-works-heading {
    display: flex;
    align-items: center;
    gap: 22px;
    margin: 0 0 22px;
}

.home-page .hero-works-heading::after {
    content: "";
    height: 1px;
    flex: 1;
    background: rgba(57, 82, 104, 0.22);
}

.home-page .hero-works-heading h2 {
    color: #172a3f;
    font-size: 25px;
    font-weight: 800;
    letter-spacing: 2px;
}

.home-page .hero-works-heading p {
    display: inline;
    margin-left: 18px;
    color: #9aa7b2;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 5px;
}

.home-page .hero-showcase {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
    max-width: none;
}

.home-page .hero-project-card {
    display: grid;
    grid-template-columns: 42% 58%;
    min-height: 360px;
    padding: 0;
    border: 1px solid rgba(57, 82, 104, 0.15);
    border-radius: 6px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.76);
    box-shadow: none;
}

.home-page .hero-project-card:nth-child(2) {
    grid-template-columns: 38% 62%;
    background: rgba(246, 251, 255, 0.8);
}

.home-page .hero-project-copy {
    position: static;
    z-index: auto;
    order: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 36px 34px;
    color: #172a3f;
}

.home-page .hero-project-media {
    position: relative;
    inset: auto;
    order: 2;
    min-height: 360px;
    border-radius: 0;
    overflow: hidden;
    background: #eef5fa;
}

.home-page .hero-project-media::after {
    display: none;
}

.home-page .hero-project-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.home-page .home-media-jiaplus {
    background: #f3efe7;
}

.home-page .home-media-jiaplus .project-main-room {
    position: absolute;
    top: 0;
    left: -14%;
    width: 128%;
    height: auto;
    object-fit: contain;
    filter: saturate(0.96) brightness(1.03);
}

.project-compare-line {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 2px;
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 0 0 1px rgba(76, 97, 70, 0.05);
}

.project-compare-handle {
    position: absolute;
    left: 50%;
    top: 46%;
    display: grid;
    width: 34px;
    height: 34px;
    place-items: center;
    border: 2px solid rgba(255, 255, 255, 0.95);
    border-radius: 50%;
    color: #fff;
    background: #8aa35a;
    box-shadow: 0 8px 18px rgba(44, 62, 80, 0.18);
    font-size: 15px;
    font-weight: 800;
    transform: translate(-50%, -50%);
}

.project-mini-preview {
    position: absolute;
    left: 3%;
    right: 3%;
    bottom: -1px;
    width: 94% !important;
    height: auto !important;
    max-height: 118px;
    object-fit: contain !important;
    object-position: top center;
    border-radius: 12px 12px 0 0;
    box-shadow: 0 -10px 30px rgba(35, 60, 82, 0.16);
    opacity: 0.96;
}

.home-page .home-media-exhibition {
    background:
        radial-gradient(circle at 60% 46%, rgba(255, 255, 255, 0.78), transparent 34%),
        linear-gradient(135deg, #f8fbfd, #e8f2fb);
}

.home-page .home-media-exhibition .phone-shot {
    position: absolute;
    top: 28px;
    width: 30%;
    height: auto;
    max-height: 318px;
    object-fit: contain;
    object-position: top center;
    border: 8px solid #161c20;
    border-radius: 30px;
    background: #f7f4ed;
    box-shadow: 0 18px 28px rgba(22, 36, 50, 0.24);
}

.home-page .phone-shot-main {
    left: 8%;
    z-index: 3;
    transform: rotate(-2deg);
}

.home-page .phone-shot-mid {
    left: 35%;
    z-index: 2;
    transform: rotate(1deg);
}

.home-page .phone-shot-end {
    left: 62%;
    z-index: 1;
    transform: rotate(3deg);
}

.home-page #works .work-media-showcase {
    position: relative;
    display: block;
    min-height: 360px;
    overflow: hidden;
    border-radius: 6px;
}

.home-page #works .work-media-showcase::after {
    display: none;
}

.home-page #works .work-media-showcase .project-main-room {
    top: 0;
    left: -4%;
    width: 108%;
}

.home-page #works .work-media-showcase .project-mini-preview {
    width: 90% !important;
    left: 5%;
    right: 5%;
    max-height: 118px;
}

.home-page #works .work-media-showcase .phone-shot {
    top: 20px;
    width: 28%;
    max-height: 318px;
}

.home-page #works .work-media-showcase .phone-shot-main {
    left: 8%;
}

.home-page #works .work-media-showcase .phone-shot-mid {
    left: 36%;
}

.home-page #works .work-media-showcase .phone-shot-end {
    left: 64%;
}

.home-page .hero-project-copy span {
    display: none;
}

.home-page .hero-project-copy strong {
    color: #172a3f;
    font-size: 33px;
    font-weight: 700;
    line-height: 1.2;
    margin: 0 0 12px;
}

.home-page .hero-project-copy em {
    color: #30485f;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    margin-bottom: 24px;
}

.home-page .hero-project-copy p {
    color: #5d7183;
    font-size: 14px;
    line-height: 1.9;
    margin: 0 0 28px;
}

.project-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 36px;
}

.project-tags b {
    padding: 5px 10px;
    border-radius: 4px;
    color: #6a7c8d;
    background: rgba(49, 76, 101, 0.08);
    font-size: 11px;
    font-weight: 700;
}

.home-page .hero-project-copy i {
    color: #486783;
    font-size: 14px;
    font-style: normal;
    font-weight: 800;
}

.home-collab-strip {
    display: grid;
    grid-template-columns: 44px 100px 1fr 1fr auto;
    gap: 22px;
    align-items: center;
    min-height: 72px;
    margin-top: 36px;
    padding: 0 38px;
    border-radius: 6px;
    background: rgba(249, 248, 244, 0.78);
}

.home-collab-strip span {
    color: #7d9844;
    font-size: 28px;
}

.home-collab-strip strong {
    color: #30485f;
    font-size: 16px;
}

.home-collab-strip p,
.home-collab-strip a {
    color: #72818f;
    font-size: 14px;
    margin: 0;
}

.home-collab-strip a {
    color: #7d9844;
    font-weight: 800;
}

@media (max-width: 1180px) {
    .home-side-rail {
        display: none;
    }

    .home-page section,
    .home-page footer,
    .home-page #hero.hero-reference,
    .home-page #hero-works.hero-works {
        margin-left: auto;
    }

    .home-page .site-nav {
        display: block;
    }

    .home-page #hero.hero-reference {
        grid-template-columns: 1fr;
        padding-top: 110px;
    }
}

@media (max-width: 768px) {
    .home-page #hero.hero-reference,
    .home-page #hero-works.hero-works {
        padding-left: 22px;
        padding-right: 22px;
    }

    .hero-reference .hero-name {
        font-size: 58px;
    }

    .hero-reference .hero-name-en {
        font-size: 20px;
        letter-spacing: 8px;
    }

    .hero-reference-stats,
    .home-page .hero-showcase,
    .home-page .hero-project-card,
    .home-page .hero-project-card:nth-child(2),
    .home-collab-strip {
        grid-template-columns: 1fr;
    }

    .hero-reference-stats div {
        border-right: 0;
        border-bottom: 1px solid rgba(57, 82, 104, 0.14);
        padding: 18px 0;
    }

    .hero-quote-card {
        grid-template-columns: 1fr;
    }
}

/* ========== Final Warm Alignment Override ========== */
.home-page,
body {
    background:
        radial-gradient(circle at 18% 8%, rgba(255, 255, 255, 0.88), transparent 30%),
        radial-gradient(circle at 80% 18%, rgba(245, 238, 224, 0.84), transparent 32%),
        linear-gradient(112deg, #fbf8f0 0%, #f8f2e7 48%, #f1eadc 100%) !important;
}

.home-page #works {
    width: calc(100% - 128px);
    max-width: none;
    margin-left: 128px;
    margin-right: 0;
    padding-left: 72px;
    padding-right: 72px;
}

.home-page #works .works-panel.active {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
}

.home-page .section-title,
.home-page .work-meta,
.home-page .hero-works-heading p,
.home-page .works-tab,
.home-page .tab-count,
.home-page .hero-reference .hero-name-en,
.home-page .hero-reference .hero-role {
    color: #6f684a !important;
}

.home-page .works-tab.active,
.home-page .hero-reference .hero-cta {
    color: #fff !important;
    background: linear-gradient(135deg, #858164, #6f694d) !important;
    box-shadow: 0 16px 28px rgba(98, 82, 58, 0.16) !important;
}

.home-page .works-tabs,
.home-page .work-card,
.home-page .hero-project-card,
.home-page .hero-reference .hero-skill-pills span,
.home-page .contact-link,
.home-page .skill-tag {
    border-color: rgba(98, 82, 58, 0.16) !important;
}

.home-page .work-card,
.home-page .hero-project-card,
.home-page .hero-quote-card,
.home-page .home-collab-strip {
    background: rgba(255, 252, 246, 0.72) !important;
}

.home-page .hero-quote-card {
    background: rgba(240, 232, 217, 0.9) !important;
}

.home-page .work-title,
.home-page .section-heading,
.home-page .hero-reference .hero-name,
.home-page .contact-heading,
.home-page .logo,
.home-page .rail-logo {
    color: #2f2a22 !important;
}

.home-page .work-desc,
.home-page .hero-one-line,
.home-page .hero-text-link,
.home-page .contact-sub {
    color: #675b4b !important;
}

.home-page .home-media-jiaplus,
.home-page #works .home-media-jiaplus,
.home-page .home-media-exhibition,
.home-page #works .home-media-exhibition {
    background: #efe6d6 !important;
}

.home-page .home-media-exhibition,
.home-page #works .home-media-exhibition {
    background:
        radial-gradient(circle at 52% 42%, rgba(255, 255, 255, 0.72), transparent 34%),
        linear-gradient(135deg, #f9f5eb, #eee3d1) !important;
}

.home-page .project-compare-handle,
.home-page .rail-dot,
.home-page .rail-nav a.active::before {
    background: #7d8a55 !important;
}

.home-page .project-compare-line {
    background: rgba(255, 252, 246, 0.92) !important;
}

@media (max-width: 1180px) {
    .home-page #works {
        width: auto;
        margin-left: auto;
    }
}

/* ========== Final Centering Fix ========== */
@media (min-width: 1181px) {
    .home-page {
        --rail-width: 128px;
        --content-max: 1310px;
        --content-width: min(var(--content-max), calc(100vw - var(--rail-width) - 96px));
        --content-left: calc(var(--rail-width) + (100vw - var(--rail-width) - var(--content-width)) / 2);
    }

    .home-page #hero.hero-reference,
    .home-page #hero-works.hero-works,
    .home-page #works,
    .home-page #about,
    .home-page #skills,
    .home-page #experience,
    .home-page #contact,
    .home-page footer {
        width: var(--content-width) !important;
        max-width: var(--content-max) !important;
        margin-left: var(--content-left) !important;
        margin-right: 0 !important;
        padding-left: 0 !important;
        padding-right: 0 !important;
    }

    .home-page #hero.hero-reference {
        padding-top: 68px !important;
        padding-bottom: 26px !important;
    }

    .home-page #hero-works.hero-works {
        padding-top: 28px !important;
        padding-bottom: 48px !important;
    }

    .home-page #works {
        padding-top: 88px !important;
        padding-bottom: 88px !important;
    }
}

/* ========== Warm Card System Polish ========== */
:root {
    --warm-page: #f5efe4;
    --warm-card: #fffaf1;
    --warm-card-2: #f1e6d4;
    --warm-card-3: #eadcc6;
    --warm-border: rgba(118, 96, 64, 0.20);
    --warm-ink: #2f2a22;
    --warm-text: #6b5f4f;
    --warm-soft: #9a8c78;
    --warm-olive: #76804c;
    --warm-shadow: 0 22px 58px rgba(93, 73, 44, 0.10);
}

.home-page,
body {
    background:
        radial-gradient(circle at 18% 10%, rgba(255, 255, 255, 0.78), transparent 28%),
        radial-gradient(circle at 88% 14%, rgba(237, 222, 196, 0.78), transparent 34%),
        linear-gradient(112deg, #fbf8f1 0%, var(--warm-page) 52%, #eee2d0 100%) !important;
}

.home-side-rail {
    background: rgba(255, 250, 241, 0.86);
    border-right-color: var(--warm-border);
    box-shadow: 10px 0 34px rgba(93, 73, 44, 0.035);
}

.home-page .hero-quote-card,
.home-page .home-collab-strip,
.home-page .work-card,
.home-page .hero-project-card,
.home-page .skill-card,
.home-page .about-photo-card,
.home-page .about-proof-grid div,
.home-page .timeline-item,
.home-page .project-intro,
.home-page .prd-card,
.home-page .scenario-grid > div,
.home-page .scope-columns > div,
.home-page .case-kpi-grid > div {
    border: 1px solid var(--warm-border) !important;
    background:
        linear-gradient(145deg, rgba(255, 252, 246, 0.96), rgba(246, 239, 227, 0.88)) !important;
    box-shadow: var(--warm-shadow) !important;
}

.home-page .hero-quote-card {
    background:
        linear-gradient(135deg, rgba(238, 226, 207, 0.94), rgba(246, 239, 226, 0.86)) !important;
}

.home-page .work-card {
    position: relative;
    overflow: hidden;
    border-radius: 10px !important;
}

.home-page .work-card::before {
    content: "";
    position: absolute;
    inset: 0 auto 0 0;
    width: 5px;
    background: linear-gradient(180deg, #8a8d58, #c9b38f);
    opacity: 0.9;
}

.home-page .work-info,
.home-page .hero-project-copy {
    background:
        radial-gradient(circle at 12% 10%, rgba(255, 255, 255, 0.72), transparent 32%),
        linear-gradient(150deg, #fffaf1, #f4ead8) !important;
}

.home-page .home-media-jiaplus,
.home-page #works .home-media-jiaplus {
    background:
        linear-gradient(135deg, rgba(237, 221, 196, 0.88), rgba(225, 210, 185, 0.9)) !important;
}

.home-page .home-media-exhibition,
.home-page #works .home-media-exhibition {
    background:
        radial-gradient(circle at 48% 40%, rgba(255, 253, 247, 0.88), transparent 34%),
        linear-gradient(135deg, #f3eadb, #dfcfb8) !important;
}

.home-page .work-title,
.home-page .hero-project-copy strong,
.home-page .section-heading,
.home-page .contact-heading,
.home-page .hero-reference .hero-name {
    color: var(--warm-ink) !important;
}

.home-page .work-desc,
.home-page .hero-project-copy p,
.home-page .about-text p,
.home-page .timeline-desc,
.home-page .contact-sub,
.home-page .skill-tag {
    color: var(--warm-text) !important;
}

.home-page .section-title,
.home-page .work-meta,
.home-page .hero-works-heading p,
.home-page .rail-nav small {
    color: var(--warm-olive) !important;
}

.home-page .project-tags b,
.home-page .skill-tag {
    border: 1px solid rgba(118, 96, 64, 0.14) !important;
    background: rgba(246, 237, 223, 0.78) !important;
    color: #76664f !important;
}

.home-page .works-tabs {
    background: rgba(255, 250, 241, 0.72) !important;
    border-color: var(--warm-border) !important;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.75);
}

.home-page .works-tab.active,
.home-page .hero-reference .hero-cta,
.home-page .contact-link:hover {
    background: linear-gradient(135deg, #817b54, #5f6440) !important;
}

.home-page .skill-card {
    border-radius: 10px !important;
    min-height: 230px;
}

.home-page .skill-card::before {
    content: "";
    display: block;
    width: 42px;
    height: 3px;
    margin-bottom: 18px;
    border-radius: 999px;
    background: #9a9a67;
}

.home-page .about-photo-card {
    background:
        linear-gradient(145deg, rgba(255, 250, 241, 0.86), rgba(234, 220, 199, 0.82)),
        radial-gradient(circle at 34% 18%, rgba(255, 255, 255, 0.76), transparent 36%) !important;
}

.home-page .about-photo-card span,
.home-page .about-proof-grid span {
    color: var(--warm-olive) !important;
}

.home-page .about-proof-grid div {
    box-shadow: 0 14px 34px rgba(93, 73, 44, 0.055) !important;
}

.home-page .timeline-item {
    box-shadow: 0 14px 34px rgba(93, 73, 44, 0.055) !important;
}

.home-page .timeline-period {
    color: var(--warm-olive) !important;
}

.home-page .home-collab-strip {
    background:
        linear-gradient(90deg, rgba(255, 250, 241, 0.92), rgba(239, 226, 206, 0.78)) !important;
}

.home-page .home-collab-strip span {
    background: #8a8d58 !important;
    color: #f8f1e7 !important;
    display: grid;
    width: 42px;
    height: 42px;
    place-items: center;
    border-radius: 4px;
}

.home-page .about-text p:first-child::first-letter {
    color: #8a8d58 !important;
    text-shadow: none !important;
}

.home-page .about-photo-card strong,
.home-page .about-proof-grid strong,
.home-page .skill-card-title,
.home-page .timeline-role,
.home-page .timeline-company {
    color: #2f2a22 !important;
}

.home-page .about-photo-card small,
.home-page .about-proof-grid span,
.home-page .timeline-period {
    color: #7f784f !important;
}

.home-page #about,
.home-page #skills,
.home-page #experience,
.home-page #works,
.home-page #contact {
    border-bottom-color: rgba(118, 96, 64, 0.14) !important;
}

.home-page #about::before,
.home-page #skills::before,
.home-page #experience::before,
.home-page #works::before {
    content: "";
    display: block;
    width: 100%;
    height: 1px;
    margin-bottom: 76px;
    background: linear-gradient(90deg, transparent, rgba(118, 96, 64, 0.22), transparent);
}

.home-page #works::before {
    display: none;
}

/* ========== Soft Ivory Final Pass ========== */
:root {
    --soft-page: #f8f5ee;
    --soft-panel: #fffdf8;
    --soft-panel-2: #f4eee4;
    --soft-media: #eee7dc;
    --soft-line: rgba(112, 94, 66, 0.14);
    --soft-ink: #312d26;
    --soft-text: #6f665b;
    --soft-muted: #9a9185;
    --soft-olive: #81875b;
    --soft-shadow: 0 18px 46px rgba(91, 74, 49, 0.075);
}

body,
.home-page,
.project-page-main {
    background:
        radial-gradient(circle at 18% 10%, rgba(255, 255, 255, 0.86), transparent 30%),
        radial-gradient(circle at 86% 16%, rgba(241, 234, 222, 0.62), transparent 36%),
        linear-gradient(112deg, #fffdf8 0%, var(--soft-page) 54%, #f2ebe1 100%) !important;
}

.home-side-rail {
    background: rgba(255, 253, 248, 0.88) !important;
    border-right-color: var(--soft-line) !important;
}

.home-page .work-card,
.home-page .hero-project-card,
.home-page .skill-card,
.home-page .about-photo-card,
.home-page .about-proof-grid div,
.home-page .timeline-item,
.home-page .hero-quote-card,
.home-page .home-collab-strip,
.project-intro,
.project-action,
.project-hero,
.case-kpi-grid > div,
.case-narrative,
.case-breakpoint-list,
.scenario-grid > div,
.scope-columns > div,
.prd-card,
.flow-steps > div,
.workflow-grid > div,
.summary-panel > div,
.case-gallery-card,
.case-gallery-item {
    border-color: var(--soft-line) !important;
    background:
        linear-gradient(145deg, rgba(255, 253, 248, 0.96), rgba(247, 242, 234, 0.9)) !important;
    box-shadow: var(--soft-shadow) !important;
}

.home-page .work-info,
.home-page .hero-project-copy {
    background:
        radial-gradient(circle at 16% 8%, rgba(255, 255, 255, 0.8), transparent 32%),
        linear-gradient(150deg, #fffdf8, #f6f0e7) !important;
}

.home-page .home-media-jiaplus,
.home-page #works .home-media-jiaplus,
.home-page .home-media-exhibition,
.home-page #works .home-media-exhibition {
    background:
        radial-gradient(circle at 50% 38%, rgba(255, 255, 255, 0.58), transparent 34%),
        linear-gradient(145deg, #f5efe5, var(--soft-media)) !important;
}

.home-page .home-media-jiaplus .project-main-room,
.home-page #works .work-media-showcase .project-main-room {
    top: 34px !important;
    left: 50% !important;
    width: 94% !important;
    height: auto !important;
    transform: translateX(-50%) !important;
    object-fit: contain !important;
    object-position: center center !important;
    border-radius: 6px;
}

.home-page .home-media-exhibition .phone-shot,
.home-page #works .work-media-showcase .phone-shot {
    top: 46px !important;
}

.home-page .phone-shot-main,
.home-page #works .work-media-showcase .phone-shot-main {
    left: 8% !important;
}

.home-page .phone-shot-mid,
.home-page #works .work-media-showcase .phone-shot-mid {
    left: 35.5% !important;
}

.home-page .phone-shot-end,
.home-page #works .work-media-showcase .phone-shot-end {
    left: 63% !important;
}

.project-compare-line {
    top: 34px !important;
    bottom: 88px !important;
    background: rgba(255, 253, 248, 0.9) !important;
}

.project-compare-handle {
    top: 48% !important;
    background: var(--soft-olive) !important;
}

.home-page .section-title,
.home-page .work-meta,
.home-page .hero-works-heading p,
.home-page .rail-nav small,
.project-label,
.project-back,
.timeline-period {
    color: var(--soft-olive) !important;
}

.home-page .work-title,
.home-page .section-heading,
.home-page .hero-reference .hero-name,
.home-page .skill-card-title,
.project-section-header h2,
.project-detail .section-heading,
.project-section h3 {
    color: var(--soft-ink) !important;
}

.home-page .work-desc,
.home-page .hero-project-copy p,
.home-page .about-text p,
.home-page .contact-sub,
.project-intro-copy p,
.project-section p,
.project-section li,
.timeline-desc {
    color: var(--soft-text) !important;
}

.home-page .project-tags b,
.home-page .skill-tag {
    background: rgba(247, 241, 232, 0.8) !important;
    border-color: var(--soft-line) !important;
    color: #716657 !important;
}

.home-page .works-tab.active,
.home-page .hero-reference .hero-cta,
.project-action-primary,
.prd-link {
    background: linear-gradient(135deg, #8a8966, #71764f) !important;
}

/* ========== Pale Ivory Global Correction ========== */
:root {
    --pale-bg: #faf8f3;
    --pale-bg-2: #f5f1e9;
    --pale-card: #fffdf8;
    --pale-card-2: #f8f4ec;
    --pale-media: #f0e9dd;
    --pale-line: rgba(90, 78, 61, 0.13);
    --pale-ink: #302d27;
    --pale-text: #6d665b;
    --pale-muted: #958d80;
    --pale-accent: #747a51;
    --pale-accent-2: #8b8f62;
    --pale-shadow: 0 16px 42px rgba(67, 55, 38, 0.055);
}

body,
.home-page,
.project-page-main {
    background:
        radial-gradient(circle at 16% 8%, rgba(255, 255, 255, 0.9), transparent 32%),
        radial-gradient(circle at 88% 14%, rgba(239, 233, 222, 0.42), transparent 38%),
        linear-gradient(112deg, #ffffff 0%, var(--pale-bg) 52%, var(--pale-bg-2) 100%) !important;
    color: var(--pale-text) !important;
}

.site-nav,
.home-side-rail {
    background: rgba(255, 253, 248, 0.9) !important;
    border-color: var(--pale-line) !important;
}

.nav-links a,
.logo,
.project-back,
.section-title,
.project-label,
.work-meta,
.timeline-period,
.home-page .section-title,
.home-page .hero-works-heading p,
.home-page .rail-nav small {
    color: var(--pale-accent) !important;
}

.nav-links a:hover,
.contact-link:hover {
    color: var(--pale-ink) !important;
}

.nav-links a::after {
    background: transparent !important;
}

.nav-links a:hover::after {
    background: var(--pale-accent) !important;
}

.hero-reference .hero-name,
.home-page .hero-reference .hero-name,
.section-heading,
.contact-heading,
.work-title,
.skill-card-title,
.timeline-role,
.timeline-company,
.project-detail .section-heading,
.project-section-header h2,
.project-section h3,
.project-intro strong,
.case-kpi-grid strong {
    color: var(--pale-ink) !important;
}

.hero-reference .hero-name-en,
.hero-reference .hero-role,
.hero-one-line,
.work-desc,
.about-text p,
.timeline-desc,
.contact-sub,
.project-intro-copy p,
.project-section p,
.project-section li,
.case-kpi-grid p {
    color: var(--pale-text) !important;
}

.home-page .work-card,
.home-page .hero-project-card,
.home-page .skill-card,
.home-page .about-photo-card,
.home-page .about-proof-grid div,
.home-page .timeline-item,
.home-page .hero-quote-card,
.home-page .home-collab-strip,
.project-intro,
.project-action,
.project-hero,
.case-kpi-grid > div,
.case-narrative,
.case-breakpoint-list,
.scenario-grid > div,
.scope-columns > div,
.prd-card,
.flow-steps > div,
.workflow-grid > div,
.summary-panel > div,
.case-gallery-card,
.case-gallery-item {
    border-color: var(--pale-line) !important;
    background:
        linear-gradient(145deg, rgba(255, 253, 248, 0.98), rgba(249, 245, 238, 0.92)) !important;
    box-shadow: var(--pale-shadow) !important;
}

.home-page .work-info,
.home-page .hero-project-copy {
    background:
        radial-gradient(circle at 12% 8%, rgba(255, 255, 255, 0.85), transparent 34%),
        linear-gradient(150deg, #fffdf9, #f8f3ea) !important;
}

.home-page .home-media-jiaplus,
.home-page #works .home-media-jiaplus,
.home-page .home-media-exhibition,
.home-page #works .home-media-exhibition {
    background:
        radial-gradient(circle at 50% 42%, rgba(255, 255, 255, 0.66), transparent 34%),
        linear-gradient(145deg, #f8f3ea, var(--pale-media)) !important;
}

.home-page .home-media-jiaplus .project-main-room,
.home-page #works .work-media-showcase .project-main-room {
    top: 58px !important;
    left: 50% !important;
    width: 88% !important;
    height: auto !important;
    transform: translateX(-50%) !important;
    object-fit: contain !important;
    object-position: center center !important;
}

.home-page .home-media-exhibition .phone-shot,
.home-page #works .work-media-showcase .phone-shot {
    top: 68px !important;
}

.project-compare-line {
    top: 58px !important;
    bottom: 74px !important;
    background: rgba(255, 253, 248, 0.92) !important;
}

.project-compare-handle,
.rail-dot,
.rail-nav a.active::before,
.home-page .project-compare-handle,
.home-page .rail-dot,
.home-page .rail-nav a.active::before {
    background: var(--pale-accent-2) !important;
}

.hero-reference .hero-cta,
.home-page .hero-reference .hero-cta,
.works-tab.active,
.home-page .works-tab.active,
.project-action-primary,
.prd-link {
    color: #fff !important;
    background: linear-gradient(135deg, #8c8a69, #727655) !important;
    box-shadow: 0 14px 26px rgba(88, 76, 52, 0.13) !important;
}

.skill-tag,
.project-tags b,
.home-page .skill-tag,
.home-page .project-tags b {
    border-color: var(--pale-line) !important;
    color: #6f6657 !important;
    background: rgba(250, 246, 239, 0.82) !important;
}

.home-page .work-card::before {
    background: linear-gradient(180deg, #8c8f66, #d3c5ad) !important;
    opacity: 0.72 !important;
}

/* ========== Selected Works Card Layout Final ========== */
.home-page #works .works-panel.active {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 28px !important;
}

.home-page #works .work-card {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 0 !important;
    min-height: 0 !important;
    padding: 16px !important;
    border-radius: 10px !important;
    background:
        linear-gradient(145deg, rgba(255, 253, 248, 0.98), rgba(249, 245, 238, 0.92)) !important;
}

.home-page #works .work-card::before {
    width: 5px !important;
}

.home-page #works .work-media-showcase {
    order: 0 !important;
    min-height: 360px !important;
    width: 100% !important;
    border-radius: 8px !important;
    background:
        radial-gradient(circle at 50% 42%, rgba(255, 255, 255, 0.68), transparent 34%),
        linear-gradient(145deg, #f8f3ea, #eee7dc) !important;
}

.home-page #works .work-info {
    order: 1 !important;
    padding: 28px 4px 8px !important;
    background: transparent !important;
}

.home-page #works .work-media-showcase .project-main-room {
    top: 50% !important;
    left: 50% !important;
    width: 88% !important;
    height: auto !important;
    max-height: 82% !important;
    transform: translate(-50%, -50%) !important;
    object-fit: contain !important;
    border-radius: 7px !important;
}

.home-page #works .work-media-showcase .project-compare-line {
    top: 50px !important;
    bottom: 50px !important;
}

.home-page #works .work-media-showcase .project-compare-handle {
    top: 50% !important;
}

.home-page #works .work-media-showcase .phone-shot {
    top: 50% !important;
    width: 27% !important;
    max-height: 315px !important;
}

.home-page #works .work-media-showcase .phone-shot-main {
    left: 12% !important;
    transform: translateY(-50%) rotate(-2deg) !important;
}

.home-page #works .work-media-showcase .phone-shot-mid {
    left: 36.5% !important;
    transform: translateY(-50%) rotate(1deg) !important;
}

.home-page #works .work-media-showcase .phone-shot-end {
    left: 61% !important;
    transform: translateY(-50%) rotate(3deg) !important;
}

/* ========== Project Pages Pale Card Unification ========== */
body:not(.home-page) {
    background:
        radial-gradient(circle at 18% 8%, rgba(255, 255, 255, 0.9), transparent 32%),
        radial-gradient(circle at 88% 14%, rgba(239, 233, 222, 0.42), transparent 38%),
        linear-gradient(112deg, #ffffff 0%, #faf8f3 52%, #f5f1e9 100%) !important;
    color: #6d665b !important;
}

body:not(.home-page) .site-nav {
    background: rgba(255, 253, 248, 0.92) !important;
    border-bottom-color: rgba(90, 78, 61, 0.13) !important;
}

body:not(.home-page) .logo,
body:not(.home-page) .nav-links a,
body:not(.home-page) .section-title,
body:not(.home-page) .project-label,
body:not(.home-page) .project-back,
body:not(.home-page) .timeline-period,
body:not(.home-page) .work-meta {
    color: #747a51 !important;
}

body:not(.home-page) .project-intro,
body:not(.home-page) .project-action,
body:not(.home-page) .project-hero,
body:not(.home-page) .case-kpi-grid > div,
body:not(.home-page) .case-narrative,
body:not(.home-page) .case-breakpoint-list,
body:not(.home-page) .scenario-grid > div,
body:not(.home-page) .scope-columns > div,
body:not(.home-page) .prd-card,
body:not(.home-page) .flow-steps > div,
body:not(.home-page) .workflow-grid > div,
body:not(.home-page) .summary-panel > div,
body:not(.home-page) .case-gallery-card,
body:not(.home-page) .case-gallery-item {
    border-color: rgba(90, 78, 61, 0.13) !important;
    background:
        linear-gradient(145deg, rgba(255, 253, 248, 0.98), rgba(249, 245, 238, 0.92)) !important;
    box-shadow: 0 16px 42px rgba(67, 55, 38, 0.055) !important;
}

body:not(.home-page) .section-heading,
body:not(.home-page) .project-section-header h2,
body:not(.home-page) .project-section h3,
body:not(.home-page) .case-kpi-grid strong,
body:not(.home-page) .project-intro strong {
    color: #302d27 !important;
}

body:not(.home-page) .project-intro-copy p,
body:not(.home-page) .project-section p,
body:not(.home-page) .project-section li,
body:not(.home-page) .case-kpi-grid p,
body:not(.home-page) .project-section-header p {
    color: #6d665b !important;
}

body:not(.home-page) .project-action-primary,
body:not(.home-page) .prd-link {
    color: #fff !important;
    background: linear-gradient(135deg, #8c8a69, #727655) !important;
    box-shadow: 0 14px 26px rgba(88, 76, 52, 0.13) !important;
}

/* ========== Project Pages Final Tone Polish ========== */
body:not(.home-page) .project-section {
    color: #6d665b !important;
}

body:not(.home-page) .project-intro,
body:not(.home-page) .project-action:not(.project-action-primary),
body:not(.home-page) .project-hero,
body:not(.home-page) .case-kpi-grid > div,
body:not(.home-page) .case-narrative,
body:not(.home-page) .case-breakpoint-list,
body:not(.home-page) .scenario-grid > div,
body:not(.home-page) .scope-columns > div,
body:not(.home-page) .prd-card,
body:not(.home-page) .flow-steps > div,
body:not(.home-page) .prototype-copy,
body:not(.home-page) .case-shot,
body:not(.home-page) .workflow-grid > div,
body:not(.home-page) .summary-panel > div {
    border: 1px solid rgba(90, 78, 61, 0.13) !important;
    background:
        radial-gradient(circle at 14% 8%, rgba(255, 255, 255, 0.76), transparent 34%),
        linear-gradient(145deg, rgba(255, 253, 248, 0.98), rgba(248, 244, 236, 0.94)) !important;
    box-shadow: 0 16px 42px rgba(67, 55, 38, 0.055) !important;
}

body:not(.home-page) .case-shot {
    overflow: hidden !important;
}

body:not(.home-page) .case-shot span,
body:not(.home-page) .zoom-hint,
body:not(.home-page) .scenario-grid span,
body:not(.home-page) .flow-steps span,
body:not(.home-page) .workflow-grid span,
body:not(.home-page) .prototype-copy span {
    color: #747a51 !important;
    background: rgba(247, 241, 232, 0.82) !important;
}

body:not(.home-page) .project-action:not(.project-action-primary):hover,
body:not(.home-page) .case-shot:hover {
    border-color: rgba(116, 122, 81, 0.28) !important;
    background:
        radial-gradient(circle at 14% 8%, rgba(255, 255, 255, 0.86), transparent 34%),
        linear-gradient(145deg, rgba(255, 253, 248, 1), rgba(246, 240, 230, 0.98)) !important;
}

/* ========== Works Image Fill Polish ========== */
.home-page #hero-works .home-media-jiaplus,
.home-page #works .home-media-jiaplus {
    background: #f3eee6 !important;
}

.home-page #hero-works .home-media-jiaplus .project-main-room,
.home-page #works .work-media-showcase.home-media-jiaplus .project-main-room {
    position: absolute !important;
    inset: 0 !important;
    width: 100% !important;
    height: 100% !important;
    max-height: none !important;
    transform: none !important;
    object-fit: cover !important;
    object-position: center center !important;
    border-radius: inherit !important;
}

.home-page #hero-works .home-media-jiaplus .project-compare-line,
.home-page #works .work-media-showcase.home-media-jiaplus .project-compare-line {
    top: 0 !important;
    bottom: 0 !important;
}

.home-page #hero-works .home-media-jiaplus .project-compare-handle,
.home-page #works .work-media-showcase.home-media-jiaplus .project-compare-handle {
    top: 50% !important;
}

.home-page #hero-works .home-media-jiaplus .project-compare-line,
.home-page #hero-works .home-media-jiaplus .project-compare-handle,
.home-page #works .work-media-showcase.home-media-jiaplus .project-compare-line,
.home-page #works .work-media-showcase.home-media-jiaplus .project-compare-handle {
    display: none !important;
}

/* ========== Jiaplus Cover View Tuning ========== */
.home-page #hero-works .hero-project-card:first-child {
    grid-template-columns: 34% 66% !important;
}

.home-page #hero-works .home-media-jiaplus .project-main-room,
.home-page #works .work-media-showcase.home-media-jiaplus .project-main-room {
    object-position: center top !important;
}

.home-page #works .work-media-showcase.home-media-jiaplus {
    min-height: 400px !important;
}

/* ========== Jiaplus Cover Edge Fix ========== */
.home-page #hero-works .home-media-jiaplus {
    align-self: stretch !important;
    height: 100% !important;
    min-height: 100% !important;
}

.home-page #hero-works .home-media-jiaplus .project-main-room,
.home-page #works .work-media-showcase.home-media-jiaplus .project-main-room {
    top: -22px !important;
    bottom: auto !important;
    height: calc(100% + 22px) !important;
}

/* ========== Hero Jiaplus Media Flush Fix ========== */
.home-page #hero-works .hero-project-card:first-child {
    position: relative !important;
    grid-template-columns: 34% 66% !important;
}

.home-page #hero-works .hero-project-card:first-child .hero-project-copy {
    width: 34% !important;
}

.home-page #hero-works .hero-project-card:first-child .home-media-jiaplus {
    position: absolute !important;
    top: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    left: auto !important;
    width: 66% !important;
    height: 100% !important;
    min-height: 0 !important;
    border-radius: 0 !important;
}

.home-page #hero-works .hero-project-card:first-child .home-media-jiaplus .project-main-room {
    top: 0 !important;
    height: 100% !important;
}

/* ========== Hero Works Card Repair ========== */
.home-page #hero-works .hero-project-card,
.home-page #hero-works .hero-project-card:first-child {
    display: grid !important;
    grid-template-columns: 34% 66% !important;
    height: 360px !important;
    min-height: 360px !important;
    align-items: stretch !important;
    padding: 0 !important;
    overflow: hidden !important;
}

.home-page #hero-works .hero-project-card:nth-child(2) {
    grid-template-columns: 38% 62% !important;
}

.home-page #hero-works .hero-project-copy,
.home-page #hero-works .hero-project-card:first-child .hero-project-copy {
    position: relative !important;
    order: 1 !important;
    width: auto !important;
    min-width: 0 !important;
    height: 100% !important;
}

.home-page #hero-works .hero-project-media,
.home-page #hero-works .hero-project-card:first-child .home-media-jiaplus {
    position: relative !important;
    inset: auto !important;
    top: auto !important;
    right: auto !important;
    bottom: auto !important;
    left: auto !important;
    order: 2 !important;
    width: auto !important;
    height: 100% !important;
    min-height: 360px !important;
    align-self: stretch !important;
    border-radius: 0 !important;
}

.home-page #hero-works .hero-project-media img,
.home-page #hero-works .home-media-jiaplus .project-main-room,
.home-page #hero-works .hero-project-card:first-child .home-media-jiaplus .project-main-room {
    position: absolute !important;
    inset: 0 !important;
    width: 100% !important;
    height: 100% !important;
    max-height: none !important;
    transform: none !important;
    object-fit: cover !important;
    object-position: center top !important;
    border-radius: 0 !important;
}

/* ========== Hero Works Height And Exhibition Restore ========== */
.home-page #hero-works .hero-project-card,
.home-page #hero-works .hero-project-card:first-child,
.home-page #hero-works .hero-project-card:nth-child(2) {
    height: 400px !important;
    min-height: 400px !important;
    grid-template-rows: 400px !important;
    max-height: 400px !important;
}

.home-page #hero-works .hero-project-copy,
.home-page #hero-works .hero-project-media {
    height: 400px !important;
    min-height: 0 !important;
    max-height: 400px !important;
    align-self: stretch !important;
    overflow: hidden !important;
}

.home-page #hero-works .home-media-exhibition .phone-shot {
    position: absolute !important;
    top: 58px !important;
    width: 30% !important;
    height: auto !important;
    max-height: 288px !important;
    object-fit: contain !important;
    object-position: top center !important;
    border-radius: 30px !important;
}

.home-page #hero-works .hero-project-card,
.home-page #hero-works .hero-project-card:first-child {
    grid-template-columns: 40% 60% !important;
}

.home-page #hero-works .home-media-exhibition .phone-shot-main {
    left: 8% !important;
    transform: rotate(-2deg) !important;
}

.home-page #hero-works .home-media-exhibition .phone-shot-mid {
    left: 35% !important;
    transform: rotate(1deg) !important;
}

.home-page #hero-works .home-media-exhibition .phone-shot-end {
    left: 62% !important;
    transform: rotate(3deg) !important;
}

/* ========== Final Ivory Footer And Loader ========== */
.home-page #contact {
    background: transparent !important;
}

.home-page .contact-heading {
    color: #302d27 !important;
}

.home-page .contact-sub {
    color: #746b5f !important;
}

.home-page .contact-link {
    border-color: rgba(90, 78, 61, 0.14) !important;
    color: #4f5f36 !important;
    background: rgba(255, 253, 248, 0.86) !important;
    box-shadow: 0 10px 26px rgba(67, 55, 38, 0.045) !important;
}

.home-page .contact-link:hover {
    color: #302d27 !important;
    background: rgba(249, 245, 238, 0.98) !important;
}

.home-page footer {
    color: #7d7669 !important;
    border-top: 1px solid rgba(90, 78, 61, 0.12) !important;
    background:
        radial-gradient(circle at 18% 0%, rgba(255, 255, 255, 0.78), transparent 32%),
        linear-gradient(145deg, rgba(255, 253, 248, 0.96), rgba(247, 242, 234, 0.9)) !important;
}

.loader-screen {
    background:
        radial-gradient(circle at 30% 24%, rgba(255, 255, 255, 0.92), transparent 30%),
        radial-gradient(circle at 72% 70%, rgba(232, 222, 204, 0.42), transparent 34%),
        linear-gradient(135deg, rgba(255, 253, 248, 0.98), rgba(246, 241, 232, 0.94)) !important;
}

.loader-screen::before {
    background:
        radial-gradient(circle, rgba(255, 255, 255, 0.86), rgba(216, 202, 176, 0.18) 52%, transparent 70%) !important;
}

.loader-glass {
    border-color: rgba(90, 78, 61, 0.13) !important;
    background:
        linear-gradient(135deg, rgba(255, 253, 248, 0.86), rgba(249, 245, 238, 0.6)),
        rgba(246, 241, 232, 0.44) !important;
    box-shadow:
        0 30px 80px rgba(67, 55, 38, 0.11),
        inset 0 1px 0 rgba(255, 255, 255, 0.9),
        inset 0 -1px 0 rgba(90, 78, 61, 0.08) !important;
}

.loader-mark {
    color: #fffdf8 !important;
    background: linear-gradient(135deg, #8c8a69, #70764e) !important;
    box-shadow:
        0 18px 34px rgba(88, 76, 52, 0.18),
        inset 0 1px 0 rgba(255, 255, 255, 0.36) !important;
}

.loader-name {
    color: #302d27 !important;
}

.loader-line {
    background: rgba(90, 78, 61, 0.16) !important;
}

.loader-line span {
    background: linear-gradient(90deg, transparent, #747a51, transparent) !important;
}

.loader-caption {
    color: #8b8377 !important;
}

/* ========== Project Page Nav Ivory Fix ========== */
body:not(.home-page) .site-nav,
body:not(.home-page) .site-nav.nav-scrolled {
    width: 100% !important;
    left: 0 !important;
    right: 0 !important;
    padding: 0 34px !important;
    background:
        linear-gradient(90deg, rgba(255, 253, 248, 0.96), rgba(248, 244, 236, 0.94)) !important;
    border-bottom: 1px solid rgba(90, 78, 61, 0.11) !important;
    box-shadow: 0 12px 30px rgba(67, 55, 38, 0.035) !important;
    backdrop-filter: blur(18px) saturate(150%) !important;
    -webkit-backdrop-filter: blur(18px) saturate(150%) !important;
}

body:not(.home-page) .nav-inner,
body:not(.home-page) .site-nav.nav-scrolled .nav-inner,
body:not(.home-page) .site-nav:hover .nav-inner,
body:not(.home-page) .site-nav.nav-open .nav-inner {
    max-width: 1180px !important;
    min-height: 72px !important;
    margin: 0 auto !important;
    padding: 0 !important;
    border: 0 !important;
    border-radius: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
}

body:not(.home-page) .nav-inner::before,
body:not(.home-page) .nav-inner::after {
    display: none !important;
}

body:not(.home-page) .logo,
body:not(.home-page) .nav-links a {
    color: #747a51 !important;
}

body:not(.home-page) .nav-links a:hover {
    color: #302d27 !important;
    background: transparent !important;
}

/* ========== Interactive Intro Cover ========== */
.home-page #intro.interactive-cover {
    --cover-mx: 0px;
    --cover-my: 0px;
    position: relative;
    z-index: 160;
    display: grid;
    grid-template-columns: minmax(260px, 0.95fr) minmax(390px, 1.1fr) minmax(260px, 0.95fr);
    align-items: center;
    gap: 18px;
    width: var(--content-width, min(1310px, calc(100vw - 256px))) !important;
    min-height: 100vh;
    margin-left: var(--content-left, 128px) !important;
    padding: 72px 0 56px !important;
    overflow: hidden;
    border-bottom: 0 !important;
    background:
        radial-gradient(circle at 18% 18%, rgba(255, 255, 255, 0.9), transparent 30%),
        radial-gradient(circle at 78% 62%, rgba(237, 229, 213, 0.48), transparent 36%),
        linear-gradient(112deg, rgba(255, 253, 248, 0.98), rgba(247, 243, 235, 0.88));
}

.interactive-cover::before {
    content: "";
    position: absolute;
    inset: 72px 0 56px;
    border: 1px solid rgba(90, 78, 61, 0.08);
    border-radius: 999px;
    opacity: 0.45;
    pointer-events: none;
}

.cover-word {
    position: relative;
    z-index: 2;
    transform: translate(calc(var(--cover-mx) * -0.18), calc(var(--cover-my) * -0.12));
}

.cover-word-right {
    transform: translate(calc(var(--cover-mx) * 0.18), calc(var(--cover-my) * 0.12));
}

.cover-word span {
    display: block;
    margin-bottom: 12px;
    color: #747a51;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 6px;
}

.cover-word strong {
    display: block;
    color: #231f1a;
    font-family: Georgia, "Times New Roman", "Songti SC", serif;
    font-size: clamp(52px, 6.4vw, 94px);
    font-weight: 500;
    line-height: 0.95;
    letter-spacing: 0;
    white-space: nowrap;
}

.cover-word p {
    max-width: 330px;
    margin-top: 18px;
    color: #6d665b;
    font-size: 15px;
    line-height: 1.8;
}

.cover-word-right p {
    margin-left: auto;
}

.cover-orbit {
    position: relative;
    z-index: 1;
    width: min(44vw, 520px);
    aspect-ratio: 1;
    justify-self: center;
    transform:
        translate(var(--cover-mx), var(--cover-my))
        rotate(calc(var(--cover-mx) * 0.08deg));
}

.orbit-line {
    position: absolute;
    inset: 10%;
    border-radius: 50%;
    border: 1px dashed rgba(116, 122, 81, 0.28);
}

.orbit-line-main::after {
    content: "";
    position: absolute;
    inset: 9%;
    border-radius: 50%;
    border: 1px solid rgba(90, 78, 61, 0.08);
}

.orbit-line-soft {
    inset: 26%;
    border-color: rgba(90, 78, 61, 0.1);
    transform: rotate(-12deg);
}

.orbit-card {
    position: absolute;
    display: grid;
    place-items: center;
    width: 72px;
    min-height: 72px;
    padding: 9px;
    border: 1px solid rgba(90, 78, 61, 0.13);
    border-radius: 14px;
    color: #302d27;
    background:
        radial-gradient(circle at 22% 12%, rgba(255, 255, 255, 0.82), transparent 40%),
        linear-gradient(145deg, rgba(255, 253, 248, 0.98), rgba(239, 232, 218, 0.88));
    box-shadow: 0 16px 36px rgba(67, 55, 38, 0.08);
    animation: coverFloat 4.8s ease-in-out infinite;
}

.orbit-card b {
    display: grid;
    place-items: center;
    width: 38px;
    height: 38px;
    border-radius: 12px;
    color: #747a51;
    background: rgba(220, 228, 167, 0.38);
    font-size: 24px;
    line-height: 1;
    letter-spacing: 0;
}

.orbit-card i {
    display: block;
    margin-top: 5px;
    color: #6d665b;
    font-size: 10px;
    font-weight: 700;
    font-style: normal;
    white-space: nowrap;
}

.orbit-card-2 b,
.orbit-card-5 b {
    background: rgba(235, 222, 196, 0.62);
}

.orbit-card-3 b {
    color: #1f4b3b;
    background: rgba(185, 216, 175, 0.55);
}

.orbit-card-4 b,
.orbit-card-6 b {
    background: rgba(214, 222, 203, 0.62);
}

.orbit-card-1 { top: 8%; left: 24%; animation-delay: -0.2s; }
.orbit-card-2 { top: 7%; right: 20%; animation-delay: -1.1s; }
.orbit-card-3 { top: 34%; right: 6%; animation-delay: -2.2s; }
.orbit-card-4 { right: 22%; bottom: 9%; animation-delay: -1.7s; }
.orbit-card-5 { left: 24%; bottom: 8%; animation-delay: -2.8s; }
.orbit-card-6 { top: 52%; left: 5%; animation-delay: -3.4s; }

.orbit-card:hover {
    border-color: rgba(116, 122, 81, 0.34);
    transform: translateY(-4px) scale(1.04);
}

.cover-scroll {
    position: absolute;
    left: 50%;
    bottom: 34px;
    z-index: 3;
    display: grid;
    gap: 10px;
    justify-items: center;
    transform: translateX(-50%);
    color: #747a51;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 4px;
}

.cover-scroll b {
    display: block;
    width: 1px;
    height: 42px;
    background: linear-gradient(180deg, #747a51, rgba(116, 122, 81, 0));
    animation: coverScrollLine 1.6s ease-in-out infinite;
}

@keyframes coverFloat {
    0%, 100% { translate: 0 0; }
    50% { translate: 0 -10px; }
}

@keyframes coverScrollLine {
    0%, 100% { transform: scaleY(0.68); opacity: 0.48; }
    50% { transform: scaleY(1); opacity: 1; }
}

@media (max-width: 1180px) {
    .home-page #intro.interactive-cover {
        width: min(100%, calc(100vw - 48px)) !important;
        margin-left: auto !important;
        margin-right: auto !important;
        grid-template-columns: 1fr;
        gap: 24px;
        text-align: center;
        padding: 92px 24px 72px !important;
    }

    .cover-word,
    .cover-word-right {
        transform: none;
    }

    .cover-word p,
    .cover-word-right p {
        margin-left: auto;
        margin-right: auto;
    }

    .cover-word strong {
        white-space: normal;
    }

    .cover-orbit {
        width: min(74vw, 430px);
        order: 2;
    }

    .cover-word-right {
        order: 3;
    }
}

/* ========== Grain Style Intro Match ========== */
.home-page.intro-active .home-side-rail {
    opacity: 0 !important;
    pointer-events: none !important;
    transform: translateX(-24px) !important;
}

.home-page #intro.interactive-cover {
    --cover-mx: 0px;
    --cover-my: 0px;
    width: 100% !important;
    min-height: 100vh !important;
    margin-left: 0 !important;
    padding: 0 8.5vw 54px !important;
    display: grid !important;
    grid-template-columns: minmax(260px, 0.9fr) minmax(420px, 1.05fr) minmax(260px, 0.9fr) !important;
    grid-template-rows: 30px 74px 1fr;
    gap: 0;
    align-items: center;
    background: #f8f6ee !important;
    border-top: 0 !important;
}

.cover-announcement {
    position: relative;
    z-index: 12;
    grid-column: 1 / -1;
    width: calc(100% + 17vw);
    height: 30px;
    margin-left: -8.5vw;
    display: flex;
    align-items: center;
    justify-content: space-around;
    gap: 48px;
    overflow: hidden;
    color: #d8f65f;
    background: #050505;
    font-size: 11px;
    font-weight: 900;
    white-space: nowrap;
}

.cover-announcement span {
    animation: coverTicker 18s linear infinite;
}

.home-page #intro.interactive-cover::before {
    display: none !important;
}

.cover-topbar {
    position: relative;
    z-index: 10;
    grid-column: 1 / -1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 74px;
    color: #111;
}

.cover-brand {
    color: #151515;
    font-size: 20px;
    font-weight: 800;
    letter-spacing: -0.4px;
}

.cover-menu {
    display: flex;
    align-items: center;
    gap: 34px;
}

.cover-menu a {
    color: #111;
    font-size: 13px;
    font-weight: 800;
}

.home-page #intro .cover-word {
    z-index: 8;
    align-self: start;
    margin-top: 218px;
    transform: translate(calc(var(--cover-mx) * -0.1), calc(var(--cover-my) * -0.08));
}

.home-page #intro .cover-word-right {
    margin-top: 278px;
    transform: translate(calc(var(--cover-mx) * 0.1), calc(var(--cover-my) * 0.08));
}

.home-page #intro .cover-word span {
    margin-bottom: 8px;
    color: #111;
    font-size: 0;
    letter-spacing: 0;
}

.home-page #intro .cover-word strong {
    color: #111;
    font-family: Georgia, "Times New Roman", "Songti SC", serif;
    font-size: clamp(74px, 8.2vw, 142px);
    font-weight: 500;
    line-height: 0.86;
    letter-spacing: -2px;
}

.home-page #intro .cover-word p {
    max-width: 360px;
    margin-top: 10px;
    color: #111;
    font-size: 13px;
    font-weight: 700;
    line-height: 1.45;
}

.home-page #intro .cover-word-right p {
    margin-left: 0;
}

.home-page #intro .cover-orbit {
    grid-column: 2;
    grid-row: 3;
    width: min(44vw, 548px);
    z-index: 3;
    align-self: start;
    margin-top: 26px;
    transform:
        translate(var(--cover-mx), var(--cover-my))
        rotate(calc(var(--cover-mx) * 0.05deg));
}

.home-page #intro .orbit-line {
    inset: 4%;
    border: 1px solid rgba(17, 17, 17, 0.16);
    border-style: dashed;
}

.home-page #intro .orbit-line-main::after {
    inset: 22%;
    border-color: rgba(17, 17, 17, 0.08);
}

.home-page #intro .orbit-line-soft {
    display: none;
}

.home-page #intro .orbit-card {
    width: 58px;
    height: 58px;
    min-height: 58px;
    max-height: 58px;
    padding: 0;
    border: 0;
    border-radius: 12px;
    background: #dbe9db;
    box-shadow:
        0 12px 22px rgba(20, 20, 20, 0.12),
        inset 0 1px 0 rgba(255, 255, 255, 0.6);
    animation: none;
    overflow: hidden;
    z-index: 1;
}

.home-page #intro .orbit-card b {
    width: 100%;
    height: 100%;
    border-radius: inherit;
    color: #0e4b34;
    background: transparent;
    font-family: -apple-system, BlinkMacSystemFont, "PingFang SC", sans-serif;
    font-size: 26px;
    font-weight: 900;
    line-height: 1;
    overflow: hidden;
}

.home-page #intro .orbit-card i {
    display: none;
}

.home-page #intro .orbit-card-1 { top: 10%; left: 14%; background: #275f37; animation-delay: -0.1s; }
.home-page #intro .orbit-card-1 b { color: #d6f273; }
.home-page #intro .orbit-card-2 { top: 3%; left: 33%; background: #c6e8e1; animation-delay: -0.7s; }
.home-page #intro .orbit-card-2 b { color: #2f7668; }
.home-page #intro .orbit-card-3 { top: 0; left: 51%; background: linear-gradient(180deg, #111, #2c2a25 62%, #d8f65f 63%); animation-delay: -1.2s; }
.home-page #intro .orbit-card-3 b { color: transparent; }
.home-page #intro .orbit-card-4 { top: 6%; right: 21%; background: #111; animation-delay: -1.9s; }
.home-page #intro .orbit-card-4 b { color: #d8f65f; }
.home-page #intro .orbit-card-5 { top: 22%; right: 8%; background: #e9f264; animation-delay: -2.5s; }
.home-page #intro .orbit-card-5 b { color: #0e4b34; }
.home-page #intro .orbit-card-6 { top: 39%; right: 3%; background: #dceade; animation-delay: -3s; }
.home-page #intro .orbit-card-6 b { color: #276454; }
.home-page #intro .orbit-card-7 { right: 13%; bottom: 18%; background: #b8c099; animation-delay: -3.4s; }
.home-page #intro .orbit-card-7 b { color: #2b251f; }
.home-page #intro .orbit-card-8 { right: 29%; bottom: 6%; background: #0f5d49; animation-delay: -0.8s; }
.home-page #intro .orbit-card-8 b { color: #d8f65f; }
.home-page #intro .orbit-card-9 { left: 42%; bottom: 3%; background: #b6a98a; animation-delay: -1.6s; }
.home-page #intro .orbit-card-9 b { color: #111; }
.home-page #intro .orbit-card-10 { left: 24%; bottom: 8%; background: #d8f65f; border-radius: 50%; animation-delay: -2.2s; }
.home-page #intro .orbit-card-10 b { color: #23624d; }
.home-page #intro .orbit-card-11 { left: 12%; bottom: 24%; background: #d8ded9; animation-delay: -2.9s; }
.home-page #intro .orbit-card-11 b { color: #65706c; }
.home-page #intro .orbit-card-12 { top: 42%; left: 2%; background: rgba(255, 255, 255, 0.58); box-shadow: none; animation-delay: -3.6s; }
.home-page #intro .orbit-card-12 b { color: #d8f65f; }

.home-page #intro .cover-scroll {
    color: #111;
    bottom: 28px;
}

.home-page #intro .cover-scroll b {
    background: linear-gradient(180deg, #111, rgba(17, 17, 17, 0));
}

@media (max-width: 1180px) {
    .home-page #intro.interactive-cover {
        grid-template-columns: 1fr !important;
        grid-template-rows: 72px auto auto auto;
        padding: 0 24px 76px !important;
    }

    .cover-menu {
        gap: 16px;
    }

    .home-page #intro .cover-word,
    .home-page #intro .cover-word-right {
        margin-top: 0;
        text-align: center;
        transform: none;
    }

    .home-page #intro .cover-word p,
    .home-page #intro .cover-word-right p {
        margin-left: auto;
        margin-right: auto;
    }

    .home-page #intro .cover-orbit {
        grid-column: 1;
        grid-row: auto;
        width: min(82vw, 430px);
        margin: 18px auto;
    }
}

@keyframes coverTicker {
    from { transform: translateX(0); }
    to { transform: translateX(-48px); }
}

/* ========== Grain Exact Intro Stage ========== */
.home-page #intro.interactive-cover {
    --cover-mx: 0px;
    --cover-my: 0px;
    position: relative !important;
    z-index: 160 !important;
    display: block !important;
    width: 100vw !important;
    max-width: none !important;
    min-height: 100vh !important;
    margin: 0 !important;
    padding: 0 !important;
    overflow: hidden !important;
    background: #f8f6ee !important;
    border: 0 !important;
}

.home-page #intro.interactive-cover::before,
.home-page #intro.interactive-cover::after {
    display: none !important;
}

.home-page #intro .cover-announcement {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    right: auto !important;
    z-index: 14 !important;
    display: flex !important;
    width: 100vw !important;
    height: 30px !important;
    margin: 0 !important;
    padding: 0 28px !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 44px !important;
    overflow: hidden !important;
    background: #050505 !important;
    color: #d8f65f !important;
    font-size: 11px !important;
    font-weight: 900 !important;
    line-height: 1 !important;
    white-space: nowrap !important;
}

.home-page #intro .cover-announcement span {
    display: inline-flex !important;
    flex: 0 0 auto !important;
    animation: coverTicker 18s linear infinite;
}

.home-page #intro .cover-topbar {
    position: absolute !important;
    top: 30px !important;
    left: 50% !important;
    z-index: 13 !important;
    display: flex !important;
    width: min(800px, calc(100vw - 48px)) !important;
    height: 72px !important;
    transform: translateX(-50%) !important;
    align-items: center !important;
    justify-content: space-between !important;
    color: #111 !important;
}

.home-page #intro .cover-brand {
    color: #151515 !important;
    font-family: -apple-system, BlinkMacSystemFont, "PingFang SC", sans-serif !important;
    font-size: 20px !important;
    font-weight: 850 !important;
    letter-spacing: -0.45px !important;
}

.home-page #intro .cover-menu {
    display: flex !important;
    align-items: center !important;
    gap: 34px !important;
}

.home-page #intro .cover-menu a {
    color: #111 !important;
    font-size: 13px !important;
    font-weight: 850 !important;
    letter-spacing: -0.2px !important;
}

.home-page #intro .cover-orbit {
    position: absolute !important;
    top: 50% !important;
    left: 50% !important;
    z-index: 3 !important;
    width: min(39vw, 500px) !important;
    min-width: 400px !important;
    max-width: 500px !important;
    margin: 0 !important;
    grid-column: auto !important;
    grid-row: auto !important;
    align-self: auto !important;
    transform:
        translate(-50%, -50%)
        translate(var(--cover-mx), var(--cover-my)) !important;
}

.home-page #intro .orbit-line {
    inset: 3.2% !important;
    border: 1px dashed rgba(17, 17, 17, 0.16) !important;
}

.home-page #intro .orbit-line-main::after {
    inset: 24% !important;
    border: 1px solid rgba(17, 17, 17, 0.07) !important;
}

.home-page #intro .orbit-line-soft {
    display: none !important;
}

.home-page #intro .cover-word {
    position: absolute !important;
    z-index: 8 !important;
    width: auto !important;
    max-width: none !important;
    margin: 0 !important;
    text-align: left !important;
    transform: none !important;
    grid-column: auto !important;
    grid-row: auto !important;
    align-self: auto !important;
}

.home-page #intro .cover-word-left {
    top: calc(50% - 54px) !important;
    left: max(56px, calc(50% - 360px)) !important;
}

.home-page #intro .cover-word-right {
    top: calc(50% - 14px) !important;
    left: calc(50% + 112px) !important;
}

.home-page #intro .cover-word span {
    display: none !important;
}

.home-page #intro .cover-word strong {
    display: block !important;
    color: #050505 !important;
    font-family: Georgia, "Times New Roman", "Songti SC", "STSong", serif !important;
    font-size: clamp(76px, 6.4vw, 112px) !important;
    font-weight: 500 !important;
    line-height: 0.9 !important;
    letter-spacing: -3.2px !important;
}

.home-page #intro .cover-word p {
    max-width: 360px !important;
    margin: 10px 0 0 !important;
    color: #101010 !important;
    font-size: 13px !important;
    font-weight: 850 !important;
    line-height: 1.35 !important;
    letter-spacing: -0.1px !important;
}

.home-page #intro .orbit-card {
    width: 58px !important;
    height: 58px !important;
    min-height: 58px !important;
    max-height: 58px !important;
    padding: 0 !important;
    border: 0 !important;
    border-radius: 12px !important;
    background: #dbe9db !important;
    box-shadow:
        0 14px 24px rgba(20, 20, 20, 0.12),
        inset 0 1px 0 rgba(255, 255, 255, 0.66) !important;
    overflow: hidden !important;
    animation: none !important;
}

.home-page #intro .orbit-card b {
    width: 100% !important;
    height: 100% !important;
    border-radius: inherit !important;
    color: #0e4b34 !important;
    background: transparent !important;
    font-family: -apple-system, BlinkMacSystemFont, "PingFang SC", sans-serif !important;
    font-size: 26px !important;
    font-weight: 900 !important;
    line-height: 1 !important;
}

.home-page #intro .orbit-card i {
    display: none !important;
}

.home-page #intro .orbit-card-1 { background: #275f37 !important; }
.home-page #intro .orbit-card-1 b { color: #d6f273 !important; }
.home-page #intro .orbit-card-2 { background: #c6e8e1 !important; }
.home-page #intro .orbit-card-2 b { color: #2f7668 !important; }
.home-page #intro .orbit-card-3 { background: linear-gradient(180deg, #111, #2c2a25 62%, #d8f65f 63%) !important; }
.home-page #intro .orbit-card-3 b { color: transparent !important; }
.home-page #intro .orbit-card-4 { background: #111 !important; }
.home-page #intro .orbit-card-4 b { color: #d8f65f !important; }
.home-page #intro .orbit-card-5 { background: #e9f264 !important; }
.home-page #intro .orbit-card-5 b { color: #0e4b34 !important; }
.home-page #intro .orbit-card-6 { background: #dceade !important; }
.home-page #intro .orbit-card-6 b { color: #276454 !important; }
.home-page #intro .orbit-card-7 { background: #b8c099 !important; }
.home-page #intro .orbit-card-7 b { color: #2b251f !important; }
.home-page #intro .orbit-card-8 { background: #0f5d49 !important; }
.home-page #intro .orbit-card-8 b { color: #d8f65f !important; }
.home-page #intro .orbit-card-9 { background: #b6a98a !important; }
.home-page #intro .orbit-card-9 b { color: #111 !important; }
.home-page #intro .orbit-card-10 { background: #d8f65f !important; border-radius: 50% !important; }
.home-page #intro .orbit-card-10 b { color: #23624d !important; }
.home-page #intro .orbit-card-11 { background: #d8ded9 !important; }
.home-page #intro .orbit-card-11 b { color: #65706c !important; }
.home-page #intro .orbit-card-12 { background: rgba(255, 255, 255, 0.64) !important; box-shadow: none !important; }
.home-page #intro .orbit-card-12 b { color: #d8f65f !important; }

.home-page #intro .cover-scroll {
    position: absolute !important;
    left: 50% !important;
    bottom: 28px !important;
    z-index: 12 !important;
    transform: translateX(-50%) !important;
    color: #111 !important;
}

.home-page #intro .cover-scroll b {
    background: linear-gradient(180deg, #111, rgba(17, 17, 17, 0)) !important;
}

@media (max-width: 1120px) {
    .home-page #intro .cover-orbit {
        top: 49% !important;
        width: min(64vw, 440px) !important;
        min-width: 330px !important;
    }

    .home-page #intro .cover-word-left {
        top: calc(49% - 54px) !important;
        left: 5vw !important;
    }

    .home-page #intro .cover-word-right {
        top: calc(49% - 2px) !important;
        left: auto !important;
        right: 5vw !important;
    }

    .home-page #intro .cover-word strong {
        font-size: clamp(66px, 12vw, 104px) !important;
    }
}

.home-page.intro-active .site-nav {
    opacity: 0 !important;
    pointer-events: none !important;
    transform: translateY(-14px) !important;
}

@media (max-width: 760px) {
    .home-page #intro.interactive-cover {
        min-height: 760px !important;
    }

    .home-page #intro .cover-announcement {
        justify-content: flex-start !important;
        gap: 34px !important;
    }

    .home-page #intro .cover-topbar {
        top: 30px !important;
        width: calc(100vw - 34px) !important;
    }

    .home-page #intro .cover-brand {
        font-size: 18px !important;
    }

    .home-page #intro .cover-menu {
        display: none !important;
    }

    .home-page #intro .cover-orbit {
        top: 50% !important;
        width: min(80vw, 360px) !important;
        min-width: 292px !important;
    }

    .home-page #intro .cover-word-left {
        top: 245px !important;
        left: 22px !important;
        right: auto !important;
    }

    .home-page #intro .cover-word-right {
        top: 385px !important;
        left: auto !important;
        right: 22px !important;
    }

    .home-page #intro .cover-word strong {
        font-size: clamp(50px, 15vw, 68px) !important;
        letter-spacing: -2.4px !important;
    }

    .home-page #intro .cover-word p {
        max-width: 250px !important;
        font-size: 11px !important;
    }

    .home-page #intro .orbit-card {
        transform: scale(0.82) !important;
        transform-origin: center !important;
    }
}

@media (max-width: 760px) {
    .home-page #intro.interactive-cover {
        min-height: 760px !important;
    }

    .home-page #intro .cover-topbar {
        width: calc(100vw - 32px) !important;
    }

    .home-page #intro .cover-menu {
        gap: 14px !important;
    }

    .home-page #intro .cover-menu a {
        font-size: 11px !important;
    }

    .home-page #intro .cover-orbit {
        top: 50% !important;
        width: min(76vw, 360px) !important;
        min-width: 280px !important;
    }

    .home-page #intro .orbit-card {
        width: 46px !important;
        height: 46px !important;
        min-height: 46px !important;
        max-height: 46px !important;
    }

    .home-page #intro .orbit-card b {
        font-size: 21px !important;
    }

    .home-page #intro .cover-word-left {
        top: 37% !important;
        left: 24px !important;
    }

    .home-page #intro .cover-word-right {
        top: 52% !important;
        right: 24px !important;
    }

    .home-page #intro .cover-word strong {
        font-size: clamp(58px, 18vw, 86px) !important;
    }
}

/* ========== Source Breakdown Intro Refinement ========== */
.home-page #intro.interactive-cover {
    background: #f8f6ee !important;
}

.home-page #intro .cover-topbar {
    width: min(820px, calc(100vw - 52px)) !important;
}

.home-page #intro .cover-brand {
    font-size: 19px !important;
    letter-spacing: -0.6px !important;
}

.home-page #intro .cover-menu {
    gap: 33px !important;
}

.home-page #intro .cover-orbit {
    top: 49% !important;
    width: min(36vw, 462px) !important;
    min-width: 388px !important;
    max-width: 462px !important;
}

.home-page #intro .orbit-line {
    inset: 2.5% !important;
    border-color: rgba(20, 20, 20, 0.15) !important;
}

.home-page #intro .orbit-line-main::after {
    inset: 25% !important;
    border-color: rgba(20, 20, 20, 0.075) !important;
}

.home-page #intro .cover-word-left {
    top: calc(49% - 34px) !important;
    left: max(56px, calc(50% - 390px)) !important;
}

.home-page #intro .cover-word-right {
    top: calc(49% + 14px) !important;
    left: calc(50% + 130px) !important;
}

.home-page #intro .cover-word strong {
    font-size: clamp(76px, 6.8vw, 118px) !important;
    line-height: 0.86 !important;
    letter-spacing: -4px !important;
}

.home-page #intro .cover-word p {
    margin-top: 6px !important;
    font-size: 12px !important;
    font-weight: 850 !important;
    line-height: 1.25 !important;
}

.home-page #intro .orbit-card {
    width: 54px !important;
    height: 54px !important;
    min-height: 54px !important;
    max-height: 54px !important;
    border-radius: 11px !important;
    box-shadow:
        0 13px 24px rgba(14, 20, 16, 0.13),
        inset 0 1px 0 rgba(255, 255, 255, 0.62) !important;
}

.home-page #intro .orbit-card b {
    position: relative !important;
    display: block !important;
    width: 100% !important;
    height: 100% !important;
    color: transparent !important;
    font-size: 0 !important;
}

.home-page #intro .orbit-card b::before,
.home-page #intro .orbit-card b::after {
    position: absolute;
    content: "";
    display: block;
}

.home-page #intro .orbit-card-1 {
    width: 62px !important;
    height: 62px !important;
    min-height: 62px !important;
    max-height: 62px !important;
    border-radius: 13px !important;
    background: #0f5b3d !important;
}

.home-page #intro .orbit-card-1 b::before {
    inset: 15px 14px;
    border-radius: 50%;
    border: 3px solid #d8f65f;
}

.home-page #intro .orbit-card-1 b::after {
    top: 24px;
    left: 23px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid #d8f65f;
}

.home-page #intro .orbit-card-2 {
    background: #c5ebe4 !important;
}

.home-page #intro .orbit-card-2 b::before {
    top: 16px;
    left: 18px;
    width: 18px;
    height: 18px;
    border: 4px solid #2f756b;
    border-radius: 5px;
}

.home-page #intro .orbit-card-3 {
    width: 64px !important;
    height: 64px !important;
    min-height: 64px !important;
    max-height: 64px !important;
    border-radius: 13px !important;
    background: #111 !important;
}

.home-page #intro .orbit-card-3 b::before {
    top: 12px;
    left: 12px;
    width: 40px;
    height: 9px;
    border-radius: 999px;
    background: #d8f65f;
    box-shadow: 0 14px 0 #c7d58e, 0 28px 0 #d8f65f;
}

.home-page #intro .orbit-card-4 {
    background: #111 !important;
}

.home-page #intro .orbit-card-4 b::before {
    top: 10px;
    left: 22px;
    width: 10px;
    height: 30px;
    border-radius: 999px;
    background: #d8f65f;
    transform: rotate(-8deg);
}

.home-page #intro .orbit-card-4 b::after {
    top: 6px;
    left: 26px;
    width: 18px;
    height: 18px;
    border-top: 4px solid #d8f65f;
    border-right: 4px solid #d8f65f;
    transform: rotate(-35deg);
}

.home-page #intro .orbit-card-5 {
    width: 66px !important;
    height: 32px !important;
    min-height: 32px !important;
    max-height: 32px !important;
    border-radius: 999px !important;
    background: #d8f65f !important;
}

.home-page #intro .orbit-card-5 b::before {
    top: 0;
    left: 34px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #0f5b3d;
}

.home-page #intro .orbit-card-6 {
    width: 62px !important;
    height: 62px !important;
    min-height: 62px !important;
    max-height: 62px !important;
    background: #d9e3dc !important;
}

.home-page #intro .orbit-card-6 b::before {
    inset: 13px;
    border: 3px solid #6f8981;
    border-radius: 3px;
    box-shadow: inset 0 11px 0 rgba(111, 137, 129, 0.22);
}

.home-page #intro .orbit-card-7 {
    background: #b7bd98 !important;
}

.home-page #intro .orbit-card-7 b::before {
    top: 25px;
    left: 14px;
    width: 27px;
    height: 8px;
    border-top: 4px solid #242018;
    border-radius: 50%;
    transform: rotate(7deg);
}

.home-page #intro .orbit-card-7 b::after {
    top: 25px;
    left: 14px;
    width: 27px;
    height: 8px;
    border-bottom: 4px solid #242018;
    border-radius: 50%;
    transform: rotate(-7deg);
}

.home-page #intro .orbit-card-8 {
    background: #0c674f !important;
}

.home-page #intro .orbit-card-8 b::before {
    top: 17px;
    left: 17px;
    width: 20px;
    height: 20px;
    border: 4px solid #d8f65f;
    transform: rotate(45deg);
}

.home-page #intro .orbit-card-9 {
    width: 62px !important;
    height: 62px !important;
    min-height: 62px !important;
    max-height: 62px !important;
    background: #b6a98a !important;
}

.home-page #intro .orbit-card-9 b::before {
    top: 19px;
    left: 15px;
    width: 31px;
    height: 20px;
    border-radius: 4px;
    background:
        linear-gradient(#2a251d 0 0) 6px 5px / 20px 3px no-repeat,
        linear-gradient(#2a251d 0 0) 6px 12px / 15px 3px no-repeat,
        transparent;
    border: 2px solid rgba(42, 37, 29, 0.55);
}

.home-page #intro .orbit-card-10 {
    border-radius: 50% !important;
    background: #d8f65f !important;
}

.home-page #intro .orbit-card-10 b::before {
    top: 21px;
    left: 17px;
    width: 21px;
    height: 12px;
    border: 4px solid #23624d;
    transform: skewX(-12deg);
}

.home-page #intro .orbit-card-11 {
    background: rgba(214, 226, 221, 0.82) !important;
}

.home-page #intro .orbit-card-11 b::before {
    top: 18px;
    left: 18px;
    width: 18px;
    height: 18px;
    border: 3px solid #68736e;
    transform: rotate(45deg);
}

.home-page #intro .orbit-card-11 b::after {
    top: 24px;
    left: 24px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #68736e;
}

.home-page #intro .orbit-card-12 {
    width: 58px !important;
    height: 58px !important;
    min-height: 58px !important;
    max-height: 58px !important;
    background: rgba(255, 255, 255, 0.66) !important;
    box-shadow: 0 12px 22px rgba(14, 20, 16, 0.05) !important;
}

.home-page #intro .orbit-card-12 b::before {
    top: 14px;
    left: 25px;
    width: 8px;
    height: 28px;
    border-radius: 999px;
    background: #d8f65f;
    transform: rotate(38deg);
}

.home-page #intro .orbit-card-12 b::after {
    top: 24px;
    left: 15px;
    width: 28px;
    height: 8px;
    border-radius: 999px;
    background: #d8f65f;
    transform: rotate(38deg);
}

@media (max-width: 1120px) {
    .home-page #intro .cover-orbit {
        width: min(58vw, 430px) !important;
        min-width: 330px !important;
    }

    .home-page #intro .cover-word-left {
        top: calc(49% - 36px) !important;
        left: 5vw !important;
    }

    .home-page #intro .cover-word-right {
        top: calc(49% + 12px) !important;
        right: 5vw !important;
        left: auto !important;
    }
}

/* ========== Portfolio Typography Specification ========== */
:root {
    --font-portfolio: "Inter", "Noto Sans SC", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", Arial, sans-serif;
    --text-title: #111;
    --text-body: #333;
    --text-support: #666;
    --text-muted: #999;
    --type-h1: 40px;
    --type-h2: 32px;
    --type-h3: 24px;
    --type-h4: 20px;
    --type-body-lg: 18px;
    --type-body: 16px;
    --type-small: 14px;
    --type-note: 12px;
}

html,
body,
button,
input,
textarea,
select {
    font-family: var(--font-portfolio) !important;
}

body {
    color: var(--text-body) !important;
    font-size: var(--type-body) !important;
    font-weight: 400 !important;
    line-height: 1.6 !important;
    letter-spacing: 0 !important;
}

/* ========== Hero Typography Lock ========== */
.home-page #hero.hero-reference .hero-name {
    color: #111 !important;
    font-family: var(--font-portfolio) !important;
    font-size: var(--type-h1) !important;
    font-weight: 700 !important;
    line-height: 1.2 !important;
    letter-spacing: -0.02em !important;
    text-align: left !important;
}

.home-page #hero.hero-reference .hero-role,
.home-page #hero.hero-reference .hero-reference-stats strong {
    color: #111 !important;
    font-family: var(--font-portfolio) !important;
    font-size: var(--type-h4) !important;
    font-weight: 500 !important;
    line-height: 1.35 !important;
    letter-spacing: -0.02em !important;
    text-align: left !important;
}

.home-page #hero.hero-reference .hero-one-line,
.home-page #hero.hero-reference .hero-quote-card p {
    color: #333 !important;
    font-family: var(--font-portfolio) !important;
    font-size: var(--type-body-lg) !important;
    font-weight: 400 !important;
    line-height: 1.55 !important;
    letter-spacing: 0 !important;
    text-align: left !important;
}

.home-page #hero.hero-reference .hero-reference-stats p {
    color: #333 !important;
    font-family: var(--font-portfolio) !important;
    font-size: var(--type-body) !important;
    font-weight: 400 !important;
    line-height: 1.6 !important;
    letter-spacing: 0 !important;
    text-align: center !important;
}

.home-page #hero.hero-reference .hero-skill-pills span,
.home-page #hero.hero-reference .hero-text-link,
.home-page #hero.hero-reference .hero-cta {
    color: #666 !important;
    font-family: var(--font-portfolio) !important;
    font-size: var(--type-small) !important;
    font-weight: 400 !important;
    line-height: 1.6 !important;
    letter-spacing: 0 !important;
}

.home-page #hero.hero-reference .hero-name-en,
.home-page #hero.hero-reference .hero-reference-stats span,
.home-page #hero.hero-reference .hero-quote-card span {
    color: #999 !important;
    font-family: var(--font-portfolio) !important;
    font-size: var(--type-note) !important;
    font-weight: 400 !important;
    line-height: 1.6 !important;
    letter-spacing: 0 !important;
}

.home-page #hero.hero-reference .hero-cta {
    color: #fff !important;
    font-weight: 500 !important;
}

/* ========== Cat Fishing Project Showcase ========== */
.home-page #hero-works .hero-project-card-wide {
    grid-column: 1 / -1 !important;
    grid-template-columns: 40% 60% !important;
}

.game-fishing-preview {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 18% 16%, rgba(255, 255, 255, 0.88), transparent 32%),
        linear-gradient(180deg, #dff6ff 0%, #dff6ff 46%, #79d0d2 46%, #4db1bd 100%) !important;
}

.game-fishing-scene {
    position: absolute;
    inset: 0;
    overflow: hidden;
    image-rendering: pixelated;
}

.game-sky {
    position: absolute;
    inset: 0 0 46%;
    background:
        radial-gradient(circle at 20% 28%, rgba(255, 255, 255, 0.86) 0 22px, transparent 23px),
        radial-gradient(circle at 31% 18%, rgba(255, 255, 255, 0.72) 0 16px, transparent 17px),
        linear-gradient(180deg, #b9e7ff, #e5fbff);
}

.game-shore {
    position: absolute;
    left: -8%;
    right: -8%;
    top: 38%;
    height: 24%;
    background:
        linear-gradient(180deg, rgba(132, 192, 75, 0.98), rgba(82, 143, 61, 0.98) 42%, #d6b474 43%, #b98953 100%);
    clip-path: polygon(0 8%, 30% 0, 58% 13%, 100% 3%, 100% 100%, 0 100%);
}

.game-water {
    position: absolute;
    inset: 56% 0 0;
    background:
        url("../assets/game-fishing/water.png") repeat,
        linear-gradient(180deg, rgba(126, 211, 218, 0.95), rgba(67, 159, 180, 0.96));
    background-size: 96px 24px, auto;
    opacity: 0.92;
}

.game-grass {
    position: absolute;
    left: 5%;
    top: 31%;
    width: 34%;
    max-width: 180px;
    image-rendering: pixelated;
}

.game-cat {
    position: absolute;
    left: 19%;
    top: 25%;
    width: 96px;
    height: 96px;
    background: url("../assets/game-fishing/character.png") 0 0 / 384px 384px no-repeat;
    image-rendering: pixelated;
    transform: translateZ(0);
    filter: drop-shadow(0 10px 10px rgba(25, 74, 93, 0.12));
}

.game-rod {
    position: absolute;
    left: 40%;
    top: 37%;
    width: 34%;
    height: 4px;
    border-radius: 999px;
    background: #7a4a24;
    transform: rotate(13deg);
    transform-origin: left center;
    box-shadow: 0 1px 0 rgba(255, 255, 255, 0.24);
}

.game-line {
    position: absolute;
    left: 69%;
    top: 43%;
    width: 1px;
    height: 28%;
    background: rgba(42, 47, 56, 0.48);
}

.game-bobber {
    position: absolute;
    left: calc(69% - 8px);
    top: 69%;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: linear-gradient(180deg, #fff 0 46%, #e83e46 47% 100%);
    box-shadow:
        0 0 0 3px rgba(255, 255, 255, 0.3),
        0 0 18px rgba(232, 62, 70, 0.3);
    animation: bobberShake 1.8s ease-in-out infinite;
}

.game-fish-sheet {
    position: absolute;
    right: 12%;
    bottom: 15%;
    width: 96px;
    image-rendering: pixelated;
    filter: drop-shadow(0 14px 16px rgba(25, 74, 93, 0.18));
    opacity: 0.86;
}

.game-ui {
    position: absolute;
    z-index: 4;
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    padding: 0 12px;
    border: 1px solid rgba(24, 50, 74, 0.12);
    border-radius: 999px;
    color: #18324a;
    background: rgba(248, 251, 255, 0.86);
    font-size: 12px;
    font-weight: 600;
    line-height: 1;
    box-shadow: 0 10px 20px rgba(25, 74, 93, 0.08);
}

.game-ui-score {
    top: 22px;
    left: 22px;
}

.game-ui-tip {
    right: 22px;
    bottom: 24px;
}

.game-fishing-preview-large {
    position: relative;
    min-height: 420px;
    border: 1px solid rgba(90, 78, 61, 0.12);
    border-radius: 8px;
    box-shadow: 0 18px 46px rgba(67, 55, 38, 0.07);
}

.game-fishing-preview-large .game-fishing-scene {
    position: absolute;
}

.home-page #works .works-panel.active {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
}

.home-page #works .work-media-showcase.game-fishing-preview {
    min-height: 400px !important;
}

.home-page #works .work-media-showcase.game-fishing-preview .game-fishing-scene {
    position: absolute;
}

@keyframes bobberShake {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    25% { transform: translateY(-5px) rotate(-8deg); }
    50% { transform: translateY(2px) rotate(6deg); }
    75% { transform: translateY(-3px) rotate(10deg); }
}

@media (max-width: 980px) {
    .home-page #hero-works .hero-project-card-wide,
    .home-page #hero-works .hero-project-card {
        grid-column: auto !important;
        grid-template-columns: 1fr !important;
    }

    .home-page #works .works-panel.active {
        grid-template-columns: 1fr !important;
    }
}

h1,
.section-heading,
.hero-name {
    margin: 0 0 32px !important;
    color: var(--text-title) !important;
    font-family: var(--font-portfolio) !important;
    font-size: var(--type-h1) !important;
    font-weight: 700 !important;
    line-height: 1.2 !important;
    letter-spacing: -0.02em !important;
}

h2,
.home-page .hero-works-heading h2,
.project-section-header h2,
.skills-section h2,
.section-heading-alt {
    margin: 0 0 32px !important;
    color: var(--text-title) !important;
    font-family: var(--font-portfolio) !important;
    font-size: var(--type-h2) !important;
    font-weight: 600 !important;
    line-height: 1.25 !important;
    letter-spacing: -0.02em !important;
}

h3,
.case-narrative h3,
.case-breakpoint-list h3,
.scenario-grid h3,
.scope-columns h3,
.prd-card h3,
.prototype-copy h3,
.summary-panel h3,
.workflow-grid h3,
.skills-card h3,
.skill-card h3,
.hero-project-copy h3 {
    margin: 0 0 12px !important;
    color: var(--text-title) !important;
    font-family: var(--font-portfolio) !important;
    font-size: var(--type-h3) !important;
    font-weight: 600 !important;
    line-height: 1.3 !important;
    letter-spacing: -0.02em !important;
}

h4,
.project-intro strong,
.case-kpi-grid strong,
.flow-steps strong,
.hero-reference-stats strong,
.about-card strong,
.timeline-card h4,
.work-card-title {
    margin: 0 0 12px !important;
    color: var(--text-title) !important;
    font-family: var(--font-portfolio) !important;
    font-size: var(--type-h4) !important;
    font-weight: 500 !important;
    line-height: 1.35 !important;
    letter-spacing: -0.02em !important;
}

p,
li,
.project-section p,
.project-section li,
.about-text p,
.hero-one-line,
.hero-project-copy p,
.project-intro-copy p,
.project-section-header p,
.case-kpi-grid p,
.summary-panel p,
.workflow-grid p,
.prd-card p,
.flow-steps p,
.scope-columns p,
.scenario-grid p,
.case-narrative p,
.case-breakpoint-list li,
.prototype-copy p,
.contact p {
    margin-top: 0 !important;
    margin-bottom: 24px !important;
    color: var(--text-body) !important;
    font-family: var(--font-portfolio) !important;
    font-size: var(--type-body) !important;
    font-weight: 400 !important;
    line-height: 1.6 !important;
    letter-spacing: 0 !important;
    text-align: left !important;
}

.body-large,
.project-intro-copy p,
.hero-one-line {
    font-size: var(--type-body-lg) !important;
    line-height: 1.55 !important;
}

small,
.nav-links a,
.cover-menu a,
.hero-skill-pills span,
.skill-tags span,
.work-tags span,
.project-action,
.project-back,
.hero-text-link,
.hero-cta,
.prd-link,
.work-meta,
.hero-project-kicker,
.hero-project-copy small,
.timeline-period,
.zoom-hint {
    color: var(--text-support) !important;
    font-family: var(--font-portfolio) !important;
    font-size: var(--type-small) !important;
    font-weight: 400 !important;
    line-height: 1.6 !important;
    letter-spacing: 0 !important;
}

.section-title,
.project-label,
.case-kpi-grid span,
.scenario-grid span,
.flow-steps span,
.workflow-grid span,
.prototype-copy span,
.rail-nav small,
.rail-footer,
.loader-caption,
.loader-name,
.hero-name-en,
.cover-announcement,
.home-page .hero-works-heading p,
.work-year,
.meta-note {
    color: var(--text-muted) !important;
    font-family: var(--font-portfolio) !important;
    font-size: var(--type-note) !important;
    font-weight: 400 !important;
    line-height: 1.6 !important;
    letter-spacing: 0 !important;
}

.logo,
.cover-brand,
.rail-logo {
    color: var(--text-title) !important;
    font-family: var(--font-portfolio) !important;
    font-weight: 600 !important;
}

.hero-curated-intro > *:last-child,
.project-section-header > *:last-child,
.project-intro-copy > *:last-child,
.case-narrative > *:last-child,
.prd-card > *:last-child,
.workflow-grid p:last-child,
.summary-panel p:last-child,
.prototype-copy > *:last-child {
    margin-bottom: 0 !important;
}

@media (max-width: 768px) {
    :root {
        --type-h1: 32px;
        --type-h2: 26px;
        --type-h3: 22px;
        --type-h4: 18px;
    }

    body,
    p,
    li,
    .project-section p,
    .project-section li,
    .about-text p,
    .hero-one-line,
    .project-intro-copy p,
    .project-section-header p {
        font-size: var(--type-body) !important;
    }
}

/* ========== Final Typography Lock At EOF ========== */
body.home-page .hero-reference .hero-name,
body:not(.home-page) .section-heading,
body:not(.home-page) .project-section-header h2,
body:not(.home-page) .project-section h3,
body:not(.home-page) .case-narrative h3,
body:not(.home-page) .case-breakpoint-list h3,
body:not(.home-page) .scenario-grid h3,
body:not(.home-page) .scope-columns h3,
body:not(.home-page) .prd-card h3,
body:not(.home-page) .prototype-copy h3,
body:not(.home-page) .workflow-grid h3,
body:not(.home-page) .summary-panel h3 {
    color: #111 !important;
    font-family: var(--font-portfolio) !important;
}

body.home-page .hero-reference .hero-one-line,
body:not(.home-page) .project-intro-copy p {
    color: #333 !important;
    font-size: var(--type-body-lg) !important;
    font-weight: 400 !important;
    line-height: 1.55 !important;
    letter-spacing: 0 !important;
    text-align: left !important;
}

body.home-page .hero-reference .hero-text-link,
body.home-page .hero-reference .hero-skill-pills span,
body:not(.home-page) .project-action:not(.project-action-primary),
body:not(.home-page) .project-back,
body:not(.home-page) .prd-link {
    color: #666 !important;
    font-family: var(--font-portfolio) !important;
    font-size: var(--type-small) !important;
    font-weight: 400 !important;
    line-height: 1.6 !important;
    letter-spacing: 0 !important;
}

body:not(.home-page) .project-section p,
body:not(.home-page) .project-section li,
body:not(.home-page) .project-section-header p,
body:not(.home-page) .case-kpi-grid p,
body:not(.home-page) .summary-panel p,
body:not(.home-page) .workflow-grid p,
body:not(.home-page) .prd-card p,
body:not(.home-page) .flow-steps p,
body:not(.home-page) .scope-columns p,
body:not(.home-page) .scenario-grid p,
body:not(.home-page) .case-narrative p,
body:not(.home-page) .case-breakpoint-list li,
body:not(.home-page) .prototype-copy p {
    color: #333 !important;
    font-family: var(--font-portfolio) !important;
    font-size: var(--type-body) !important;
    font-weight: 400 !important;
    line-height: 1.6 !important;
    letter-spacing: 0 !important;
    text-align: left !important;
}

body:not(.home-page) .section-title,
body:not(.home-page) .project-label,
body:not(.home-page) .case-kpi-grid span,
body:not(.home-page) .scenario-grid span,
body:not(.home-page) .flow-steps span,
body:not(.home-page) .workflow-grid span,
body:not(.home-page) .prototype-copy span {
    color: #999 !important;
    font-family: var(--font-portfolio) !important;
    font-size: var(--type-note) !important;
    font-weight: 400 !important;
    line-height: 1.6 !important;
    letter-spacing: 0 !important;
}


.home-page #hero-works .hero-project-media-zhike {
    background: #fff4eb;
    padding: 0;
}

.home-page #hero-works .hero-project-media-zhike .zhike-demo-shot {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transform: none;
}

.work-media-zhike {
    background: #f4eee3 !important;
    padding: 0 !important;
}

.work-media-zhike img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: center top !important;
    display: block !important;
    transform: none !important;
}

.work-media-dianshang {
    display: grid !important;
    place-items: center !important;
    padding: 28px !important;
    background:
        radial-gradient(circle at 78% 22%, rgba(223, 255, 79, 0.18), transparent 28%),
        linear-gradient(145deg, #f6f0e5, #e5dccb) !important;
}

.dianshang-preview {
    width: min(92%, 520px);
    height: 76%;
    min-height: 250px;
    display: grid;
    grid-template-columns: 96px 1fr;
    overflow: hidden;
    border: 1px solid rgba(127, 135, 92, 0.22);
    border-radius: 14px;
    background: rgba(255, 250, 240, 0.96);
    box-shadow: 0 18px 42px rgba(96, 78, 48, 0.12);
}

.dianshang-sidebar {
    display: grid;
    align-content: start;
    gap: 12px;
    padding: 18px 14px;
    background: #101827;
}

.dianshang-sidebar span,
.dianshang-sidebar b {
    display: block;
    border-radius: 999px;
}

.dianshang-sidebar span {
    width: 42px;
    height: 10px;
    background: #fffaf0;
}

.dianshang-sidebar b {
    height: 10px;
    background: rgba(255, 250, 240, 0.24);
}

.dianshang-sidebar b:first-of-type {
    background: #7f875c;
}

.dianshang-chat {
    position: relative;
    padding: 24px;
    color: #111;
}

.dianshang-chat i {
    display: block;
    width: 52%;
    height: 36px;
    margin-left: auto;
    margin-bottom: 20px;
    border-radius: 18px 18px 4px 18px;
    background: #f1eadc;
}

.dianshang-chat strong {
    display: block;
    font-size: 20px;
    line-height: 1.35;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.dianshang-chat p {
    max-width: 270px;
    margin: 10px 0 18px;
    color: #666;
    font-size: 14px;
    line-height: 1.6;
}

.dianshang-candidates {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.dianshang-candidates em {
    min-height: 76px;
    display: grid;
    place-items: center;
    border-radius: 10px;
    background: linear-gradient(135deg, #d8c7a8, #fbf7ef);
    color: #5f653f;
    font-style: normal;
    font-size: 13px;
    font-weight: 700;
}

.work-media-erp {
    display: grid !important;
    place-items: center !important;
    padding: 28px !important;
    background:
        radial-gradient(circle at 78% 22%, rgba(138, 175, 196, 0.22), transparent 30%),
        linear-gradient(145deg, #f8f3ea, #e9edf0) !important;
}

.erp-preview {
    width: min(92%, 540px);
    height: 76%;
    min-height: 250px;
    display: grid;
    grid-template-columns: 94px 1fr;
    overflow: hidden;
    border: 1px solid rgba(138, 175, 196, 0.24);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 18px 42px rgba(34, 57, 78, 0.13);
}

.erp-preview-side {
    display: grid;
    align-content: start;
    gap: 12px;
    padding: 18px 14px;
    background: #122033;
}

.erp-preview-side span,
.erp-preview-side b {
    display: block;
    border-radius: 999px;
}

.erp-preview-side span {
    width: 42px;
    height: 10px;
    background: #fff;
}

.erp-preview-side b {
    height: 10px;
    background: rgba(255, 255, 255, 0.22);
}

.erp-preview-side b:first-of-type {
    background: #8aafc4;
}

.erp-preview-main {
    padding: 22px;
    color: #16202a;
    background: #f5f7f9;
}

.erp-preview-main strong {
    display: block;
    margin-bottom: 14px;
    font-size: 20px;
    line-height: 1.35;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.erp-preview-metrics {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-bottom: 14px;
}

.erp-preview-metrics em {
    min-height: 58px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(138, 175, 196, 0.18);
    border-radius: 10px;
    background: #fff;
    color: #2c3e50;
    font-style: normal;
    font-weight: 800;
}

.erp-preview-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 10px;
}

.erp-preview-grid i {
    min-height: 92px;
    border-radius: 10px;
    border: 1px solid rgba(138, 175, 196, 0.18);
    background:
        linear-gradient(180deg, transparent 58%, rgba(138, 175, 196, 0.24) 58%),
        linear-gradient(135deg, #fff, #edf3f6);
}

/* ========== Homepage Hello Cover Refresh ========== */
body.home-page #intro.hello-cover {
    --cover-mx: 0px;
    --cover-my: 0px;
    position: relative !important;
    z-index: 160 !important;
    display: block !important;
    width: 100% !important;
    max-width: none !important;
    min-height: 100vh !important;
    margin: 0 !important;
    padding: 0 !important;
    overflow: hidden !important;
    color: #070707 !important;
    background:
        linear-gradient(rgba(15, 40, 46, 0.08) 1px, transparent 1px) 0 0 / 25vw 34.8vh,
        linear-gradient(90deg, rgba(15, 40, 46, 0.08) 1px, transparent 1px) 0 0 / 25vw 34.8vh,
        radial-gradient(circle at 31% 24%, rgba(247, 250, 222, 0.86), transparent 31%),
        radial-gradient(circle at 70% 45%, rgba(184, 233, 248, 0.86), transparent 35%),
        linear-gradient(115deg, #b9e4ef 0%, #edf4df 43%, #b6e4f3 100%) !important;
    border: 0 !important;
}

body.home-page #intro.hello-cover::before,
body.home-page #intro.hello-cover::after {
    position: absolute !important;
    content: "" !important;
    display: block !important;
    pointer-events: none !important;
}

body.home-page #intro.hello-cover::before {
    inset: 0 !important;
    z-index: 0 !important;
    background:
        radial-gradient(circle at calc(52% + var(--cover-mx)) calc(49% + var(--cover-my)), rgba(255, 255, 255, 0.48), transparent 24%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.32), rgba(255, 255, 255, 0.04)) !important;
}

body.home-page #intro.hello-cover::after {
    right: max(34px, 3.4vw) !important;
    bottom: 26px !important;
    z-index: 8 !important;
    width: 42px !important;
    height: 20px !important;
    border: 2px solid rgba(6, 18, 18, 0.78) !important;
    border-radius: 50% !important;
    background:
        linear-gradient(90deg, transparent calc(50% - 1px), rgba(6, 18, 18, 0.65) calc(50% - 1px) calc(50% + 1px), transparent calc(50% + 1px)),
        linear-gradient(transparent calc(50% - 1px), rgba(6, 18, 18, 0.65) calc(50% - 1px) calc(50% + 1px), transparent calc(50% + 1px)) !important;
}

body.home-page #intro.hello-cover .cover-announcement,
body.home-page #intro.hello-cover .cover-topbar,
body.home-page #intro.hello-cover .cover-orbit,
body.home-page #intro.hello-cover .cover-word,
body.home-page #intro.hello-cover .cover-scroll {
    display: none !important;
}

.hello-cover-top,
.hello-cover-note,
.hello-glass-word,
.hello-cover-title,
.hello-cover-meta,
.hello-cover-scroll {
    position: absolute;
    z-index: 4;
}

.hello-cover-top {
    top: 0;
    left: 0;
    right: 0;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 clamp(28px, 3vw, 56px);
}

.hello-cover-brand {
    color: #0b1112;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.6;
    letter-spacing: -0.02em;
}

.hello-cover-menu {
    display: flex;
    align-items: center;
    gap: clamp(22px, 2.4vw, 42px);
}

.hello-cover-menu a {
    color: #0b1112;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.6;
    letter-spacing: 0;
}

.hello-cover-note {
    top: 14.5vh;
    max-width: 420px;
    color: #0b1112;
}

.hello-cover-note span {
    display: block;
    margin-bottom: 12px;
    color: rgba(5, 16, 18, 0.9);
    font-size: 13px;
    font-weight: 700;
    line-height: 1.45;
    letter-spacing: -0.01em;
}

.hello-cover-note p {
    margin: 0;
    color: rgba(5, 16, 18, 0.74);
    font-size: 15px;
    font-weight: 500;
    line-height: 1.7;
    letter-spacing: 0;
}

.hello-cover-note-left {
    left: 26.2vw;
    width: min(270px, 18vw);
}

.hello-cover-note-right {
    left: 50.2vw;
    width: min(560px, 36vw);
}

.hello-glass-word {
    left: 50%;
    top: 55%;
    z-index: 2;
    width: min(84vw, 1560px);
    transform:
        translate(-50%, -50%)
        translate(calc(var(--cover-mx) * 0.45), calc(var(--cover-my) * 0.28));
    text-align: center;
    pointer-events: none;
}

.hello-glass-word span {
    position: relative;
    display: block;
    color: rgba(232, 248, 255, 0.26);
    font-family: "Inter", "Noto Sans SC", system-ui, sans-serif;
    font-size: clamp(240px, 31vw, 590px);
    font-weight: 700;
    line-height: 0.72;
    letter-spacing: -0.08em;
    filter:
        drop-shadow(0 38px 30px rgba(42, 119, 150, 0.12))
        drop-shadow(-18px -18px 30px rgba(255, 255, 255, 0.62))
        blur(0.08px);
    -webkit-text-stroke: 2px rgba(255, 255, 255, 0.42);
    text-shadow:
        0 -10px 20px rgba(255, 255, 255, 0.88),
        0 10px 28px rgba(93, 156, 184, 0.18),
        0 0 70px rgba(255, 255, 255, 0.28);
}

.hello-glass-word span::before,
.hello-glass-word span::after {
    position: absolute;
    content: "";
    display: block;
    pointer-events: none;
}

.hello-glass-word span::before {
    left: 23%;
    top: 13%;
    width: 6.5%;
    height: 2.4%;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.86);
    filter: blur(1px);
    transform: rotate(-12deg);
}

.hello-glass-word span::after {
    right: 7%;
    top: 52%;
    width: 11%;
    height: 3%;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.72);
    filter: blur(2px);
    transform: rotate(-8deg);
}

.hello-cover-title {
    left: clamp(28px, 2.7vw, 58px);
    bottom: clamp(92px, 8.7vh, 132px);
    z-index: 5;
    max-width: min(560px, 42vw);
}

.hello-cover-title p {
    margin: 0 !important;
    color: #050505 !important;
    font-size: clamp(46px, 5vw, 88px) !important;
    font-weight: 700 !important;
    line-height: 1.02 !important;
    letter-spacing: -0.05em !important;
}

.hello-cover-meta {
    bottom: 25px;
    color: #071010;
    font-size: 12px;
    font-weight: 500;
    line-height: 1.6;
    letter-spacing: 0.02em;
}

.hello-cover-meta-left {
    left: clamp(28px, 2.7vw, 58px);
}

.hello-cover-meta-center {
    left: 50%;
    transform: translateX(-50%);
}

.hello-cover-scroll {
    left: 50%;
    bottom: 54px;
    z-index: 7;
    transform: translateX(-50%);
    color: #0b1112;
    font-size: 12px;
    font-weight: 700;
    line-height: 1.6;
    letter-spacing: 0.18em;
}

body.home-page.intro-active .site-nav,
body.home-page.intro-active .home-side-rail {
    opacity: 0 !important;
    pointer-events: none !important;
    transform: translateY(-14px) !important;
}

@media (max-width: 980px) {
    .hello-cover-note-left {
        left: 7vw;
        width: 34vw;
    }

    .hello-cover-note-right {
        left: 48vw;
        width: 42vw;
    }

    .hello-glass-word {
        top: 51%;
        width: 92vw;
    }

    .hello-cover-title {
        bottom: 92px;
    }
}

@media (max-width: 760px) {
    body.home-page #intro.hello-cover {
        min-height: 760px !important;
        background:
            linear-gradient(rgba(15, 40, 46, 0.08) 1px, transparent 1px) 0 0 / 50vw 25vh,
            linear-gradient(90deg, rgba(15, 40, 46, 0.08) 1px, transparent 1px) 0 0 / 50vw 25vh,
            radial-gradient(circle at 35% 24%, rgba(247, 250, 222, 0.86), transparent 30%),
            radial-gradient(circle at 72% 48%, rgba(184, 233, 248, 0.86), transparent 38%),
            linear-gradient(115deg, #b9e4ef 0%, #edf4df 47%, #b6e4f3 100%) !important;
    }

    .hello-cover-top {
        height: 64px;
        padding: 0 22px;
    }

    .hello-cover-menu {
        gap: 16px;
    }

    .hello-cover-menu a {
        font-size: 12px;
    }

    .hello-cover-note {
        top: 106px;
    }

    .hello-cover-note-left {
        left: 22px;
        width: 42vw;
    }

    .hello-cover-note-right {
        left: auto;
        right: 22px;
        width: 46vw;
    }

    .hello-cover-note p {
        font-size: 13px;
        line-height: 1.6;
    }

    .hello-glass-word {
        top: 48%;
        width: 106vw;
    }

    .hello-glass-word span {
        font-size: clamp(170px, 46vw, 270px);
        letter-spacing: -0.09em;
    }

    .hello-cover-title {
        left: 22px;
        bottom: 94px;
        max-width: 72vw;
    }

    .hello-cover-title p {
        font-size: clamp(38px, 12vw, 60px) !important;
        line-height: 1.03 !important;
    }

    .hello-cover-meta-center {
        display: none;
    }
}

/* ========== About Profile Photo ========== */
.home-page .about-photo-card {
    position: relative !important;
    display: flex !important;
    min-height: 430px !important;
    padding: 0 !important;
    align-items: flex-end !important;
    justify-content: center !important;
    overflow: hidden !important;
    background: #efe6d7 !important;
}

.home-page .about-photo-card img {
    position: absolute !important;
    inset: 0 !important;
    z-index: 1 !important;
    display: block !important;
    width: 100% !important;
    max-width: none !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: center 30% !important;
    transform: none !important;
    filter: saturate(0.96) contrast(1.02) !important;
}

/* Keep the collaboration strip on one shared text baseline. */
.home-page .home-collab-strip {
    grid-template-columns: 42px max-content minmax(190px, 1fr) minmax(240px, 1fr) max-content !important;
    gap: 24px !important;
    align-items: center !important;
}

.home-page .home-collab-strip > span,
.home-page .home-collab-strip > strong,
.home-page .home-collab-strip > p,
.home-page .home-collab-strip > a {
    align-self: center !important;
    margin: 0 !important;
    line-height: 1.6 !important;
}

.home-page .home-collab-strip > strong,
.home-page .home-collab-strip > a {
    white-space: nowrap;
}

.home-page .home-collab-strip > a {
    justify-self: end;
}

@media (max-width: 980px) {
    .home-page .home-collab-strip {
        grid-template-columns: 1fr !important;
        gap: 10px !important;
        justify-items: start !important;
        padding: 22px 24px !important;
    }

    .home-page .home-collab-strip > a {
        justify-self: start;
    }
}

@media (max-width: 760px) {
    .home-page .about-photo-card {
        min-height: 390px !important;
    }

    .home-page .about-photo-card img {
        width: 100% !important;
        object-position: center 28% !important;
    }
}

/* Featured cards: keep the first two project descriptions visible. */
.home-page #hero-works .hero-project-card:nth-child(-n + 2) {
    height: auto !important;
    min-height: 400px !important;
    max-height: none !important;
    grid-template-rows: none !important;
}

.home-page #hero-works .hero-project-card:nth-child(-n + 2) .hero-project-copy {
    height: auto !important;
    min-height: 400px !important;
    max-height: none !important;
    overflow: visible !important;
    padding: 28px 24px !important;
    justify-content: center !important;
}

.home-page #hero-works .hero-project-card:nth-child(-n + 2) .hero-project-copy strong {
    font-size: 28px !important;
    line-height: 1.25 !important;
    margin-bottom: 10px !important;
}

.home-page #hero-works .hero-project-card:nth-child(-n + 2) .hero-project-copy em {
    margin-bottom: 16px !important;
}

.home-page #hero-works .hero-project-card:nth-child(-n + 2) .hero-project-copy p {
    margin-bottom: 18px !important;
    line-height: 1.7 !important;
}

.home-page #hero-works .hero-project-card:nth-child(-n + 2) .project-tags {
    margin-bottom: 22px !important;
}

.home-page #hero-works .hero-project-card:nth-child(-n + 2) .hero-project-media {
    height: auto !important;
    min-height: 400px !important;
    max-height: none !important;
}
