/* ============================================================
   今穿主题 — 主样式表
   包含：重置 / 导航 / 首屏 Banner / 功能区 / 下载区 / 文章模板 / 列表模板
   ============================================================ */

/* ─── 变量 ─── */
:root {
    --nav-h: 52px;
    --font: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text",
        "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
    --blue:        #2997ff;
    --blue-hover:  #0077ed;
    --blue-light:  #64b0ff;
    --ink:         #1d1d1f;
    --ink-sub:     rgba(29, 29, 31, 0.65);
    --ink-muted:   rgba(29, 29, 31, 0.45);
    --line:        rgba(0, 0, 0, 0.10);
    --section-gap: clamp(6px, 1vw, 12px);
    --section-gutter: clamp(4px, 1vw, 10px);
}

/* ─── Reset ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
    font-family: var(--font);
    background: #fff;
    color: var(--ink);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    line-height: 1.6;
}

main { background: #fff; }

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button { border: none; background: none; cursor: pointer; font-family: inherit; color: inherit; }

/* ─── 导航 ─── */
.nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 200;
    height: var(--nav-h);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 clamp(16px, 4vw, 40px);
    background: #fff;
    border-bottom: 1px solid rgba(0,0,0,0.10);
    color: #1d1d1f;
}

.nav-brand {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    z-index: 1;
}
.nav-brand img {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    object-fit: cover;
}
.nav-brand svg, .nav-brand .custom-logo-link {
    display: flex;
    align-items: center;
}
.nav-left {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    z-index: 1;
}
.nav-brand--mobile {
    display: none;
}

.nav-center {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: clamp(20px, 3.5vw, 36px);
}
.nav-menu {
    display: flex;
    align-items: center;
    gap: clamp(20px, 3.5vw, 36px);
    list-style: none;
}
.nav-menu a {
    font-size: 12px;
    font-weight: 500;
    color: rgba(0, 0, 0, 0.68);
    white-space: nowrap;
    transition: color 0.2s;
    letter-spacing: 0.01em;
}
.nav-menu a:hover { color: #1d1d1f; }
.nav-menu li.current-menu-item a,
.nav-menu li.current-menu-item a { color: #2997ff; font-weight: 600; }

/* WP 后台自动添加的 .current-menu-item 类 */
.nav-menu .current-menu-item > a { color: #2997ff; font-weight: 600; }

.nav-right {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
    z-index: 1;
}
.nav-menu-toggle {
    display: none;
    width: 40px;
    height: 40px;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    background: rgba(255, 255, 255, 0.94);
    transition: background 0.2s ease, border-color 0.2s ease, transform 0.15s ease;
}
.nav-menu-toggle:hover {
    background: rgba(0, 0, 0, 0.04);
}
.nav-menu-toggle:active {
    transform: scale(0.97);
}
.nav-menu-toggle span {
    position: absolute;
    width: 16px;
    height: 1.5px;
    border-radius: 999px;
    background: #1d1d1f;
    transition: transform 0.22s ease, opacity 0.18s ease;
}
.nav-menu-toggle span:nth-child(1) { transform: translateY(-5px); }
.nav-menu-toggle span:nth-child(2) { transform: translateY(0); }
.nav-menu-toggle span:nth-child(3) { transform: translateY(5px); }
.nav-menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(0) rotate(45deg); }
.nav-menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(0) rotate(-45deg); }
.nav-download {
    position: relative;
    display: inline-flex;
    align-items: center;
}
.nav-cta {
    font-size: 13px;
    font-weight: 600;
    padding: 8px 18px;
    border-radius: 980px;
    background: var(--blue);
    color: #fff;
    letter-spacing: 0.02em;
    white-space: nowrap;
    box-shadow: 0 2px 10px rgba(41, 151, 255, 0.28);
    transition: background 0.2s, box-shadow 0.2s, transform 0.15s;
}
.nav-cta:hover {
    background: var(--blue-hover);
    box-shadow: 0 4px 16px rgba(41, 151, 255, 0.38);
}
.nav-cta:active { transform: scale(0.98); }

.nav-download__panel {
    position: absolute;
    right: 0;
    top: calc(100% + 14px);
    width: min(320px, calc(100vw - 24px));
    padding: 14px;
    border-radius: 22px;
    background: rgba(12, 12, 14, 0.96);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.35);
    backdrop-filter: blur(18px);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px) scale(0.98);
    pointer-events: none;
    transition: opacity 0.22s ease, transform 0.22s cubic-bezier(0.22, 1, 0.36, 1), visibility 0.22s ease;
    z-index: 2;
}
.nav-download.is-open .nav-download__panel {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
    pointer-events: auto;
}
.nav-download__label {
    margin-bottom: 12px;
    font-size: 12px;
    line-height: 1.5;
    color: rgba(245, 245, 247, 0.72);
}
.nav-download__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
}
.nav-download__item {
    display: grid;
    justify-items: center;
    gap: 8px;
    padding: 12px 10px 10px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.06);
}
.nav-download__item img {
    width: 92px;
    aspect-ratio: 1;
    object-fit: contain;
    border-radius: 14px;
    background: #fff;
    padding: 6px;
}
.nav-download__item span {
    font-size: 12px;
    font-weight: 600;
    color: rgba(245, 245, 247, 0.92);
}
.nav-mobile {
    display: none;
}

/* ─── Banner ─── */
.hero--banner {
    padding-top: var(--nav-h);
    background: #000;
    min-height: 100svh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.hero--banner::before {
    content: "";
    position: absolute;
    inset: auto 50% -22% auto;
    width: min(1100px, 82vw);
    aspect-ratio: 1;
    transform: translateX(50%);
    background:
        radial-gradient(circle, rgba(120, 182, 255, 0.18) 0%, rgba(120, 182, 255, 0.08) 28%, transparent 68%);
    filter: blur(56px);
    pointer-events: none;
}

.hero__banner {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: clamp(20px, 4vw, 40px) clamp(16px, 4vw, 40px) clamp(32px, 6vw, 72px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: calc(100svh - var(--nav-h));
    gap: clamp(16px, 3vw, 28px);
    position: relative;
    z-index: 1;
}

.hero__intro {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 12px;
    opacity: 0;
    transform: translateY(22px);
    animation: heroFadeUp 0.85s cubic-bezier(0.22, 1, 0.36, 1) 0.06s forwards;
}

.hero__logo {
    width: clamp(72px, 15vw, 96px);
    height: clamp(72px, 15vw, 96px);
    border-radius: 20px;
    object-fit: cover;
    border: 1px solid rgba(255, 255, 255, 0.34);
    box-shadow:
        0 0 0 2px rgba(255, 255, 255, 0.14),
        0 0 26px rgba(255, 255, 255, 0.20),
        0 10px 40px rgba(0, 0, 0, 0.45);
}

.hero__slogan {
    font-size: clamp(34px, 7.5vw, 56px);
    font-weight: 600;
    letter-spacing: -0.03em;
    line-height: 1.15;
    color: #f5f5f7;
}

.hero__store-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 12px 24px;
    margin-top: 6px;
    opacity: 0;
    transform: translateY(18px);
    animation: heroFadeUp 0.85s cubic-bezier(0.22, 1, 0.36, 1) 0.18s forwards;
}

.store-badge-wrap {
    position: relative;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
}

.store-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 16px 7px 12px;
    min-height: 42px;
    border-radius: 980px;
    background: #0066DD;
    color: #fff;
    box-shadow: 0 2px 10px rgba(0, 102, 221, 0.30);
    transition: background 0.2s, box-shadow 0.2s, transform 0.15s;
}
.store-badge:hover {
    background: #0052B3;
    box-shadow: 0 4px 16px rgba(0, 102, 221, 0.40);
}
.store-badge:active { transform: scale(0.98); }

.store-qr {
    position: absolute;
    left: 50%;
    bottom: calc(100% + 16px);
    transform: translate(-50%, 14px) scale(0.96);
    width: 172px;
    padding: 12px 12px 10px;
    border-radius: 22px;
    background: rgba(10, 12, 18, 0.94);
    border: 1px solid rgba(255,255,255,0.08);
    box-shadow:
        0 22px 48px rgba(0,0,0,0.42),
        0 10px 20px rgba(0,0,0,0.24);
    backdrop-filter: blur(20px);
    display: grid;
    gap: 8px;
    justify-items: center;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition:
        opacity 0.26s ease,
        transform 0.32s cubic-bezier(0.22, 1, 0.36, 1),
        visibility 0.26s ease;
}

.store-qr::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -7px;
    width: 14px;
    height: 14px;
    background: rgba(10, 12, 18, 0.94);
    border-right: 1px solid rgba(255,255,255,0.08);
    border-bottom: 1px solid rgba(255,255,255,0.08);
    transform: translateX(-50%) rotate(45deg);
}

.store-qr img {
    width: 100%;
    max-width: 132px;
    aspect-ratio: 1;
    object-fit: contain;
    border-radius: 16px;
    background: #fff;
    padding: 8px;
}

.store-qr span {
    font-size: 12px;
    font-weight: 500;
    line-height: 1.35;
    color: rgba(245,245,247,0.86);
    text-align: center;
}

.store-badge-wrap.is-open .store-qr {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, 0) scale(1);
}

.store-badge__icon { flex-shrink: 0; opacity: 0.92; }

.store-badge__text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    line-height: 1.15;
    text-align: left;
}
.store-badge__line1 {
    font-size: 9px;
    font-weight: 500;
    letter-spacing: 0.03em;
    opacity: 0.82;
}
.store-badge__line2 {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: -0.01em;
    margin-top: 1px;
}

.hero__focus {
    width: min(420px, 86vw);
    display: grid;
    justify-items: center;
    gap: 20px;
    margin-top: 8px;
    position: relative;
    isolation: isolate;
    opacity: 0;
    transform: translateY(26px);
    animation: heroFadeUp 1s cubic-bezier(0.22, 1, 0.36, 1) 0.28s forwards;
}

.hero__focus::before {
    content: "";
    position: absolute;
    z-index: -1;
    inset: 12% -24% -6%;
    border-radius: 999px;
    background:
        radial-gradient(ellipse at 50% 48%, rgba(255,255,255,0.12) 0%, rgba(126,182,255,0.16) 34%, transparent 72%);
    filter: blur(42px);
    animation: heroGlowPulse 7.8s ease-in-out infinite;
}

.hero-carousel {
    --hero-accent-rgb: 124 188 255;
    --hero-autoplay: 5200ms;
    --hero-dot-play-state: running;
    position: relative;
    width: min(346px, 76vw, calc((100svh - 252px) / 2.08));
    aspect-ratio: 1 / 2.24;
    overflow: visible;
    perspective: 1600px;
}

.hero-carousel::before,
.hero-carousel::after {
    content: "";
    position: absolute;
    z-index: 0;
    left: 50%;
    pointer-events: none;
    transform: translateX(-50%);
    transition: opacity 0.9s ease, transform 0.9s ease;
}

.hero-carousel::before {
    top: 13%;
    width: 88%;
    height: 52%;
    background:
        radial-gradient(circle, rgba(var(--hero-accent-rgb), 0.24) 0%, rgba(var(--hero-accent-rgb), 0.12) 34%, transparent 72%);
    filter: blur(42px);
    opacity: 0.92;
}

.hero-carousel::after {
    bottom: 3%;
    width: 76%;
    height: 11%;
    background:
        radial-gradient(ellipse at center, rgba(255,255,255,0.18) 0%, rgba(var(--hero-accent-rgb), 0.08) 42%, transparent 75%);
    filter: blur(24px);
    opacity: 0.72;
}

.hero-carousel__track {
    position: relative;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-carousel__slide {
    position: absolute;
    inset: 0;
    padding: clamp(16px, 2vw, 20px) clamp(4px, 0.8vw, 8px) clamp(28px, 3vw, 34px);
    display: grid;
    place-items: center;
    opacity: 0;
    transform: translate3d(0, 34px, 0) scale(0.94);
    filter: blur(7px) brightness(0.78) saturate(0.84);
    transition:
        opacity 0.75s ease,
        transform 0.95s cubic-bezier(0.22, 1, 0.36, 1),
        filter 0.95s cubic-bezier(0.22, 1, 0.36, 1);
    pointer-events: none;
}

.hero-carousel:not(.is-ready) .hero-carousel__slide:first-child,
.hero-carousel__slide.is-active {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
    filter: blur(0) brightness(1) saturate(1);
    z-index: 3;
}

.hero-carousel__slide.is-exit {
    opacity: 0;
    transform: translate3d(0, -18px, 0) scale(1.035);
    filter: blur(9px) brightness(0.82) saturate(0.88);
    z-index: 2;
}

.hero-carousel__slide img {
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    object-position: center;
    filter:
        drop-shadow(0 40px 54px rgba(0,0,0,0.48))
        drop-shadow(0 0 24px rgba(255,255,255,0.12));
}

.hero-carousel.is-ready .hero-carousel__slide.is-active img {
    animation: heroPhoneFloat var(--hero-autoplay) ease-in-out infinite;
}

.hero-carousel__slide.is-exit img {
    animation: none;
}

@keyframes heroFadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes heroGlowPulse {
    0%, 100% {
        opacity: 0.72;
        transform: scale(0.98);
    }
    50% {
        opacity: 1;
        transform: scale(1.04);
    }
}

@keyframes heroDotProgress {
    from { transform: scaleX(0); }
    to { transform: scaleX(1); }
}

@keyframes heroPhoneFloat {
    0%, 100% {
        transform: translate3d(0, 0, 0) rotate(-0.2deg);
    }
    50% {
        transform: translate3d(0, -10px, 0) rotate(0.2deg);
    }
}

/* ─── 功能区基础 ─── */
.feat {
    --feat-bg: #f7f5ef;
    --feat-ink: #131313;
    --feat-sub: rgba(19, 19, 19, 0.62);
    --feat-glow-a: rgba(255,255,255,0.96);
    --feat-glow-b: rgba(146, 192, 255, 0.20);
    padding: clamp(72px, 10vw, 120px) 0;
    margin-left: var(--section-gutter);
    margin-right: var(--section-gutter);
    margin-bottom: var(--section-gap);
    overflow: hidden;
    background: var(--feat-bg);
}

.feat__head {
    text-align: center;
    padding: 0 clamp(24px, 6vw, 48px);
}
.feat__head h2 {
    font-size: clamp(36px, 6vw, 64px);
    font-weight: 700;
    letter-spacing: -0.03em;
    line-height: 1.06;
    color: var(--feat-ink);
}
.feat__head p {
    margin-top: 12px;
    font-size: clamp(15px, 1.6vw, 19px);
    font-weight: 400;
    color: var(--feat-sub);
    line-height: 1.5;
}

.feat--wardrobe {
    margin-top: var(--section-gap);
    --feat-bg: #f8f6f1;
    --feat-ink: #151515;
    --feat-sub: rgba(21, 21, 21, 0.62);
    --feat-glow-a: rgba(255,255,255,0.98);
    --feat-glow-b: rgba(130, 172, 255, 0.18);
}

.feat--tryon {
    --feat-bg: #000;
    --feat-ink: #f5f5f7;
    --feat-sub: rgba(245,245,247,0.62);
    --feat-glow-a: rgba(129, 169, 255, 0.24);
    --feat-glow-b: rgba(86, 129, 255, 0.15);
}

.feat--recommend {
    --feat-bg: #fff;
    --feat-ink: #111111;
    --feat-sub: rgba(17, 17, 17, 0.62);
    --feat-glow-a: rgba(255,255,255,0.98);
    --feat-glow-b: rgba(189, 164, 255, 0.16);
}

.feat--matching {
    --feat-bg: #000;
    --feat-ink: #f5f5f7;
    --feat-sub: rgba(245,245,247,0.62);
    --feat-glow-a: rgba(144, 218, 190, 0.24);
    --feat-glow-b: rgba(73, 149, 118, 0.16);
}

.feat--backup {
    --feat-bg: #f7f5ef;
    --feat-ink: #121212;
    --feat-sub: rgba(18, 18, 18, 0.62);
    --feat-glow-a: rgba(255,255,255,0.98);
    --feat-glow-b: rgba(131, 214, 236, 0.18);
}

.feat__inner {
    max-width: 1200px;
    margin: clamp(40px, 6vw, 72px) auto 0;
    padding: 0 clamp(24px, 6vw, 80px);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(32px, 5vw, 72px);
    align-items: center;
}
.feat__inner--center {
    grid-template-columns: 1fr;
    justify-items: center;
}
.feat__inner--center .feat__media {
    width: min(390px, 86vw, calc((100svh - 180px) / 2));
    max-width: 100%;
    aspect-ratio: 1 / 2;
    height: auto;
}

.feat__media {
    position: relative;
    display: grid;
    place-items: center;
    isolation: isolate;
}

.feat__media::before {
    content: "";
    position: absolute;
    z-index: -1;
    width: min(680px, 80%);
    aspect-ratio: 1;
    border-radius: 999px;
    background:
        radial-gradient(circle at 50% 48%, var(--feat-glow-a) 0%, var(--feat-glow-b) 34%, transparent 72%);
    filter: blur(28px);
}

.feat__media img {
    width: 100%; height: auto;
    border-radius: 20px;
    box-shadow: 0 24px 80px rgba(0,0,0,0.60);
}

.feat__media img.phone-shot {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    max-height: none;
    object-fit: contain;
    object-position: center;
    margin: 0 auto;
    border-radius: 0;
    box-shadow: none;
    filter:
        drop-shadow(0 34px 56px rgba(0,0,0,0.56))
        drop-shadow(0 0 22px rgba(255,255,255,0.10));
}

/* ─── 下载区 ─── */
.download {
    padding: clamp(80px, 12vw, 130px) 24px;
    margin-left: var(--section-gutter);
    margin-right: var(--section-gutter);
    margin-bottom: var(--section-gap);
    overflow: hidden;
    background: #000;
    text-align: center;
}
.download__inner {
    max-width: min(920px, calc(100vw - 32px));
    margin: 0 auto;
    display: flex; flex-direction: column;
    align-items: center; gap: 16px;
    padding: 0 8px;
}
.download__icon {
    width: 64px; height: 64px;
    border-radius: 16px; object-fit: cover;
    border: 1px solid rgba(255, 255, 255, 0.36);
    box-shadow:
        0 0 0 2px rgba(255, 255, 255, 0.12),
        0 0 24px rgba(255, 255, 255, 0.18),
        0 14px 34px rgba(0, 0, 0, 0.44);
}
.download__title {
    font-size: clamp(13px, 3.5vw, 42px);
    font-weight: 700;
    letter-spacing: -0.025em;
    line-height: 1.15;
    color: #f5f5f7;
    white-space: nowrap;
    max-width: 100%;
}

.download__title .nobreak {
    white-space: nowrap;
}

/* ─── 页脚 ─── */
.foot {
    padding: 36px 24px 44px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 28px;
    font-size: 12px;
    color: #b7b7bc;
    background: #000;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.foot a {
    color: inherit;
    transition: color 0.2s ease, opacity 0.2s ease;
}

.foot a:hover {
    color: #f5f5f7;
}

.foot__actions,
.foot__links,
.foot__meta {
    display: flex;
    align-items: center;
    justify-content: center;
}

.foot__actions {
    gap: clamp(28px, 6vw, 56px);
}

.foot__action {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    font-weight: 500;
    color: #f5f5f7;
}

.foot__icon {
    color: #d7d7dc;
    flex-shrink: 0;
}

.foot__icon--accent {
    color: #ff3b30;
}

.foot__links {
    flex-wrap: wrap;
    gap: clamp(28px, 5vw, 48px);
    font-size: 14px;
    color: #8f8f96;
}

.foot__links--friends {
    max-width: min(100%, 860px);
    gap: 12px clamp(18px, 4vw, 34px);
}

.foot__meta {
    flex-direction: column;
    gap: 6px;
    font-size: 13px;
    line-height: 1.7;
    color: #d0d0d5;
}

.foot__meta a {
    color: #d0d0d5;
}

/* ─── 内容页新风格 ─── */
.home-editorial,
.journal,
.story-single {
    padding: calc(var(--nav-h) + 22px) clamp(18px, 4vw, 44px) 96px;
}

.home-editorial,
.journal,
.story-single,
.home-editorial a,
.journal a,
.story-single a {
    color: #111;
}

.journal,
.story-single,
.home-editorial {
    max-width: 1560px;
    margin: 0 auto;
    color: #111111;
}

.journal--news,
.journal--columns,
.journal--recommendations,
.story-single--editorial {
    background: linear-gradient(180deg, rgba(255,255,255,0.98) 0%, rgba(246,242,236,0.94) 100%);
}

.editorial-hero {
    display: grid;
    grid-template-columns: minmax(108px, 140px) minmax(0, 1fr);
    gap: clamp(18px, 3vw, 42px);
    align-items: start;
    padding: clamp(16px, 3vw, 30px) 0 clamp(20px, 4vw, 36px);
    border-bottom: 1px solid rgba(17, 17, 17, 0.1);
    margin-bottom: clamp(22px, 3vw, 36px);
}

.editorial-hero__rail {
    display: grid;
    gap: 10px;
    align-content: start;
    padding-top: 10px;
}

.editorial-hero__kicker,
.editorial-hero__note,
.editorial-hero__index,
.editorial-stream__meta,
.editorial-lead__meta,
.editorial-card__meta,
.editorial-row__meta,
.story-single__eyebrow,
.story-single__meta--editorial {
    font-size: 11px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(17, 17, 17, 0.46);
}

.editorial-hero__note {
    padding-top: 14px;
    border-top: 1px solid rgba(17, 17, 17, 0.12);
}

.editorial-hero__main {
    display: grid;
    gap: 10px;
    max-width: 860px;
}

.editorial-hero__main h1 {
    font-family: "Times New Roman", "Iowan Old Style", "Baskerville", Georgia, serif;
    font-size: clamp(42px, 6vw, 84px);
    font-weight: 600;
    line-height: 0.94;
    letter-spacing: -0.045em;
    margin: 0;
    text-wrap: balance;
}

.story-single__hero--editorial h1 {
    font-family: "Times New Roman", "Iowan Old Style", "Baskerville", Georgia, serif;
    font-size: clamp(42px, 4.8vw, 72px);
    font-weight: 600;
    line-height: 1;
    letter-spacing: -0.04em;
    max-width: min(100%, 22ch);
    margin: 0;
    text-wrap: balance;
}

.editorial-hero__summary {
    max-width: 560px;
    font-size: clamp(16px, 1.6vw, 19px);
    line-height: 1.8;
    color: rgba(17, 17, 17, 0.7);
}

.editorial-lead {
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
    gap: clamp(22px, 3.5vw, 46px);
    align-items: end;
    margin-bottom: clamp(24px, 4vw, 42px);
}

.editorial-lead--columns {
    grid-template-columns: minmax(440px, 1fr) minmax(360px, 0.82fr);
    align-items: center;
}

.editorial-lead--news {
    grid-template-columns: minmax(360px, 0.95fr) minmax(520px, 1.05fr);
    align-items: center;
}

.editorial-lead--recommendations {
    grid-template-columns: minmax(280px, 0.66fr) minmax(520px, 1.34fr);
    align-items: center;
}

.editorial-lead--columns .editorial-lead__image-link {
    width: min(620px, 100%);
    justify-self: end;
}

.editorial-lead--recommendations .editorial-lead__image-link {
    width: min(420px, 100%);
    justify-self: center;
}

.editorial-lead__image-link,
.editorial-card__media,
.editorial-row__media {
    display: block;
}

.editorial-lead__image-wrap,
.editorial-card__media,
.editorial-row__media,
.story-single__cover--editorial {
    position: relative;
    overflow: hidden;
    background: #ece7e1;
}

.editorial-lead__image-wrap {
    aspect-ratio: 4 / 5;
    border-radius: 28px;
}

.editorial-lead--news .editorial-lead__image-wrap {
    aspect-ratio: 6 / 5;
}

.editorial-lead--columns .editorial-lead__image-wrap {
    aspect-ratio: 6 / 5;
}

.editorial-lead__image-wrap--portrait {
    aspect-ratio: 4 / 5.2;
}

.editorial-lead--recommendations .editorial-lead__image-wrap--portrait {
    aspect-ratio: 1 / 1.42;
    padding: clamp(18px, 2.2vw, 28px);
    background: linear-gradient(180deg, #f4efe9 0%, #eee7df 100%);
}

.editorial-lead__image,
.editorial-card__image,
.editorial-row__image,
.story-single__cover-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.22, 1, 0.36, 1), filter 0.45s ease;
}

.editorial-lead__image--portrait,
.editorial-row__image--portrait {
    object-position: center top;
}

.editorial-lead--recommendations .editorial-lead__image--portrait {
    object-fit: contain;
    object-position: center center;
}

.editorial-lead__image-link:hover .editorial-lead__image,
.editorial-card__media:hover .editorial-card__image,
.editorial-row__media:hover .editorial-row__image,
.story-single__cover--editorial:hover .story-single__cover-image {
    transform: scale(1.035);
}

.editorial-lead__body,
.editorial-card__body,
.editorial-row__body,
.story-single__hero--editorial {
    display: grid;
    gap: 12px;
    min-width: 0;
}

.editorial-lead__body h2,
.editorial-card__body h2,
.editorial-row__body h2 {
    font-family: "Times New Roman", "Iowan Old Style", "Baskerville", Georgia, serif;
    font-weight: 600;
    letter-spacing: -0.04em;
    line-height: 1;
    text-wrap: balance;
}

.editorial-lead__body h2 {
    font-size: clamp(40px, 4.4vw, 66px);
    max-width: min(100%, 19ch);
}

.editorial-lead--news .editorial-lead__body h2 {
    font-size: clamp(38px, 4.1vw, 62px);
    max-width: min(100%, 22ch);
}

.editorial-lead--columns .editorial-lead__body h2 {
    max-width: min(100%, 18ch);
}

.editorial-lead--recommendations .editorial-lead__body h2 {
    font-size: clamp(40px, 4.4vw, 66px);
    max-width: min(100%, 20ch);
}

.editorial-card__body h2,
.editorial-row__body h2 {
    font-size: clamp(26px, 2.8vw, 38px);
}

.editorial-lead__body p,
.editorial-card__body p,
.editorial-row__body p {
    max-width: 34em;
    font-size: 16px;
    line-height: 1.9;
    color: rgba(17, 17, 17, 0.68);
}

.editorial-lead__cta {
    display: inline-flex;
    width: fit-content;
    align-items: center;
    gap: 8px;
    padding-bottom: 2px;
    border-bottom: 1px solid rgba(17, 17, 17, 0.5);
    font-size: 12px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.editorial-stream {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 18px 28px;
    padding: 24px 0 30px;
    margin-bottom: clamp(16px, 4vw, 34px);
    border-top: 1px solid rgba(17, 17, 17, 0.1);
    border-bottom: 1px solid rgba(17, 17, 17, 0.1);
}

.editorial-stream__item {
    display: grid;
    grid-template-columns: minmax(112px, 136px) minmax(0, 1fr);
    gap: 14px;
    align-items: start;
    min-width: 0;
}

.editorial-stream__thumb {
    display: block;
    aspect-ratio: 4 / 5;
    border-radius: 18px;
    overflow: hidden;
    background: #ece7e1;
}

.editorial-stream__content {
    display: grid;
    align-content: start;
    gap: 10px;
    min-width: 0;
}

.editorial-stream__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.editorial-stream__thumb:hover .editorial-stream__image {
    transform: scale(1.035);
}

.editorial-stream__item h3 {
    font-size: clamp(22px, 2vw, 28px);
    line-height: 1.04;
    letter-spacing: -0.04em;
}

.editorial-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: clamp(32px, 5vw, 56px) clamp(22px, 3vw, 34px);
}

.editorial-card {
    display: grid;
    gap: 18px;
    align-content: start;
    padding-top: 4px;
}

.editorial-card__media {
    aspect-ratio: 1 / 1.15;
    border-radius: 24px;
}

.editorial-card__body {
    padding-right: clamp(0px, 2vw, 22px);
}

.editorial-list {
    display: grid;
    gap: clamp(30px, 4vw, 48px);
}

.editorial-row {
    display: grid;
    grid-template-columns: minmax(220px, 320px) minmax(0, 1fr);
    gap: clamp(22px, 4vw, 44px);
    align-items: start;
    padding-top: clamp(22px, 3vw, 34px);
    border-top: 1px solid rgba(17, 17, 17, 0.1);
}

.editorial-row__media {
    aspect-ratio: 4 / 5;
    border-radius: 22px;
}

.editorial-row__media--portrait {
    aspect-ratio: 4 / 5.3;
}

.editorial-row--recommendation .editorial-row__body h2 {
    max-width: 18ch;
}

.journal--columns .editorial-row {
    grid-template-columns: minmax(220px, 300px) minmax(0, 1fr);
}

.journal--columns .editorial-row__media {
    aspect-ratio: 6 / 5;
}

.journal-empty {
    padding: 54px 0;
    color: rgba(17, 17, 17, 0.48);
}

.story-single {
    max-width: 1480px;
}

.story-single__shell {
    display: grid;
    gap: 26px;
}

.story-single__hero--editorial {
    grid-template-columns: minmax(112px, 160px) minmax(0, 1fr);
    gap: 10px clamp(22px, 4vw, 56px);
    max-width: 1180px;
    margin: 0 auto;
    justify-items: stretch;
    align-items: start;
    text-align: left;
    padding: clamp(16px, 3vw, 30px) 0 clamp(18px, 3vw, 30px);
    border-bottom: 1px solid rgba(17, 17, 17, 0.1);
}

.story-single__eyebrow {
    grid-column: 1;
    grid-row: 1;
}

.story-single__hero--editorial h1 {
    grid-column: 2;
    grid-row: 1 / span 2;
}

.story-single__meta--editorial {
    grid-column: 1;
    grid-row: 2;
}

.story-single__meta--editorial {
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: flex-start;
    justify-content: flex-start;
    line-height: 1.7;
}

.story-single__topics {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-top: 2px;
}

.story-single__topics span {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 0 14px;
    border-radius: 999px;
    background: rgba(17, 17, 17, 0.05);
    font-size: 11px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(17, 17, 17, 0.68);
}

.story-single__cover--editorial {
    width: min(100%, 1280px);
    margin: 0 auto;
    border-radius: 30px;
    aspect-ratio: 16 / 10;
}

.story-single--recommendation .story-single__cover--editorial {
    width: min(100%, 880px);
    aspect-ratio: 4 / 5.2;
}

.story-single__cover--editorial .jinchuan-cover-placeholder {
    min-height: min(64svh, 720px);
}

.story-single__content--full {
    display: block;
}

.story-single__body--editorial {
    max-width: 760px;
    margin: 0 auto;
    padding-top: clamp(12px, 2vw, 20px);
    border-top: none;
    font-size: clamp(17px, 1.4vw, 19px);
    line-height: 2;
    color: rgba(17, 17, 17, 0.78);
}

.story-single__summary {
    max-width: 34ch;
    margin: 0 auto 30px;
    font-family: "Times New Roman", "Iowan Old Style", "Baskerville", Georgia, serif;
    font-size: clamp(22px, 2.2vw, 30px);
    line-height: 1.6;
    color: rgba(17, 17, 17, 0.76);
    text-align: center;
}

.story-single__body--editorial > * + * {
    margin-top: 1.25em;
}

.story-single__body--editorial p {
    display: block;
    overflow: visible;
}

.story-single__body--editorial h2,
.story-single__body--editorial h3,
.story-single__body--editorial h4 {
    font-family: "Times New Roman", "Iowan Old Style", "Baskerville", Georgia, serif;
    font-weight: 600;
    letter-spacing: -0.04em;
    line-height: 1.04;
    margin-top: 2.1em;
    color: #111111;
}

.story-single__body--editorial h2 {
    font-size: clamp(34px, 3.2vw, 46px);
}

.story-single__body--editorial h3 {
    font-size: clamp(26px, 2.6vw, 34px);
}

.story-single__body--editorial img,
.story-single__body--editorial .wp-block-image img {
    width: 100%;
    height: auto;
    border-radius: 24px;
    margin: clamp(24px, 4vw, 38px) auto;
}

.story-single__body--editorial .wp-block-gallery,
.story-single__body--editorial .blocks-gallery-grid {
    margin: clamp(26px, 4vw, 40px) 0;
}

.story-single__back--editorial {
    width: min(100%, 760px);
    margin: 42px auto 0;
}

.story-single__back--editorial a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: rgba(17, 17, 17, 0.62);
    font-size: 12px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.pagination {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 48px;
    flex-wrap: wrap;
}

.pagination .page-numbers {
    padding: 8px 14px;
    border-radius: 999px;
    font-size: 12px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(17, 17, 17, 0.7);
    background: rgba(17, 17, 17, 0.05);
}

.pagination .page-numbers.current {
    background: #111111;
    color: #ffffff;
}

.jinchuan-cover-placeholder {
    min-height: 320px;
    display: grid;
    place-items: center;
    color: rgba(17, 17, 17, 0.42);
    font-size: 13px;
    background: linear-gradient(180deg, rgba(246,242,236,0.96) 0%, rgba(234,228,220,0.9) 100%);
}

@media (max-width: 780px) {
    .story-single {
        padding-top: calc(var(--nav-h) + 18px);
    }
}

.no-content {
    text-align: center;
    padding: 80px 0;
    color: var(--ink-muted);
    font-size: 15px;
}

@media (max-width: 980px) {
    .editorial-lead--columns,
    .editorial-lead--news,
    .editorial-lead--recommendations {
        grid-template-columns: 1fr;
    }

    .editorial-lead--columns .editorial-lead__image-link {
        width: 100%;
        justify-self: stretch;
    }
}

/* ─── 响应式 ─── */
@media (max-width: 768px) {
    :root { --nav-h: 48px; }
    .nav { padding: 0 16px; }
    .nav-left {
        visibility: visible;
        pointer-events: auto;
    }
    .nav-brand--mobile {
        display: flex;
        align-items: center;
    }
    .nav-brand--mobile .custom-logo-link {
        display: flex;
        align-items: center;
    }
    .nav-brand--mobile img,
    .nav-brand--mobile .custom-logo {
        width: 34px;
        height: 34px;
        border-radius: 10px;
        object-fit: cover;
    }
    .nav-center { display: none; }
    .nav-right { margin-left: auto; }
    .nav-menu-toggle {
        position: relative;
        display: inline-flex;
        flex-shrink: 0;
    }
    .nav-cta { font-size: 13px; padding: 7px 14px; }
    .nav-download__panel { width: min(282px, calc(100vw - 20px)); }
    .nav-download__grid { gap: 8px; }
    .nav-download__item img { width: 82px; }
    .nav-mobile {
        position: fixed;
        inset: var(--nav-h) 0 0;
        z-index: 190;
        display: block;
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transition: opacity 0.22s ease, visibility 0.22s ease;
    }
    .nav-mobile.is-open {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }
    .nav-mobile__backdrop {
        position: absolute;
        inset: 0;
        background: rgba(0, 0, 0, 0.18);
        backdrop-filter: blur(4px);
    }
    .nav-mobile__panel {
        position: relative;
        margin: 10px 12px 0;
        padding: 8px 0;
        border-radius: 24px;
        background: rgba(255, 255, 255, 0.96);
        border: 1px solid rgba(0, 0, 0, 0.08);
        box-shadow: 0 18px 40px rgba(0, 0, 0, 0.14);
        backdrop-filter: blur(20px);
        transform: translateY(-10px) scale(0.98);
        transition: transform 0.24s cubic-bezier(0.22, 1, 0.36, 1);
    }
    .nav-mobile.is-open .nav-mobile__panel {
        transform: translateY(0) scale(1);
    }
    .nav-menu--mobile {
        display: grid;
        gap: 0;
        list-style: none;
    }
    .nav-menu--mobile li + li {
        border-top: 1px solid rgba(0, 0, 0, 0.08);
    }
    .nav-menu--mobile a {
        display: flex;
        align-items: center;
        justify-content: space-between;
        min-height: 52px;
        padding: 0 18px;
        font-size: 15px;
        font-weight: 600;
        color: #1d1d1f;
        letter-spacing: 0.01em;
    }
    .nav-menu--mobile .current-menu-item > a {
        color: #2997ff;
    }
    body.nav-mobile-open {
        overflow: hidden;
    }

    .hero__banner {
        padding: 16px 16px clamp(24px, 5vw, 48px);
        gap: 14px;
    }
    .hero__focus { gap: 14px; }
    .hero-carousel {
        width: min(236px, 60vw);
        aspect-ratio: 1 / 2.22;
    }
    .store-badge { padding: 6px 14px 6px 12px; min-height: 40px; }
    .store-qr { display: none; }
    .store-badge__line2 { font-size: 13px; }

    .feat { padding: 52px 0; margin-left: 4px; margin-right: 4px; }
    .feat__inner { grid-template-columns: 1fr; gap: 28px; }
    .feat__inner--center .feat__media {
        width: min(390px, 86vw);
        height: min(760px, calc(100svh - 112px));
    }
    .feat__media img { border-radius: 14px; }
    .feat__media img.phone-shot {
        width: 100%;
        height: 100%;
        border-radius: 0;
        object-position: center;
    }

    .foot {
        padding: 32px 20px 40px;
        gap: 24px;
    }
    .foot__actions,
    .foot__links {
        flex-wrap: wrap;
        gap: 18px 28px;
    }
    .foot__action,
    .foot__links {
        font-size: 14px;
    }
    .foot__meta {
        font-size: 12px;
        line-height: 1.8;
        text-align: center;
    }

    .editorial-hero {
        grid-template-columns: 1fr;
        gap: 18px;
        padding-top: 12px;
        padding-bottom: 20px;
        margin-bottom: 22px;
    }

    .editorial-hero__main h1 {
        font-size: clamp(38px, 11vw, 54px);
        line-height: 0.98;
        letter-spacing: -0.04em;
    }

    .story-single__hero--editorial h1 {
        font-size: clamp(34px, 9vw, 46px);
        line-height: 1.04;
        letter-spacing: -0.04em;
        max-width: none;
    }

    .story-single__hero--editorial {
        grid-template-columns: 1fr;
        gap: 10px;
        padding-bottom: 20px;
    }

    .story-single__eyebrow,
    .story-single__hero--editorial h1,
    .story-single__meta--editorial {
        grid-column: auto;
        grid-row: auto;
    }

    .story-single__meta--editorial {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 8px 12px;
    }

    .editorial-lead,
    .editorial-row,
    .editorial-grid,
    .editorial-stream {
        grid-template-columns: 1fr;
    }

    .editorial-lead--columns .editorial-lead__image-link {
        width: 100%;
        justify-self: stretch;
    }

    .editorial-grid {
        gap: 28px;
    }

    .editorial-stream {
        gap: 14px;
    }

    .editorial-stream__item {
        grid-template-columns: minmax(92px, 104px) minmax(0, 1fr);
        gap: 14px;
        align-items: start;
    }

    .editorial-stream__thumb {
        border-radius: 16px;
    }

    .editorial-lead--news .editorial-lead__image-wrap {
        aspect-ratio: 5 / 4;
    }

    .editorial-lead--columns .editorial-lead__image-wrap,
    .journal--columns .editorial-row__media {
        aspect-ratio: 5 / 4;
    }

    .editorial-lead--recommendations .editorial-lead__image-link {
        width: min(360px, 100%);
    }

    .editorial-lead--recommendations .editorial-lead__image-wrap--portrait {
        aspect-ratio: 1 / 1.28;
        padding: 14px;
    }

    .editorial-lead__image-wrap,
    .editorial-row__media,
    .story-single__cover--editorial {
        border-radius: 22px;
    }

    .editorial-lead__body h2 {
        max-width: none;
        font-size: clamp(32px, 9vw, 46px);
        line-height: 1.03;
    }

    .editorial-card__body h2,
    .editorial-row__body h2 {
        font-size: clamp(24px, 7.4vw, 32px);
        line-height: 1.05;
    }

    .editorial-lead__body p,
    .editorial-card__body p,
    .editorial-row__body p,
    .story-single__body--editorial {
        font-size: 15px;
        line-height: 1.85;
    }

    .story-single__summary {
        margin-bottom: 22px;
        font-size: 18px;
    }

    .story-single__topics {
        gap: 8px;
    }

    .story-single__topics span {
        min-height: 30px;
        padding: 0 12px;
    }

    .story-single__cover--editorial {
        width: 100%;
    }

    .story-single--recommendation .story-single__cover--editorial {
        aspect-ratio: 4 / 5.4;
    }

    .story-single__body--editorial img,
    .story-single__body--editorial .wp-block-image img {
        border-radius: 18px;
    }

    .post-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
    .post-card__body { padding: 14px 16px 16px; }
    .post-card__title { font-size: 14px; }
}

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

@media (prefers-reduced-motion: reduce) {
    .hero__intro,
    .hero__store-row,
    .hero__focus,
    .hero__focus::before {
        animation: none;
    }

    .hero-carousel__slide,
    .hero-carousel__slide img,
    .hero-carousel.is-ready .hero-carousel__slide.is-active img,
    .hero-carousel::before,
    .hero-carousel::after,
    .nav-mobile,
    .nav-mobile__panel,
    .nav-menu-toggle span {
        transition: none;
        animation: none;
    }
}
