/* roulang page: index */
:root {
            --paper: #F7F4EF;
            --surface: #FFFFFF;
            --ink: #1C1917;
            --text-muted: #6B6460;
            --brand: #A63A2B;
            --brand-deep: #7E2A1E;
            --line: rgba(28, 25, 23, 0.14);
            --dark-panel: #191613;
            --tint: rgba(166, 58, 43, 0.06);
            --font-serif: "Noto Serif SC", "Source Han Serif SC", "Songti SC", "SimSun", Georgia, serif;
            --font-sans: "Noto Sans SC", "PingFang SC", "Microsoft YaHei", "Helvetica Neue", Arial, sans-serif;
            --radius: 6px;
            --radius-lg: 10px;
            --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05), 0 8px 24px rgba(0, 0, 0, 0.04);
            --ease: cubic-bezier(0.2, 0, 0, 1);
        }

        *,
        *::before,
        *::after {
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            background: var(--paper);
            color: var(--ink);
            font-family: var(--font-sans);
            line-height: 1.7;
            margin: 0;
            font-size: 16px;
            -webkit-font-smoothing: antialiased;
        }

        img {
            display: block;
            max-width: 100%;
        }

        a {
            color: inherit;
            text-decoration: none;
            transition: color .2s var(--ease), border-color .2s var(--ease), background-color .2s var(--ease);
        }

        a:focus-visible,
        button:focus-visible {
            outline: 2px solid var(--brand);
            outline-offset: 3px;
        }

        .wrap {
            max-width: 1280px;
            margin: 0 auto;
            padding-left: 32px;
            padding-right: 32px;
        }

        .section-pad {
            padding: 96px 0;
        }

        .section-pad-sm {
            padding: 64px 0;
        }

        .section-paper {
            background: rgba(255, 255, 255, 0.55);
        }

        .text-center {
            text-align: center;
        }

        .eyebrow {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            font-size: 13px;
            letter-spacing: .16em;
            color: var(--brand);
            font-weight: 600;
            text-transform: uppercase;
            background: var(--tint);
            border: 1px solid rgba(166, 58, 43, 0.12);
            border-radius: 999px;
            padding: 7px 16px;
        }

        .section-head {
            margin-bottom: 48px;
        }

        .section-title {
            font-family: var(--font-serif);
            font-size: clamp(1.8rem, 3vw, 2.6rem);
            font-weight: 800;
            line-height: 1.2;
            margin: 18px 0 12px;
            letter-spacing: .01em;
        }

        .section-desc {
            color: var(--text-muted);
            max-width: 760px;
            font-size: 1rem;
        }

        .lead-copy {
            font-size: 1.0625rem;
            color: var(--text-muted);
        }

        .brand-bar {
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .brand-seal {
            width: 42px;
            height: 42px;
            flex: 0 0 auto;
            background: var(--brand);
            color: #fff;
            font-family: var(--font-serif);
            font-weight: 900;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 6px;
            letter-spacing: -0.06em;
            font-size: 22px;
            box-shadow: 0 6px 18px rgba(166, 58, 43, .22);
        }

        .brand-name {
            font-family: var(--font-serif);
            font-size: 1.225rem;
            font-weight: 900;
            line-height: 1.1;
        }

        .brand-name small {
            display: block;
            font-family: var(--font-sans);
            font-size: 11px;
            font-weight: 600;
            letter-spacing: .16em;
            color: var(--text-muted);
            margin-top: 3px;
            text-transform: lowercase;
        }

        .site-header {
            position: sticky;
            top: 0;
            z-index: 60;
            background: rgba(247, 244, 239, 0.82);
            backdrop-filter: blur(14px);
            -webkit-backdrop-filter: blur(14px);
            border-bottom: 1px solid transparent;
            transition: background .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
        }

        .site-header.scrolled {
            background: rgba(247, 244, 239, 0.94);
            border-bottom-color: var(--line);
            box-shadow: 0 1px 0 rgba(255, 255, 255, .9), 0 8px 28px rgba(0, 0, 0, .04);
        }

        .header-inner {
            min-height: 76px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 24px;
        }

        .primary-nav {
            display: flex;
            align-items: center;
            gap: 30px;
            list-style: none;
            margin: 0;
            padding: 0;
        }

        .primary-nav li {
            margin: 0;
        }

        .primary-nav a {
            font-size: 15px;
            color: var(--ink);
            position: relative;
            padding: 6px 2px;
        }

        .primary-nav a::after {
            content: "";
            position: absolute;
            left: 0;
            bottom: -2px;
            width: 0;
            height: 2px;
            background: var(--brand);
            transition: width .25s var(--ease);
        }

        .primary-nav a:hover {
            color: var(--brand);
        }

        .primary-nav a:hover::after,
        .primary-nav a.is-active::after {
            width: 26px;
        }

        .primary-nav a.is-active {
            color: var(--ink);
            font-weight: 600;
        }

        .header-actions {
            display: flex;
            align-items: center;
            gap: 14px;
        }

        .btn-solid,
        .btn-outline,
        .btn-light {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            border-radius: 999px;
            font-size: 14px;
            font-weight: 600;
            line-height: 1.4;
            padding: 11px 22px;
            border: 1px solid transparent;
            cursor: pointer;
            transition: transform .22s var(--ease), background-color .22s var(--ease), color .22s var(--ease), border-color .22s var(--ease), box-shadow .22s var(--ease);
        }

        .btn-solid {
            background: var(--ink);
            color: #fff;
            box-shadow: 0 10px 22px rgba(28, 25, 23, 0.08);
        }

        .btn-solid:hover {
            background: var(--brand);
            color: #fff;
            transform: translateY(-2px);
            box-shadow: 0 14px 25px rgba(166, 58, 43, 0.16);
        }

        .btn-outline {
            background: transparent;
            border-color: var(--ink);
            color: var(--ink);
        }

        .btn-outline:hover {
            border-color: var(--brand);
            color: var(--brand);
            transform: translateY(-2px);
        }

        .btn-light {
            background: var(--paper);
            color: var(--ink);
            border-color: rgba(255, 255, 255, 0.12);
        }

        .btn-light:hover {
            background: #fff;
            color: var(--brand);
            transform: translateY(-2px);
        }

        .icon-btn {
            width: 42px;
            height: 42px;
            border-radius: 999px;
            border: 1px solid var(--line);
            display: inline-flex;
            align-items: center;
            justify-content: center;
            background: rgba(255, 255, 255, 0.6);
            color: var(--ink);
            cursor: pointer;
            transition: background .25s var(--ease), color .25s var(--ease), transform .25s var(--ease);
        }

        .icon-btn:hover {
            background: var(--tint);
            color: var(--brand);
            transform: translateY(-2px);
        }

        .menu-toggle {
            display: none;
            width: 44px;
            height: 44px;
            border-radius: 8px;
            border: 1px solid var(--line);
            background: #fff;
            align-items: center;
            justify-content: center;
            cursor: pointer;
        }

        .hero-section {
            position: relative;
            background: linear-gradient(100deg, rgba(247, 244, 239, 0.96) 20%, rgba(247, 244, 239, 0.88) 60%, rgba(247, 244, 239, 0.75)),
                url('/assets/images/backpic/back-1.webp') center/cover no-repeat;
            border-bottom: 1px solid var(--line);
            overflow: hidden;
        }

        .hero-inner {
            display: grid;
            grid-template-columns: 7fr 5fr;
            gap: 48px;
            align-items: center;
            min-height: calc(100vh - 76px);
            padding: 72px 32px;
            max-width: 1280px;
            margin: 0 auto;
        }

        .hero-copy {
            padding: 0 8px 0 0;
        }

        .hero-h1 {
            font-family: var(--font-serif);
            font-size: clamp(2.5rem, 5.6vw, 4.7rem);
            line-height: 1.1;
            font-weight: 900;
            margin: 28px 0 18px;
            letter-spacing: .01em;
        }

        .hero-lede {
            font-size: 1.08rem;
            line-height: 1.9;
            color: var(--text-muted);
            max-width: 560px;
            margin: 0 0 30px;
        }

        .hero-actions {
            display: flex;
            align-items: center;
            flex-wrap: wrap;
            gap: 14px;
        }

        .hero-note {
            display: block;
            margin-top: 18px;
            font-size: 13px;
            color: var(--text-muted);
            letter-spacing: .03em;
        }

        .hero-visual {
            padding: 20px 0;
        }

        .hero-visual img {
            width: 100%;
            aspect-ratio: 4 / 5;
            object-fit: cover;
            border-radius: var(--radius-lg);
            box-shadow: var(--shadow-sm);
        }

        .visual-tag {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            margin-top: 14px;
            font-size: 12px;
            letter-spacing: .1em;
            color: var(--brand);
            font-weight: 700;
        }

        .stats-band {
            background: var(--dark-panel);
            color: #fff;
            border-bottom: 1px solid rgba(255, 255, 255, 0.06);
        }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 1px;
            background: rgba(255, 255, 255, 0.08);
        }

        .stat-item {
            background: var(--dark-panel);
            padding: 34px 24px;
            text-align: center;
        }

        .stat-num {
            font-family: var(--font-serif);
            font-size: 2.4rem;
            font-weight: 800;
            line-height: 1;
            color: #fff;
        }

        .stat-num span {
            font-size: 1.1rem;
            margin-left: 4px;
            color: #D9B8A3;
        }

        .stat-label {
            margin-top: 10px;
            color: rgba(255, 255, 255, 0.62);
            font-size: 14px;
        }

        .latest-section {
            background: var(--paper);
        }

        .latest-layout {
            display: grid;
            grid-template-columns: 7fr 5fr;
            gap: 44px;
            align-items: start;
        }

        .news-lead-card {
            background: var(--surface);
            border: 1px solid var(--line);
            border-radius: var(--radius-lg);
            overflow: hidden;
            box-shadow: var(--shadow-sm);
            transition: transform .25s var(--ease), box-shadow .25s var(--ease), border-color .25s var(--ease);
        }

        .news-lead-card:hover {
            transform: translateY(-4px);
            border-color: rgba(166, 58, 43, 0.35);
            box-shadow: 0 18px 34px rgba(28, 25, 23, 0.07);
        }

        .news-lead-card img {
            width: 100%;
            aspect-ratio: 16/8;
            object-fit: cover;
        }

        .news-lead-body {
            padding: 24px;
        }

        .badge,
        .tag-badge {
            display: inline-flex;
            align-items: center;
            border-radius: 999px;
            padding: 5px 12px;
            font-size: 12px;
            font-weight: 600;
            letter-spacing: .04em;
        }

        .badge {
            background: var(--tint);
            color: var(--brand);
            border: 1px solid rgba(166, 58, 43, 0.12);
        }

        .tag-badge {
            background: rgba(28, 25, 23, 0.04);
            color: var(--text-muted);
        }

        .lead-title {
            font-family: var(--font-serif);
            font-size: 1.65rem;
            line-height: 1.4;
            font-weight: 800;
            margin: 14px 0 8px;
        }

        .lead-excerpt {
            color: var(--text-muted);
            font-size: 0.95rem;
            line-height: 1.8;
            margin-bottom: 16px;
            display: -webkit-box;
            -webkit-line-clamp: 3;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        .more-link {
            font-size: 0.925rem;
            font-weight: 600;
            color: var(--brand);
            display: inline-flex;
            align-items: center;
            gap: 4px;
            background: none;
            border: 0;
            padding: 0;
            cursor: pointer;
        }

        .more-link span {
            transition: transform .2s var(--ease);
        }

        .more-link:hover span {
            transform: translateX(4px);
        }

        .post-meta {
            display: flex;
            align-items: center;
            flex-wrap: wrap;
            gap: 10px;
            font-size: 13px;
            color: var(--text-muted);
            margin-top: 4px;
        }

        .news-side-list {
            display: flex;
            flex-direction: column;
            background: #fff;
            border: 1px solid var(--line);
            border-radius: var(--radius-lg);
            padding: 6px 24px;
            box-shadow: 0 6px 16px rgba(28, 25, 23, 0.03);
        }

        .news-row {
            display: block;
            padding: 22px 0;
            border-bottom: 1px solid var(--line);
            transition: transform .2s var(--ease);
        }

        .news-row:last-child {
            border-bottom: 0;
        }

        .news-row:hover .news-row-title {
            color: var(--brand);
        }

        .news-row-time {
            display: block;
            font-size: 12px;
            color: var(--text-muted);
            margin-bottom: 6px;
        }

        .news-row-title {
            font-family: var(--font-serif);
            font-size: 1.16rem;
            font-weight: 800;
            line-height: 1.5;
            transition: color .22s var(--ease);
        }

        .news-row-desc {
            color: var(--text-muted);
            font-size: 0.875rem;
            margin-top: 6px;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        .empty-box {
            width: 100%;
            border: 1px dashed rgba(107, 100, 96, 0.45);
            background: rgba(255, 255, 255, 0.6);
            color: var(--text-muted);
            text-align: center;
            border-radius: var(--radius-lg);
            padding: 44px 20px;
            font-size: 15px;
        }

        .directory-section {
            background: #fff;
            border-top: 1px solid var(--line);
            border-bottom: 1px solid var(--line);
        }

        .dir-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 0 64px;
        }

        .dir-item {
            display: block;
            padding: 32px 4px;
            border-bottom: 1px solid var(--line);
            transition: background .25s var(--ease), transform .22s var(--ease);
        }

        .dir-item:first-child {
            grid-column: 1 / -1;
            padding-top: 0;
            border-top: 0;
        }

        .dir-item:last-child {
            grid-column: 1 / -1;
            border-bottom: 0;
        }

        .dir-index {
            font-family: var(--font-serif);
            font-size: 2rem;
            font-weight: 800;
            color: var(--brand);
            margin-right: 18px;
            min-width: 58px;
        }

        .dir-row {
            display: flex;
            align-items: flex-start;
            gap: 24px;
        }

        .dir-title {
            font-family: var(--font-serif);
            font-size: 1.4rem;
            font-weight: 800;
            margin-bottom: 6px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 12px;
        }

        .dir-info {
            color: var(--text-muted);
            font-size: 0.95rem;
            line-height: 1.8;
        }

        .dir-icon {
            color: var(--brand);
            font-size: 1.125rem;
            opacity: 0.8;
            transition: transform .2s var(--ease), opacity .2s var(--ease);
        }

        .dir-item:hover .dir-icon {
            transform: translateX(5px);
            opacity: 1;
        }

        .featured-intro {
            margin-bottom: 48px;
        }

        .feature-grid {
            display: grid;
            grid-template-columns: 0.9fr 0.55fr 0.75fr;
            gap: 24px;
            align-items: stretch;
        }

        .feature-card {
            background: var(--surface);
            border: 1px solid var(--line);
            border-radius: var(--radius-lg);
            overflow: hidden;
            box-shadow: 0 6px 18px rgba(28, 25, 23, 0.03);
            transition: transform .25s var(--ease), box-shadow .25s var(--ease);
        }

        .feature-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 20px 36px rgba(28, 25, 23, 0.07);
        }

        .feature-card.wide {
            grid-column: span 2;
            display: grid;
            grid-template-columns: 5fr 7fr;
        }

        .feature-card.wide img {
            height: 100%;
            min-height: 280px;
            object-fit: cover;
        }

        .feature-body {
            padding: 32px;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .feature-title {
            font-family: var(--font-serif);
            font-size: 1.6rem;
            line-height: 1.45;
            font-weight: 800;
            margin: 14px 0 10px;
        }

        .feature-txt {
            color: var(--text-muted);
            font-size: 0.95rem;
            line-height: 1.85;
            margin-bottom: 18px;
        }

        .feature-card img {
            width: 100%;
            object-fit: cover;
        }

        .card-media {
            position: relative;
            overflow: hidden;
            aspect-ratio: 3 / 2;
        }

        .card-media img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform .6s var(--ease);
        }

        .feature-card:hover .card-media img {
            transform: scale(1.03);
        }

        .card-body {
            padding: 24px;
        }

        .card-body .feature-title {
            font-size: 1.25rem;
            line-height: 1.5;
        }

        .card-tag-row {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
        }

        .card-meta {
            margin-top: 14px;
            font-size: 0.8125rem;
            color: var(--text-muted);
            letter-spacing: .02em;
        }

        .quote-band {
            background: var(--ink);
            color: #fff;
            border-top: 2px solid var(--brand);
        }

        .quote-inner {
            display: grid;
            grid-template-columns: 1fr 40px;
            gap: 24px;
            align-items: center;
            max-width: 960px;
            margin: 0 auto;
        }

        .quote-text {
            font-family: var(--font-serif);
            font-size: clamp(1.4rem, 2.8vw, 2.2rem);
            line-height: 1.6;
            font-weight: 700;
        }

        .quote-source {
            margin-top: 16px;
            color: rgba(255, 255, 255, 0.55);
            font-size: 14px;
            letter-spacing: .12em;
        }

        .quote-mark {
            font-family: var(--font-serif);
            font-size: 4.5rem;
            color: var(--brand);
            line-height: 1;
            text-align: right;
        }

        .reading-section {
            background: #fff;
        }

        .reading-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 32px;
        }

        .reading-card {
            display: flex;
            gap: 20px;
            align-items: flex-start;
            padding: 5px 0 5px 0;
            border-bottom: 1px solid var(--line);
            padding-bottom: 26px;
        }

        .reading-card img {
            width: 130px;
            height: 96px;
            object-fit: cover;
            border-radius: var(--radius);
            flex: 0 0 auto;
        }

        .reading-card small {
            color: var(--brand);
            font-weight: 600;
            font-size: 12px;
        }

        .reading-card h3 {
            margin: 6px 0 4px;
            font-family: var(--font-serif);
            font-size: 1.125rem;
            font-weight: 800;
            line-height: 1.6;
        }

        .reading-card h3 a:hover {
            color: var(--brand);
        }

        .reading-card p {
            margin: 0;
            color: var(--text-muted);
            font-size: 0.9rem;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        .cta-band {
            background: var(--dark-panel);
            color: #fff;
            border-top: 2px solid var(--brand);
        }

        .cta-wrap {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 40px;
        }

        .cta-title {
            font-family: var(--font-serif);
            font-size: clamp(1.8rem, 3vw, 2.6rem);
            font-weight: 800;
            line-height: 1.4;
            margin: 0 0 10px;
        }

        .cta-text {
            color: rgba(255, 255, 255, 0.6);
            max-width: 580px;
            font-size: 1rem;
        }

        .cta-actions {
            display: flex;
            flex-wrap: wrap;
            gap: 14px;
            justify-content: flex-end;
        }

        .faq-section {
            background: var(--paper);
        }

        .faq-list {
            max-width: 880px;
            margin: 0 auto;
        }

        .faq-item {
            border-bottom: 1px solid var(--line);
        }

        .faq-item:first-child {
            border-top: 1px solid var(--line);
        }

        .faq-question {
            display: flex;
            align-items: center;
            justify-content: space-between;
            background: none;
            border: 0;
            padding: 26px 4px;
            font-size: 1.05rem;
            font-weight: 600;
            color: var(--ink);
            cursor: pointer;
            text-align: left;
            font-family: var(--font-serif);
            line-height: 1.5;
            gap: 24px;
            transition: color .2s var(--ease);
        }

        .faq-question:hover {
            color: var(--brand);
        }

        .faq-icon {
            font-size: 1.4rem;
            line-height: 1;
            width: 24px;
            text-align: center;
            color: var(--brand);
            transition: transform .25s var(--ease);
        }

        .faq-item[open] .faq-icon {
            transform: rotate(45deg);
        }

        .faq-answer {
            padding: 0 4px 28px;
            color: var(--text-muted);
            line-height: 1.9;
        }

        .site-footer {
            background: var(--dark-panel);
            color: rgba(255, 255, 255, 0.75);
        }

        .footer-top {
            border-top: 3px solid var(--brand);
            padding: 56px 0 36px;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 1.6fr 1fr 1fr;
            gap: 64px;
        }

        .footer-brand .brand-name {
            color: #fff;
        }

        .footer-brand .brand-name small {
            color: rgba(255, 255, 255, 0.45);
        }

        .footer-brand p {
            margin-top: 20px;
            max-width: 360px;
            color: rgba(255, 255, 255, 0.5);
            font-size: 0.95rem;
            line-height: 1.9;
        }

        .footer-h {
            font-size: 13px;
            color: rgba(255, 255, 255, 0.4);
            letter-spacing: .1em;
            font-weight: 600;
            margin-bottom: 20px;
        }

        .footer-links {
            list-style: none;
            margin: 0;
            padding: 0;
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .footer-links a {
            color: rgba(255, 255, 255, 0.68);
            font-size: 0.925rem;
        }

        .footer-links a:hover {
            color: #fff;
            text-decoration: underline;
            text-underline-offset: 4px;
        }

        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.08);
            padding: 24px 0 32px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 20px;
            color: rgba(255, 255, 255, 0.34);
            font-size: 13px;
            flex-wrap: wrap;
        }

        .scroll-top {
            position: fixed;
            right: 24px;
            bottom: 26px;
            width: 46px;
            height: 46px;
            border-radius: 999px;
            border: 1px solid var(--line);
            background: rgba(255, 255, 255, .82);
            backdrop-filter: blur(10px);
            box-shadow: var(--shadow-sm);
            color: var(--ink);
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 55;
            opacity: 0;
            transform: translateY(10px);
            transition: opacity .3s var(--ease), transform .3s var(--ease), color .2s var(--ease);
        }

        .scroll-top.show {
            opacity: 1;
            transform: translateY(0);
        }

        .scroll-top:hover {
            color: var(--brand);
        }

        .reveal {
            opacity: 0;
            transform: translateY(14px);
        }

        .reveal.is-inview {
            animation: riseIn .55s cubic-bezier(0.2, 0, 0, 1) forwards;
        }

        @keyframes riseIn {
            from {
                opacity: 0;
                transform: translateY(14px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @media (prefers-reduced-motion: reduce) {
            *,
            *::before,
            *::after {
                animation-duration: 0.01ms !important;
                animation-iteration-count: 1 !important;
                transition-duration: 0.01ms !important;
            }
            html {
                scroll-behavior: auto;
            }
        }

        @media (max-width: 1023.98px) {
            .primary-nav {
                position: fixed;
                inset: 76px 0 0 0;
                background: var(--paper);
                flex-direction: column;
                gap: 20px;
                align-items: flex-start;
                justify-content: flex-start;
                padding: 50px 32px;
                transform: translateY(-110%);
                transition: transform .35s var(--ease);
                z-index: 59;
                border-bottom: 1px solid var(--line);
                box-shadow: 0 32px 60px rgba(0, 0, 0, .12);
                overflow-y: auto;
            }

            .primary-nav a {
                font-family: var(--font-serif);
                font-size: 1.6rem;
                font-weight: 800;
            }

            .menu-open .primary-nav {
                transform: translateY(0);
            }

            .menu-toggle {
                display: inline-flex;
            }

            .header-actions .btn-solid {
                display: none;
            }

            .hero-inner {
                grid-template-columns: 1fr;
                padding: 64px 32px;
            }

            .hero-inner {
                min-height: auto;
            }

            .hero-visual {
                max-width: 480px;
            }

            .stats-grid {
                grid-template-columns: 1fr 1fr;
            }

            .latest-layout {
                grid-template-columns: 1fr;
            }

            .feature-grid {
                grid-template-columns: 1fr 1fr;
            }

            .feature-card.wide {
                grid-column: span 2;
            }

            .footer-grid {
                grid-template-columns: 1fr 1fr;
            }
        }

        @media (max-width: 767.98px) {
            .wrap {
                padding-left: 20px;
                padding-right: 20px;
            }

            .section-pad {
                padding: 56px 0;
            }

            .section-pad-sm {
                padding: 40px 0;
            }

            .hero-inner {
                padding: 48px 20px;
                gap: 32px;
            }

            .hero-h1 {
                font-size: 2.3rem;
            }

            .dir-grid {
                grid-template-columns: 1fr;
                gap: 0;
            }

            .dir-item:first-child,
            .dir-item:last-child {
                grid-column: auto;
            }

            .feature-grid {
                grid-template-columns: 1fr;
            }

            .feature-card.wide {
                grid-column: auto;
                display: block;
            }

            .feature-card.wide img {
                height: auto;
                min-height: unset;
            }

            .reading-grid {
                grid-template-columns: 1fr;
            }

            .cta-wrap {
                flex-direction: column;
                align-items: flex-start;
            }

            .cta-actions {
                justify-content: flex-start;
            }

            .footer-grid {
                grid-template-columns: 1fr;
                gap: 40px;
            }

            .footer-bottom {
                flex-direction: column;
                align-items: flex-start;
            }

            .stats-grid {
                grid-template-columns: 1fr 1fr;
            }

            .card-media {
                aspect-ratio: 16 / 10;
            }

            .post-meta {
                font-size: 12px;
            }
        }

        @media (max-width: 519.98px) {
            .header-actions .icon-btn {
                display: none;
            }

            .hero-h1 {
                font-size: 1.9rem;
                line-height: 1.2;
            }

            .hero-actions .btn-solid,
            .hero-actions .btn-outline {
                width: 100%;
            }

            .stats-grid {
                grid-template-columns: 1fr;
            }

            .lead-title {
                font-size: 1.25rem;
            }

            .feature-title {
                font-size: 1.2rem;
            }

            .quote-text {
                font-size: 1.2rem;
            }
        }

/* roulang page: category1 */
:root {
            --paper: #F7F4EF;
            --surface: #FFFFFF;
            --ink: #1C1917;
            --text-muted: #6B6460;
            --brand: #A63A2B;
            --brand-deep: #7E2A1E;
            --line: rgba(28, 25, 23, 0.14);
            --dark-panel: #191613;
            --tint: rgba(166, 58, 43, 0.07);
            --shadow-card: 0 1px 2px rgba(0, 0, 0, .05), 0 8px 24px rgba(0, 0, 0, .05);
            --radius-sm: 4px;
            --radius-md: 8px;
            --radius-pill: 999px;
            --ease: cubic-bezier(.2, 0, 0, 1);
            --header-h: 72px;
            --gap-section: 92px;
            --gap-section-md: 64px;
            --wrap: 1280px;
        }

        *,
        *:before,
        *:after {
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
            scroll-padding-top: calc(var(--header-h) + 18px);
        }

        body {
            margin: 0;
            background: var(--paper);
            color: var(--ink);
            font-family: "Noto Sans SC", "PingFang SC", "Microsoft YaHei", "Helvetica Neue", Arial, sans-serif;
            font-size: 16px;
            line-height: 1.8;
            -webkit-font-smoothing: antialiased;
        }

        body.nav-open {
            overflow: hidden;
        }

        img {
            display: block;
            max-width: 100%;
            height: auto;
        }

        a {
            color: inherit;
            text-decoration: none;
        }

        p {
            margin: 0 0 1.5em;
        }

        button {
            font: inherit;
            cursor: pointer;
        }

        .skip-link {
            position: absolute;
            left: -9999px;
            top: 10px;
            z-index: 2000;
            background: var(--ink);
            color: #fff;
            padding: 8px 16px;
            border-radius: var(--radius-sm);
        }

        .skip-link:focus {
            left: 12px;
        }

        .wrap {
            width: min(var(--wrap), 100%);
            margin-right: auto;
            margin-left: auto;
            padding: 0 28px;
        }

        #home {
            scroll-margin-top: 0;
        }

        /* 头部导航 */
        .site-header {
            position: sticky;
            top: 0;
            z-index: 900;
            height: var(--header-h);
            display: flex;
            align-items: center;
            background: rgba(247, 244, 239, .94);
            border-bottom: 1px solid transparent;
            transition: border-color .25s var(--ease), background .25s var(--ease);
        }

        .site-header.is-scrolled {
            background: rgba(255, 255, 255, .91);
            border-bottom-color: var(--line);
            box-shadow: 0 6px 22px rgba(0, 0, 0, .04);
        }

        .header-inner {
            display: flex;
            align-items: center;
            gap: 24px;
        }

        .brand-bar {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            flex-shrink: 0;
            color: var(--ink);
        }

        .brand-seal {
            width: 38px;
            height: 38px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            background: var(--ink);
            color: #fff;
            font-family: Georgia, "Noto Serif SC", serif;
            font-size: 1.35rem;
            font-weight: 700;
            border-radius: var(--radius-sm);
        }

        .brand-name {
            font-family: "Noto Serif SC", "Songti SC", SimSun, Georgia, serif;
            font-weight: 800;
            font-size: 1.05rem;
            line-height: 1.25;
            letter-spacing: .01em;
            display: flex;
            flex-direction: column;
        }

        .brand-name small {
            font-family: "Noto Sans SC", "PingFang SC", Arial, sans-serif;
            font-size: .68rem;
            font-weight: 500;
            letter-spacing: .18em;
            color: var(--muted, var(--text-muted));
            text-transform: lowercase;
            line-height: 1.2;
            margin-top: 1px;
        }

        .primary-nav {
            display: flex;
            align-items: center;
            gap: clamp(14px, 1.6vw, 28px);
            margin-left: auto;
        }

        .primary-nav a {
            color: var(--ink);
            font-size: .935rem;
            font-weight: 500;
            letter-spacing: .03em;
            padding: 10px 0;
            position: relative;
            transition: color .24s var(--ease);
            white-space: nowrap;
        }

        .primary-nav a:after {
            content: "";
            position: absolute;
            left: 50%;
            bottom: 2px;
            width: 0;
            height: 2px;
            border-radius: var(--radius-pill);
            background: var(--brand);
            transition: width .28s var(--ease), left .28s var(--ease);
        }

        .primary-nav a:hover {
            color: var(--brand);
        }

        .primary-nav a:hover:after {
            width: 100%;
            left: 0;
        }

        .primary-nav a.is-active {
            color: var(--brand);
        }

        .primary-nav a.is-active:after {
            width: 22px;
            left: calc(50% - 11px);
        }

        .header-actions {
            display: flex;
            align-items: center;
            gap: 12px;
            flex-shrink: 0;
        }

        .btn-solid {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            min-height: 40px;
            padding: 0 18px;
            border-radius: var(--radius-pill);
            background: var(--ink);
            color: #fff;
            font-size: .9rem;
            font-weight: 600;
            letter-spacing: .08em;
            border: 1px solid var(--ink);
            transition: background .25s var(--ease), color .25s var(--ease), transform .2s var(--ease);
        }

        .btn-solid:hover {
            background: var(--brand);
            border-color: var(--brand);
            transform: translateY(-2px);
        }

        .icon-btn {
            width: 40px;
            height: 40px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            border: 1px solid var(--line);
            border-radius: var(--radius-pill);
            background: transparent;
            color: var(--ink);
            transition: color .24s var(--ease), border-color .24s var(--ease), background .24s var(--ease);
        }

        .icon-btn:hover {
            color: var(--brand);
            border-color: var(--brand);
            background: var(--tint);
        }

        .menu-toggle {
            display: none;
            width: 40px;
            height: 40px;
            border: 1px solid var(--line);
            border-radius: var(--radius-sm);
            background: transparent;
            color: var(--ink);
        }

        /* 分类页封面 */
        .category-hero {
            position: relative;
            padding: clamp(56px, 8vw, 110px) 0 clamp(48px, 6vw, 84px);
            overflow: hidden;
        }

        .category-hero .bg-layer {
            position: absolute;
            inset: 0;
            z-index: -2;
            background: linear-gradient(118deg, #EFE9E1 0%, #F4EFE9 72%, #EAE1D6 100%);
        }

        .category-hero .bg-layer img {
            position: absolute;
            top: 0;
            right: 0;
            width: min(46%, 620px);
            height: 100%;
            object-fit: cover;
            opacity: .36;
            -webkit-mask-image: linear-gradient(to left, rgba(0, 0, 0, .55), transparent 88%);
            mask-image: linear-gradient(to left, rgba(0, 0, 0, .55), transparent 88%);
        }

        .category-hero .grid-x {
            align-items: center;
        }

        .hero-copy {
            max-width: 720px;
        }

        .hero-kicker {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            font-size: .83rem;
            font-weight: 600;
            letter-spacing: .18em;
            color: var(--brand);
            text-transform: uppercase;
            margin-bottom: 22px;
        }

        .hero-kicker:before {
            content: "";
            width: 34px;
            height: 2px;
            background: var(--brand);
            border-radius: var(--radius-pill);
        }

        .hero-title {
            font-family: "Noto Serif SC", "Source Han Serif SC", "Songti SC", SimSun, Georgia, serif;
            font-weight: 900;
            font-size: clamp(2.2rem, 5vw, 4rem);
            line-height: 1.16;
            letter-spacing: .01em;
            margin: 0 0 22px;
        }

        .hero-title em {
            font-style: normal;
            color: var(--brand);
        }

        .hero-deck {
            font-size: 1.08rem;
            color: var(--text-muted);
            line-height: 1.95;
            margin-bottom: 30px;
            max-width: 620px;
        }

        .hero-actions {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 14px;
        }

        .btn-brand {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            min-height: 46px;
            padding: 0 24px;
            border-radius: var(--radius-pill);
            background: var(--brand);
            color: #fff;
            border: 1px solid var(--brand);
            font-weight: 600;
            letter-spacing: .06em;
            transition: background .25s var(--ease), border-color .25s var(--ease), transform .2s var(--ease), box-shadow .25s var(--ease);
        }

        .btn-brand:hover {
            background: var(--brand-deep);
            border-color: var(--brand-deep);
            transform: translateY(-2px);
            box-shadow: 0 12px 28px rgba(126, 42, 30, .18);
        }

        .btn-ghost {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            min-height: 46px;
            padding: 0 24px;
            border-radius: var(--radius-pill);
            background: transparent;
            color: var(--ink);
            border: 1px solid rgba(28, 25, 23, .3);
            font-weight: 600;
            letter-spacing: .06em;
            transition: border-color .25s var(--ease), color .25s var(--ease), transform .2s var(--ease);
        }

        .btn-ghost:hover {
            border-color: var(--brand);
            color: var(--brand);
            transform: translateY(-2px);
        }

        .hero-media {
            position: relative;
            border-radius: var(--radius-md);
            overflow: hidden;
            box-shadow: 0 18px 60px rgba(28, 25, 23, .16);
            transform: rotate(.6deg);
        }

        .hero-media img {
            width: 100%;
            aspect-ratio: 4 / 4.5;
            object-fit: cover;
        }

        .hero-media .ph {
            position: absolute;
            left: 14px;
            bottom: 14px;
            margin: 0;
            background: rgba(255, 255, 255, .88);
            color: var(--ink);
            padding: 6px 12px;
            font-size: .76rem;
            font-weight: 700;
            letter-spacing: .12em;
        }

        .hero-meta-note {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            margin-top: 28px;
            color: var(--text-muted);
            font-size: .83rem;
        }

        .hero-meta-note svg {
            color: var(--brand);
        }

        /* 通用区块 */
        .section {
            padding: var(--gap-section) 0;
        }

        .section-bg-tint {
            background: #EFE9E2;
        }

        .section-sm {
            padding: clamp(40px, 5vw, 68px) 0;
        }

        .section-title-wrap {
            display: flex;
            align-items: flex-end;
            justify-content: space-between;
            gap: 24px;
            margin-bottom: 40px;
        }

        .section-index {
            display: block;
            font-family: Georgia, serif;
            font-size: .92rem;
            letter-spacing: .12em;
            color: var(--brand);
            font-weight: 700;
            margin-bottom: 6px;
        }

        .section-title {
            font-family: "Noto Serif SC", "Songti SC", SimSun, Georgia, serif;
            font-weight: 900;
            font-size: clamp(1.7rem, 3vw, 2.45rem);
            line-height: 1.25;
            margin: 0;
        }

        .section-sub {
            color: var(--text-muted);
            font-size: .98rem;
            line-height: 1.8;
            max-width: 620px;
            margin: 0;
        }

        .section-link {
            white-space: nowrap;
            font-size: .9rem;
            color: var(--ink);
            font-weight: 600;
            display: inline-flex;
            align-items: center;
            gap: 6px;
            border-bottom: 1px solid var(--line);
            padding-bottom: 3px;
            transition: color .25s var(--ease), border-color .25s var(--ease);
        }

        .section-link:hover {
            color: var(--brand);
            border-color: var(--brand);
        }

        .divider-line {
            height: 1px;
            background: var(--line);
            border: 0;
            margin: 0;
        }

        /* 荣誉数据 */
        .honor-band {
            background: var(--dark-panel);
            color: #fff;
            padding: 0;
        }

        .honor-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            border-left: 1px solid rgba(255, 255, 255, .12);
        }

        .honor-card {
            position: relative;
            padding: 38px 30px 36px;
            border-right: 1px solid rgba(255, 255, 255, .12);
            border-bottom: 1px solid rgba(255, 255, 255, .12);
            min-height: 152px;
        }

        .honor-num {
            display: block;
            font-family: Georgia, "Noto Serif SC", serif;
            font-size: clamp(2.6rem, 5vw, 3.8rem);
            line-height: 1;
            font-weight: 700;
            color: var(--brand);
            margin-bottom: 10px;
        }

        .honor-label {
            color: rgba(255, 255, 255, .72);
            font-size: .9rem;
            letter-spacing: .06em;
        }

        .honor-label strong {
            color: #fff;
        }

        /* 目录时间线 */
        .split-grid {
            display: grid;
            grid-template-columns: minmax(0, 1fr) minmax(300px, 400px);
            gap: clamp(32px, 5vw, 72px);
            align-items: start;
        }

        .timeline {
            position: relative;
        }

        .timeline:before {
            content: "";
            position: absolute;
            top: 12px;
            bottom: 12px;
            left: 82px;
            width: 1px;
            background: var(--line);
        }

        .timeline-item {
            position: relative;
            padding: 0 0 42px 128px;
            display: grid;
            grid-template-columns: 86px minmax(0, 1fr);
            gap: 18px;
        }

        .timeline-item:last-child {
            padding-bottom: 0;
        }

        .tl-year {
            font-family: Georgia, serif;
            font-weight: 700;
            font-size: 1.22rem;
            color: var(--brand);
            line-height: 1.3;
            text-align: right;
        }

        .tl-dot {
            position: absolute;
            left: 78px;
            top: 6px;
            width: 9px;
            height: 9px;
            background: var(--brand);
            border-radius: 50%;
            box-shadow: 0 0 0 4px rgba(166, 58, 43, .14);
        }

        .tl-body {
            border-bottom: 1px solid var(--line);
            padding-bottom: 18px;
        }

        .timeline-item:last-child .tl-body {
            border-bottom: 0;
        }

        .tl-title {
            font-family: "Noto Serif SC", "Songti SC", serif;
            font-weight: 800;
            font-size: 1.15rem;
            margin: 0 0 10px;
        }

        .tl-text {
            color: var(--text-muted);
            font-size: .95rem;
            margin: 0 0 14px;
            line-height: 1.85;
        }

        .tag-row {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
        }

        .minitag {
            display: inline-block;
            background: var(--tint);
            color: var(--brand-deep);
            border-radius: var(--radius-pill);
            padding: 3px 12px;
            font-size: .78rem;
            font-weight: 600;
            letter-spacing: .06em;
        }

        .sidebar-card {
            background: var(--surface);
            border: 1px solid var(--line);
            border-radius: var(--radius-md);
            overflow: hidden;
            box-shadow: var(--shadow-card);
            position: sticky;
            top: calc(var(--header-h) + 24px);
        }

        .sidebar-card .sc-img {
            position: relative;
            overflow: hidden;
        }

        .sidebar-card .sc-img img {
            width: 100%;
            aspect-ratio: 16 / 10;
            object-fit: cover;
            transition: transform .5s var(--ease);
        }

        .sidebar-card:hover .sc-img img {
            transform: scale(1.035);
        }

        .sidebar-card .sc-img:after {
            content: "";
            position: absolute;
            inset: 0;
            background: linear-gradient(to top, rgba(28, 25, 23, .18), transparent 55%);
        }

        .sc-body {
            padding: 24px;
        }

        .sc-title {
            font-family: "Noto Serif SC", "Songti SC", serif;
            font-weight: 800;
            font-size: 1.1rem;
            margin: 0 0 8px;
        }

        .sc-caption {
            color: var(--text-muted);
            font-size: .9rem;
            line-height: 1.7;
            margin-bottom: 18px;
        }

        .quick-links {
            list-style: none;
            margin: 0;
            padding: 0;
        }

        .quick-links li + li {
            border-top: 1px solid var(--line);
        }

        .quick-links a {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 12px;
            padding: 13px 2px;
            font-size: .9rem;
            font-weight: 600;
            transition: color .24s var(--ease);
        }

        .quick-links a span {
            color: var(--brand);
            transition: transform .24s var(--ease);
        }

        .quick-links a:hover {
            color: var(--brand);
        }

        .quick-links a:hover span {
            transform: translateX(4px);
        }

        .sidebar-hint {
            display: flex;
            gap: 10px;
            background: var(--tint);
            border-radius: var(--radius-sm);
            padding: 14px 16px;
            color: var(--brand-deep);
            font-size: .82rem;
            line-height: 1.7;
        }

        /* 经典比赛档案卡 */
        .archive-block {
            display: grid;
            gap: 24px;
        }

        .archive-card {
            display: grid;
            grid-template-columns: 44% minmax(0, 1fr);
            background: var(--surface);
            border: 1px solid var(--line);
            border-radius: var(--radius-md);
            overflow: hidden;
            transition: box-shadow .3s var(--ease), border-color .3s var(--ease);
        }

        .archive-card:hover {
            box-shadow: var(--shadow-card);
            border-color: rgba(166, 58, 43, .45);
        }

        .archive-media {
            position: relative;
            overflow: hidden;
            min-height: 250px;
        }

        .archive-media img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            position: absolute;
            inset: 0;
            transition: transform .6s var(--ease);
        }

        .archive-card:hover .archive-media img {
            transform: scale(1.04);
        }

        .archive-media .badge-year {
            position: absolute;
            top: 16px;
            left: 16px;
            z-index: 2;
            background: rgba(255, 255, 255, .92);
            color: var(--ink);
            font-family: Georgia, serif;
            font-weight: 700;
            font-size: .9rem;
            padding: 5px 13px;
            border-radius: var(--radius-pill);
        }

        .archive-body {
            padding: clamp(22px, 3vw, 34px);
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .archive-body .minitag {
            align-self: flex-start;
            margin-bottom: 12px;
        }

        .archive-title {
            font-family: "Noto Serif SC", "Songti SC", serif;
            font-weight: 900;
            font-size: clamp(1.2rem, 2vw, 1.7rem);
            line-height: 1.35;
            margin: 0 0 12px;
        }

        .archive-summary {
            color: var(--text-muted);
            font-size: .95rem;
            margin-bottom: 18px;
        }

        .archive-meta {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 12px;
            border-top: 1px solid var(--line);
            padding-top: 14px;
            color: var(--text-muted);
            font-size: .84rem;
        }

        .archive-link {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            color: var(--brand);
            font-weight: 700;
            font-size: .86rem;
            transition: letter-spacing .25s var(--ease);
        }

        .archive-link:hover {
            letter-spacing: .04em;
        }

        /* 精彩语录/侧注 */
        .quote-card {
            position: relative;
            background: var(--dark-panel);
            color: #fff;
            border-radius: var(--radius-md);
            padding: clamp(30px, 5vw, 62px);
            overflow: hidden;
        }

        .quote-card:before {
            content: "❝";
            position: absolute;
            top: -40px;
            right: 8px;
            font-family: Georgia, serif;
            font-size: 8rem;
            line-height: 1;
            color: rgba(166, 58, 43, .32);
        }

        .quote-card blockquote {
            border: 0;
            margin: 0 auto 26px;
            max-width: 900px;
            text-align: center;
            font-family: "Noto Serif SC", "Songti SC", serif;
            font-size: clamp(1.2rem, 2.4vw, 1.85rem);
            font-weight: 800;
            line-height: 1.6;
        }

        .quote-meta {
            text-align: center;
            color: rgba(255, 255, 255, .58);
            font-size: .88rem;
            letter-spacing: .12em;
        }

        .quote-meta strong {
            color: #fff;
        }

        /* 赛事查找区块 */
        .find-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            border-top: 1px solid var(--line);
            border-left: 1px solid var(--line);
        }

        .find-item {
            padding: 26px 24px;
            background: var(--surface);
            border-right: 1px solid var(--line);
            border-bottom: 1px solid var(--line);
            transition: background .3s var(--ease), transform .25s var(--ease);
        }

        .find-item:hover {
            background: var(--paper);
            transform: translateY(-3px);
        }

        .find-icon {
            display: inline-flex;
            width: 44px;
            height: 44px;
            align-items: center;
            justify-content: center;
            background: var(--tint);
            color: var(--brand);
            border-radius: var(--radius-sm);
            margin-bottom: 16px;
        }

        .find-name {
            font-family: "Noto Serif SC", "Songti SC", serif;
            font-weight: 800;
            font-size: 1.05rem;
            margin: 0 0 8px;
        }

        .find-desc {
            color: var(--text-muted);
            font-size: .87rem;
            line-height: 1.8;
            margin: 0;
        }

        /* FAQ */
        .faq-box {
            max-width: 900px;
            margin: 0 auto;
        }

        .faq-item {
            border: 0;
            border-bottom: 1px solid var(--line);
            padding: 8px 0;
            background: transparent;
        }

        .faq-item:first-of-type {
            border-top: 1px solid var(--line);
        }

        .faq-item summary {
            list-style: none;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 24px;
            padding: 20px 4px;
            font-weight: 700;
            font-size: 1rem;
            line-height: 1.5;
            transition: color .2s var(--ease);
            position: relative;
        }

        .faq-item summary::-webkit-details-marker {
            display: none;
        }

        .faq-item summary:hover {
            color: var(--brand);
        }

        .faq-item summary:after {
            content: "+";
            font-family: Georgia, serif;
            font-size: 1.5rem;
            font-weight: 400;
            line-height: 1;
            color: var(--brand);
            flex-shrink: 0;
            transition: transform .3s var(--ease);
        }

        .faq-item[open] summary:after {
            transform: rotate(45deg);
        }

        .faq-answer {
            padding: 0 34px 26px 4px;
            color: var(--text-muted);
            line-height: 1.9;
            font-size: .95rem;
        }

        .faq-answer p:last-child {
            margin-bottom: 0;
        }

        .faq-answer a {
            color: var(--brand);
            border-bottom: 1px solid rgba(166, 58, 43, .35);
            font-weight: 600;
        }

        .faq-answer a:hover {
            border-bottom-color: var(--brand);
        }

        /* CTA */
        .cta-panel {
            position: relative;
            background: var(--dark-panel);
            color: #fff;
            border-radius: var(--radius-md);
            padding: clamp(36px, 6vw, 72px);
            overflow: hidden;
        }

        .cta-panel:before {
            content: "";
            position: absolute;
            inset: 0;
            background: linear-gradient(100deg, rgba(28, 25, 23, .94) 0%, rgba(28, 25, 23, .76) 100%);
        }

        .cta-panel img {
            position: absolute;
            inset: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            opacity: .45;
        }

        .cta-inner {
            position: relative;
            z-index: 2;
            max-width: 760px;
        }

        .cta-title {
            font-family: "Noto Serif SC", "Songti SC", serif;
            font-size: clamp(1.65rem, 3.2vw, 2.5rem);
            font-weight: 900;
            line-height: 1.3;
            margin: 0 0 16px;
        }

        .cta-title span {
            color: #fff;
            border-bottom: 3px solid var(--brand);
            padding-bottom: 4px;
        }

        .cta-text {
            color: rgba(255, 255, 255, .72);
            font-size: 1rem;
            max-width: 640px;
            margin-bottom: 30px;
        }

        .cta-actions {
            display: flex;
            flex-wrap: wrap;
            gap: 14px;
        }

        .btn-onsurface {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            min-height: 48px;
            padding: 0 26px;
            border-radius: var(--radius-pill);
            background: #fff;
            color: var(--ink);
            font-weight: 700;
            font-size: .94rem;
            letter-spacing: .04em;
            border: 1px solid #fff;
            transition: background .25s var(--ease), color .25s var(--ease), transform .2s var(--ease);
        }

        .btn-onsurface:hover {
            background: var(--brand);
            border-color: var(--brand);
            color: #fff;
            transform: translateY(-2px);
        }

        .btn-outline-white {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            min-height: 48px;
            padding: 0 26px;
            border-radius: var(--radius-pill);
            background: transparent;
            color: #fff;
            border: 1px solid rgba(255, 255, 255, .72);
            font-weight: 600;
            font-size: .94rem;
            letter-spacing: .04em;
            transition: border-color .25s var(--ease), background .25s var(--ease), color .25s var(--ease), transform .2s var(--ease);
        }

        .btn-outline-white:hover {
            background: rgba(255, 255, 255, .12);
            border-color: #fff;
            transform: translateY(-2px);
        }

        /* 底部页脚 */
        .site-footer {
            background: var(--dark-panel);
            color: rgba(255, 255, 255, .68);
            margin-top: var(--gap-section);
            padding: 68px 0 26px;
        }

        .site-footer .footer-top {
            border-bottom: 1px solid rgba(255, 255, 255, .12);
            padding-bottom: 54px;
            margin-bottom: 26px;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: minmax(0, 1.5fr) repeat(2, minmax(0, 1fr));
            gap: 46px;
        }

        .footer-brand .brand-bar {
            color: #fff;
            margin-bottom: 16px;
        }

        .footer-brand .brand-seal {
            background: var(--brand);
        }

        .footer-brand p {
            color: rgba(255, 255, 255, .55);
            font-size: .94rem;
            line-height: 1.8;
            margin-bottom: 0;
        }

        .footer-h {
            color: #fff;
            font-size: .88rem;
            font-weight: 700;
            letter-spacing: .15em;
            text-transform: uppercase;
            margin: 12px 0 20px;
        }

        .footer-links {
            list-style: none;
            margin: 0;
            padding: 0;
        }

        .footer-links li + li {
            margin-top: 12px;
        }

        .footer-links a {
            color: rgba(255, 255, 255, .6);
            font-size: .92rem;
            transition: color .24s var(--ease);
            position: relative;
        }

        .footer-links a:hover {
            color: #fff;
        }

        .footer-bottom {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: center;
            gap: 12px;
            border-top: 1px solid rgba(255, 255, 255, .1);
            padding-top: 22px;
            font-size: .82rem;
            color: rgba(255, 255, 255, .38);
            letter-spacing: .04em;
        }

        .footer-bottom span:last-child {
            color: rgba(255, 255, 255, .65);
        }

        /* 动效 & 交互 */
        .reveal {
            opacity: 0;
            transform: translateY(18px);
            transition: opacity .55s var(--ease), transform .55s var(--ease);
        }

        .reveal.is-visible {
            opacity: 1;
            transform: none;
        }

        @media (prefers-reduced-motion: reduce) {
            *,
            *:before,
            *:after {
                animation-duration: .01ms !important;
                transition-duration: .01ms !important;
            }
            html {
                scroll-behavior: auto;
            }
            .reveal {
                opacity: 1;
                transform: none;
            }
        }

        /* 响应式 */
        @media (max-width: 1024px) {
            .wrap {
                padding: 0 20px;
            }
            .primary-nav {
                gap: 16px;
            }
            .brand-name {
                font-size: .95rem;
            }
            .split-grid {
                grid-template-columns: 1fr;
            }
            .sidebar-card {
                position: static;
            }
            .timeline:before {
                left: 62px;
            }
            .timeline-item {
                grid-template-columns: 64px minmax(0, 1fr);
                padding-left: 100px;
            }
            .tl-dot {
                left: 58px;
            }
            .tl-year {
                font-size: 1.08rem;
            }
        }

        @media (max-width: 820px) {
            :root {
                --gap-section: 64px;
                --header-h: 64px;
            }
            .header-inner {
                gap: 10px;
            }
            .primary-nav {
                position: fixed;
                top: var(--header-h);
                right: 0;
                left: 0;
                bottom: auto;
                z-index: 980;
                background: #FFFCF8;
                margin: 0;
                padding: 12px 22px 22px;
                flex-direction: column;
                align-items: stretch;
                gap: 0;
                border-bottom: 1px solid var(--line);
                transform: translateY(-14px);
                opacity: 0;
                visibility: hidden;
                transition: opacity .28s var(--ease), transform .28s var(--ease), visibility .28s;
                box-shadow: 0 24px 50px rgba(0, 0, 0, .12);
            }
            body.nav-open .primary-nav {
                opacity: 1;
                visibility: visible;
                transform: none;
            }
            .primary-nav a {
                display: block;
                padding: 15px 3px;
                font-size: 1.02rem;
                font-weight: 700;
                border-bottom: 1px solid var(--line);
            }
            .primary-nav a:nth-last-child(1) {
                border-bottom: 0;
            }
            .primary-nav a:after {
                left: 0;
                right: auto;
                width: 0;
                height: 2px;
                bottom: 8px;
            }
            .primary-nav a:hover:after,
            .primary-nav a.is-active:after {
                width: 32px;
                left: 0;
            }
            .header-actions .btn-solid {
                display: none;
            }
            .menu-toggle {
                display: inline-flex;
                align-items: center;
                justify-content: center;
            }
            body.nav-open .menu-toggle {
                background: var(--ink);
                color: #fff;
                border-color: var(--ink);
            }
            .category-hero .bg-layer img {
                width: 100%;
                opacity: .14;
                -webkit-mask-image: none;
                mask-image: none;
            }
            .hero-media {
                max-width: 420px;
            }
            .honor-grid {
                grid-template-columns: 1fr;
            }
            .archive-card {
                grid-template-columns: 1fr;
            }
            .archive-media {
                min-height: 220px;
            }
            .archive-media img {
                position: relative;
            }
            .footer-grid {
                grid-template-columns: 1fr;
                gap: 30px;
            }
            .section-title-wrap {
                align-items: flex-start;
                flex-direction: column;
            }
            .timeline {
                padding-left: 0;
            }
            .timeline-item {
                padding-left: 82px;
                grid-template-columns: 52px minmax(0, 1fr);
            }
            .timeline:before {
                left: 52px;
            }
            .tl-dot {
                left: 48px;
            }
            .tl-year {
                font-size: 1rem;
            }
        }

        @media (max-width: 520px) {
            .wrap {
                padding: 0 16px;
            }
            .brand-seal {
                width: 34px;
                height: 34px;
                font-size: 1.15rem;
            }
            .brand-name {
                font-size: .88rem;
            }
            .brand-name small {
                font-size: .56rem;
            }
            .hero-title {
                font-size: clamp(1.9rem, 9vw, 2.4rem);
            }
            .hero-deck {
                font-size: 1rem;
                line-height: 1.85;
            }
            .category-hero {
                padding-top: 36px;
            }
            .timeline-item {
                padding-left: 0;
                grid-template-columns: 1fr;
                gap: 4px;
            }
            .timeline:before {
                display: none;
            }
            .tl-dot {
                left: 0;
                top: -4px;
            }
            .tl-year {
                text-align: left;
                padding-left: 18px;
            }
            .tl-body {
                border-bottom: 1px solid var(--line);
                padding-bottom: 14px;
            }
            .archive-media {
                min-height: 180px;
            }
            .archive-body {
                padding: 22px 18px;
            }
            .cta-panel {
                padding: 34px 22px;
            }
            .quote-card {
                padding: 32px 20px;
            }
            .hero-actions .btn-brand,
            .hero-actions .btn-ghost {
                width: 100%;
            }
        }

/* roulang page: article */
:root {
            --paper: #F7F4EF;
            --surface: #FFFFFF;
            --ink: #1C1917;
            --text-muted: #6B6460;
            --brand: #A63A2B;
            --brand-deep: #7E2A1E;
            --line: rgba(28, 25, 23, 0.14);
            --dark-panel: #191613;
            --tint: rgba(166, 58, 43, 0.06);
            --radius: 6px;
            --radius-lg: 10px;
            --shadow-sm: 0 1px 2px rgba(0, 0, 0, .05);
            --shadow-md: 0 12px 30px rgba(0, 0, 0, .06);
            --ease: cubic-bezier(0.2, 0, 0, 1);
        }

        *,
        *::before,
        *::after {
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
            scroll-padding-top: 110px;
        }

        body {
            margin: 0;
            background: var(--paper);
            color: var(--ink);
            font-family: "Noto Sans SC", "PingFang SC", "Microsoft YaHei", "Helvetica Neue", Arial, sans-serif;
            line-height: 1.75;
            -webkit-font-smoothing: antialiased;
            text-rendering: optimizeLegibility;
            overflow-x: hidden;
        }

        body.nav-locked {
            overflow: hidden;
        }

        img {
            max-width: 100%;
            height: auto;
            display: block;
        }

        a {
            color: inherit;
            text-decoration: none;
            transition: color .25s var(--ease), border-color .25s var(--ease), background-color .25s var(--ease), box-shadow .25s var(--ease);
        }

        button {
            font-family: inherit;
            cursor: pointer;
            border: none;
            background: none;
            padding: 0;
            color: inherit;
        }

        ul,
        ol,
        figure,
        blockquote,
        p,
        h1,
        h2,
        h3,
        h4 {
            margin: 0;
            padding: 0;
        }

        a:focus-visible,
        button:focus-visible {
            outline: 3px solid rgba(166, 58, 43, 0.35);
            outline-offset: 3px;
            border-radius: 2px;
        }

        ::selection {
            background: rgba(166, 58, 43, 0.12);
            color: var(--ink);
        }

        .wrap {
            max-width: 1280px;
            margin: 0 auto;
            padding-left: clamp(20px, 4vw, 48px);
            padding-right: clamp(20px, 4vw, 48px);
        }

        .grid-container {
            max-width: 1280px;
        }

        .site-header {
            position: sticky;
            top: 0;
            z-index: 100;
            background: rgba(247, 244, 239, 0.86);
            backdrop-filter: blur(14px);
            -webkit-backdrop-filter: blur(14px);
            border-bottom: 1px solid transparent;
            transition: background .3s var(--ease), border-color .3s var(--ease), box-shadow .3s var(--ease);
        }

        .site-header.is-scrolled {
            background: rgba(255, 255, 255, 0.92);
            border-bottom-color: var(--line);
            box-shadow: 0 8px 28px rgba(28, 25, 23, 0.04);
        }

        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 20px;
            height: 76px;
        }

        .brand-bar {
            display: inline-flex;
            align-items: center;
            gap: 12px;
            flex-shrink: 0;
        }

        .brand-seal {
            width: 42px;
            height: 42px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            border-radius: 8px;
            background: var(--dark-panel);
            color: #FDFAF5;
            font-family: "Noto Serif SC", "Source Han Serif SC", "Songti SC", SimSun, Georgia, serif;
            font-weight: 900;
            font-size: 23px;
            letter-spacing: -0.02em;
            box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.04);
        }

        .brand-name {
            display: flex;
            flex-direction: column;
            font-family: "Noto Serif SC", "Source Han Serif SC", "Songti SC", SimSun, Georgia, serif;
            font-size: 1.14rem;
            font-weight: 800;
            letter-spacing: .02em;
            line-height: 1.25;
            color: var(--ink);
        }

        .brand-name small {
            font-family: "Noto Sans SC", "PingFang SC", "Microsoft YaHei", "Helvetica Neue", Arial, sans-serif;
            font-size: .68rem;
            font-weight: 400;
            letter-spacing: .12em;
            text-transform: lowercase;
            color: var(--text-muted);
        }

        .primary-nav {
            display: flex;
            align-items: center;
            gap: clamp(18px, 2.2vw, 34px);
        }

        .primary-nav a {
            position: relative;
            padding: 10px 0;
            font-size: .95rem;
            color: var(--text-muted);
            letter-spacing: .01em;
            white-space: nowrap;
        }

        .primary-nav a::after {
            content: "";
            position: absolute;
            left: 0;
            bottom: -2px;
            width: 20px;
            height: 2px;
            background: var(--brand);
            transform: scaleX(0);
            transform-origin: left center;
            transition: transform .28s var(--ease);
        }

        .primary-nav a:hover,
        .primary-nav a.is-active {
            color: var(--ink);
        }

        .primary-nav a:hover::after,
        .primary-nav a.is-active::after {
            transform: scaleX(1);
        }

        .header-actions {
            display: flex;
            align-items: center;
            gap: 10px;
            flex-shrink: 0;
        }

        .btn-solid {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            background: var(--brand);
            color: #FFFFFF;
            border-radius: 999px;
            padding: 9px 20px;
            font-size: .9rem;
            font-weight: 600;
            letter-spacing: .04em;
            border: 1px solid var(--brand);
            transition: background-color .25s var(--ease), transform .25s var(--ease), box-shadow .25s var(--ease), border-color .25s var(--ease);
            box-shadow: 0 4px 14px rgba(166, 58, 43, 0.14);
        }

        .btn-solid:hover {
            background: var(--brand-deep);
            border-color: var(--brand-deep);
            transform: translateY(-2px);
            box-shadow: 0 8px 22px rgba(166, 58, 43, 0.2);
            color: #fff;
        }

        .btn-solid:active {
            transform: translateY(0);
        }

        .icon-btn {
            width: 38px;
            height: 38px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            border-radius: 999px;
            border: 1px solid var(--line);
            background: rgba(255, 255, 255, 0.6);
            color: var(--ink);
            transition: background-color .25s var(--ease), color .25s var(--ease), border-color .25s var(--ease), transform .25s var(--ease);
        }

        .icon-btn:hover {
            background: var(--tint);
            border-color: rgba(166, 58, 43, 0.3);
            color: var(--brand);
            transform: translateY(-1px);
        }

        .menu-toggle {
            display: none;
            width: 38px;
            height: 38px;
            align-items: center;
            justify-content: center;
            border-radius: 999px;
            border: 1px solid var(--line);
            background: rgba(255, 255, 255, 0.6);
            color: var(--ink);
        }

        .menu-toggle:hover {
            border-color: var(--brand);
            color: var(--brand);
        }

        .article-main {
            padding: clamp(28px, 5vw, 72px) 0 40px;
            background: var(--paper);
        }

        .article-card-panel {
            background: var(--surface);
            border: 1px solid rgba(28, 25, 23, 0.06);
            border-radius: var(--radius-lg);
            box-shadow: var(--shadow-md);
            padding: clamp(26px, 4vw, 56px) clamp(20px, 5vw, 64px);
            position: relative;
            overflow: hidden;
        }

        .article-card-panel::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: linear-gradient(90deg, var(--brand) 0%, rgba(166, 58, 43, 0.2) 100%);
            opacity: .8;
        }

        .article-breadcrumb {
            display: flex;
            align-items: center;
            flex-wrap: wrap;
            gap: 8px;
            font-size: .82rem;
            letter-spacing: .04em;
            color: var(--text-muted);
            margin-bottom: clamp(22px, 4vw, 38px);
            line-height: 1.6;
        }

        .article-breadcrumb .crumb-home {
            color: var(--text-muted);
        }

        .article-breadcrumb .crumb-home:hover {
            color: var(--brand);
        }

        .crumb-sep {
            color: rgba(28, 25, 23, 0.32);
        }

        .article-breadcrumb .crumb-cat {
            color: var(--brand);
        }

        .article-breadcrumb .crumb-title {
            display: inline-flex;
            align-items: center;
            max-width: 100%;
            overflow: hidden;
            text-overflow: ellipsis;
            white-space: nowrap;
            color: var(--ink);
        }

        .post-header {
            margin-bottom: 28px;
        }

        .kicker-row {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 18px;
        }

        .kicker-row .tag-label {
            display: inline-flex;
            align-items: center;
            gap: 5px;
            background: var(--tint);
            color: var(--brand);
            border-radius: 999px;
            padding: 4px 12px;
            font-size: .78rem;
            font-weight: 600;
            letter-spacing: .05em;
        }

        .kicker-row .kicker-editor {
            font-size: .8rem;
            color: var(--text-muted);
            letter-spacing: .06em;
        }

        .post-header h1 {
            font-family: "Noto Serif SC", "Source Han Serif SC", "Songti SC", SimSun, Georgia, serif;
            font-size: clamp(2rem, 4.8vw, 3.7rem);
            font-weight: 900;
            line-height: 1.18;
            letter-spacing: .01em;
            color: var(--ink);
            max-width: 900px;
            margin-bottom: 22px;
        }

        .post-meta {
            display: flex;
            align-items: center;
            flex-wrap: wrap;
            gap: 8px 24px;
            padding-top: 16px;
            border-top: 1px solid var(--line);
            font-size: .84rem;
            color: var(--text-muted);
            letter-spacing: .03em;
        }

        .post-meta span {
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }

        .meta-symbol {
            width: 5px;
            height: 5px;
            border-radius: 999px;
            background: var(--brand);
            display: inline-block;
        }

        .article-prose {
            margin-top: 28px;
            font-size: 1.0625rem;
            line-height: 1.9;
            letter-spacing: .01em;
            color: #2a2522;
            max-width: 820px;
        }

        .article-prose p {
            margin: 0 0 1.6em;
        }

        .article-prose p:last-child {
            margin-bottom: 0;
        }

        .article-prose h2,
        .article-prose h3,
        .article-prose h4 {
            font-family: "Noto Serif SC", "Source Han Serif SC", "Songti SC", SimSun, Georgia, serif;
            font-weight: 800;
            color: var(--ink);
            letter-spacing: .01em;
            margin-top: clamp(36px, 6vw, 60px);
            margin-bottom: 16px;
            line-height: 1.45;
        }

        .article-prose h2 {
            font-size: clamp(1.55rem, 3vw, 2.05rem);
            padding-bottom: 16px;
            border-bottom: 1px solid var(--line);
        }

        .article-prose h3 {
            font-size: clamp(1.25rem, 2.2vw, 1.5rem);
        }

        .article-prose h4 {
            font-size: 1.1rem;
        }

        .article-prose strong {
            font-weight: 700;
            color: var(--ink);
        }

        .article-prose a {
            color: var(--brand);
            border-bottom: 1px solid rgba(166, 58, 43, 0.2);
        }

        .article-prose a:hover {
            border-bottom-color: var(--brand);
        }

        .article-prose ul,
        .article-prose ol {
            margin: 0 0 1.6em;
            padding-left: 1.4rem;
        }

        .article-prose ul li,
        .article-prose ol li {
            margin-bottom: .5em;
            padding-left: 2px;
        }

        .article-prose blockquote {
            margin: 2em 0;
            padding: .4em 0 .4em clamp(18px, 3vw, 28px);
            border-left: 3px solid var(--brand);
            font-size: 1.15rem;
            line-height: 1.85;
            color: #342e2a;
            background: rgba(166, 58, 43, 0.025);
        }

        .article-prose blockquote p {
            margin-bottom: .5em;
        }

        .article-prose figure {
            margin: 2.4em 0;
        }

        .article-prose figcaption {
            margin-top: 10px;
            font-size: .84rem;
            color: var(--text-muted);
            text-align: center;
            letter-spacing: .04em;
        }

        .article-prose img {
            border-radius: 8px;
            box-shadow: var(--shadow-md);
            margin: 2rem 0;
        }

        .article-prose table {
            width: 100%;
            border-collapse: collapse;
            margin: 2em 0;
            font-size: .92rem;
            line-height: 1.7;
        }

        .article-prose th {
            background: #1B1815;
            color: #FDFAF5;
            padding: 12px 16px;
            font-weight: 600;
            text-align: left;
            letter-spacing: .05em;
        }

        .article-prose td {
            padding: 11px 16px;
            border-bottom: 1px solid var(--line);
            background: #fff;
        }

        .article-prose tr:nth-child(even) td {
            background: #FAF8F4;
        }

        .article-prose hr {
            border: 0;
            border-top: 1px solid var(--line);
            margin: 2.5em auto;
            max-width: 80%;
        }

        .article-end-mark {
            text-align: center;
            margin-top: clamp(36px, 6vw, 64px);
            color: rgba(107, 100, 96, 0.6);
            font-size: .82rem;
            letter-spacing: .2em;
            position: relative;
        }

        .article-end-mark::before,
        .article-end-mark::after {
            content: "——";
            margin: 0 12px;
            color: var(--line);
        }

        .share-actions {
            display: flex;
            align-items: center;
            flex-wrap: wrap;
            gap: 12px;
            margin-top: 32px;
            padding: 22px 0;
            border-bottom: 1px solid var(--line);
        }

        .share-btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            border: 1px solid var(--line);
            background: #fff;
            border-radius: 999px;
            padding: 9px 18px;
            font-size: .88rem;
            font-weight: 500;
            color: var(--ink);
            transition: background-color .25s var(--ease), border-color .25s var(--ease), color .25s var(--ease), transform .25s var(--ease);
        }

        .share-btn:hover {
            border-color: rgba(166, 58, 43, 0.4);
            background: var(--tint);
            color: var(--brand);
            transform: translateY(-1px);
        }

        .share-btn.is-saved,
        .share-btn.is-done {
            border-color: rgba(166, 58, 43, 0.35);
            background: var(--tint);
            color: var(--brand);
        }

        .source-note {
            margin-top: 20px;
            background: #F8F5F0;
            border: 1px solid var(--line);
            border-left: 3px solid var(--brand);
            border-radius: 0 var(--radius) var(--radius) 0;
            padding: 20px 22px;
            display: flex;
            gap: 14px;
            align-items: flex-start;
            font-size: .9rem;
            line-height: 1.85;
            color: #4d4641;
        }

        .source-note .note-mark {
            font-family: "Noto Serif SC", "Source Han Serif SC", "Songti SC", SimSun, Georgia, serif;
            font-weight: 900;
            color: var(--brand);
            font-size: 1.1rem;
            letter-spacing: .04em;
        }

        .source-note p {
            margin: 0;
        }

        .source-note a {
            color: var(--brand);
            border-bottom: 1px solid rgba(166, 58, 43, 0.2);
        }

        .related-section {
            margin-top: clamp(44px, 7vw, 80px);
        }

        .section-mini-header {
            display: flex;
            align-items: flex-end;
            justify-content: space-between;
            gap: 20px;
            border-bottom: 2px solid var(--ink);
            padding-bottom: 14px;
            margin-bottom: 28px;
        }

        .section-mini-header h2 {
            font-family: "Noto Serif SC", "Source Han Serif SC", "Songti SC", SimSun, Georgia, serif;
            font-size: 1.55rem;
            font-weight: 800;
            letter-spacing: .02em;
            color: var(--ink);
        }

        .section-mini-header .section-sub {
            font-size: .82rem;
            letter-spacing: .08em;
            text-transform: uppercase;
            color: var(--text-muted);
        }

        .related-grid {
            display: grid;
            grid-template-columns: repeat(12, 1fr);
            gap: 20px;
        }

        .related-card {
            position: relative;
            background: var(--surface);
            border: 1px solid var(--line);
            border-radius: var(--radius-lg);
            padding: 28px 26px;
            min-height: 240px;
            overflow: hidden;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            gap: 24px;
            transition: border-color .25s var(--ease), transform .25s var(--ease), box-shadow .25s var(--ease);
        }

        .related-card:hover {
            border-color: rgba(166, 58, 43, 0.35);
            transform: translateY(-4px);
            box-shadow: 0 18px 38px rgba(28, 25, 23, 0.08);
        }

        .related-card.main-card {
            grid-column: span 7;
        }

        .related-card.side-card {
            grid-column: span 5;
            min-height: 240px;
        }

        .related-card .card-top {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 16px;
        }

        .related-index {
            font-family: "Noto Serif SC", "Source Han Serif SC", "Songti SC", SimSun, Georgia, serif;
            color: var(--brand);
            font-size: 2rem;
            font-weight: 800;
            letter-spacing: .02em;
            line-height: 1;
        }

        .related-card .card-type {
            display: inline-flex;
            padding: 4px 12px;
            background: var(--tint);
            color: var(--brand);
            border-radius: 999px;
            font-size: .76rem;
            font-weight: 600;
            letter-spacing: .05em;
        }

        .related-card h3 {
            font-family: "Noto Serif SC", "Source Han Serif SC", "Songti SC", SimSun, Georgia, serif;
            font-size: 1.45rem;
            font-weight: 800;
            color: var(--ink);
            letter-spacing: .01em;
            line-height: 1.45;
            margin-bottom: 12px;
        }

        .related-card p {
            color: var(--text-muted);
            font-size: .9rem;
            line-height: 1.8;
            margin-bottom: 0;
        }

        .related-card .card-link {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            color: var(--ink);
            font-size: .9rem;
            font-weight: 600;
        }

        .related-card .card-link svg {
            transition: transform .25s var(--ease);
        }

        .related-card:hover .card-link svg {
            transform: translateX(4px);
        }

        .related-card.side-card h3 {
            font-size: 1.25rem;
        }

        .cta-strip {
            margin-top: clamp(46px, 7vw, 82px);
            background: var(--dark-panel);
            border-radius: var(--radius-lg);
            color: #FDFAF5;
            padding: clamp(28px, 5vw, 48px);
            position: relative;
            overflow: hidden;
        }

        .cta-strip::before {
            content: "";
            position: absolute;
            inset: 0;
            background-image: url('/assets/images/backpic/back-2.webp');
            background-size: cover;
            background-position: center;
            opacity: .12;
        }

        .cta-strip::after {
            content: "";
            position: absolute;
            left: 0;
            top: 0;
            width: 4px;
            height: 100%;
            background: var(--brand);
        }

        .cta-inner {
            position: relative;
            z-index: 1;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 28px;
            flex-wrap: wrap;
        }

        .cta-inner .eyebrow {
            font-size: .8rem;
            letter-spacing: .18em;
            color: rgba(253, 250, 245, 0.55);
            margin-bottom: 10px;
            text-transform: uppercase;
        }

        .cta-inner h2 {
            font-family: "Noto Serif SC", "Source Han Serif SC", "Songti SC", SimSun, Georgia, serif;
            font-size: clamp(1.45rem, 3vw, 2.2rem);
            font-weight: 800;
            line-height: 1.45;
            color: #FFFFFF;
            max-width: 720px;
        }

        .btn-light {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            background: #FFFFFF;
            color: var(--ink);
            border-radius: 999px;
            padding: 10px 22px;
            font-size: .9rem;
            font-weight: 600;
            letter-spacing: .05em;
            border: 1px solid rgba(255, 255, 255, 0.2);
            transition: transform .25s var(--ease), box-shadow .25s var(--ease), background-color .25s var(--ease), color .25s var(--ease);
        }

        .btn-light:hover {
            background: var(--brand);
            color: #fff;
            transform: translateY(-2px);
            box-shadow: 0 10px 28px rgba(0, 0, 0, 0.24);
        }

        .article-empty {
            text-align: center;
            padding: clamp(56px, 10vw, 120px) 20px;
            background: var(--surface);
            border: 1px solid var(--line);
            border-radius: var(--radius-lg);
            box-shadow: var(--shadow-sm);
        }

        .article-empty .empty-eyebrow {
            color: var(--brand);
            font-size: .8rem;
            letter-spacing: .16em;
            font-weight: 600;
            text-transform: uppercase;
            margin-bottom: 12px;
        }

        .article-empty h1 {
            font-family: "Noto Serif SC", "Source Han Serif SC", "Songti SC", SimSun, Georgia, serif;
            font-size: clamp(2rem, 4vw, 3rem);
            font-weight: 900;
            color: var(--ink);
            margin-bottom: 16px;
        }

        .article-empty p {
            color: var(--text-muted);
            font-size: 1rem;
            margin-bottom: 28px;
        }

        .site-footer {
            background: var(--dark-panel);
            color: rgba(250, 247, 242, 0.7);
            margin-top: clamp(48px, 7vw, 80px);
            border-top: 3px solid var(--brand);
        }

        .footer-top {
            padding: clamp(40px, 7vw, 68px) 0 24px;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr;
            gap: clamp(28px, 5vw, 72px);
        }

        .footer-brand .brand-bar {
            margin-bottom: 18px;
        }

        .footer-brand .brand-seal {
            background: #F8F3EC;
            color: var(--dark-panel);
        }

        .footer-brand .brand-name {
            color: #fff;
        }

        .footer-brand .brand-name small {
            color: rgba(255, 255, 255, 0.45);
        }

        .footer-brand p {
            max-width: 420px;
            font-size: .94rem;
            line-height: 1.9;
            color: rgba(255, 255, 255, 0.62);
            margin-top: 14px;
        }

        .footer-h {
            font-family: "Noto Serif SC", "Source Han Serif SC", "Songti SC", SimSun, Georgia, serif;
            font-size: 1.05rem;
            font-weight: 700;
            color: #fff;
            margin-bottom: 18px;
            letter-spacing: .04em;
        }

        .footer-links {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .footer-links li {
            margin-bottom: 12px;
        }

        .footer-links a {
            color: rgba(255, 255, 255, 0.58);
            font-size: .88rem;
            transition: color .25s var(--ease);
        }

        .footer-links a:hover {
            color: #fff;
        }

        .footer-bottom {
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 18px;
            flex-wrap: wrap;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding: 18px 0 24px;
            font-size: .82rem;
            color: rgba(255, 255, 255, 0.45);
            letter-spacing: .03em;
        }

        @media (max-width: 1024px) {
            .header-inner {
                height: 70px;
            }

            .primary-nav {
                gap: 18px;
            }

            .primary-nav a {
                font-size: .9rem;
            }
        }

        @media (max-width: 900px) {
            .header-actions .btn-solid {
                display: none;
            }

            .menu-toggle {
                display: inline-flex;
            }

            .primary-nav {
                position: fixed;
                top: 64px;
                left: 0;
                right: 0;
                bottom: 0;
                display: flex;
                flex-direction: column;
                align-items: stretch;
                gap: 0;
                background: rgba(247, 244, 239, 0.98);
                backdrop-filter: blur(14px);
                padding: 24px 20px 40px;
                z-index: 99;
                border-top: 1px solid var(--line);
                overflow-y: auto;
                opacity: 0;
                visibility: hidden;
                transform: translateY(-8px);
                transition: opacity .25s var(--ease), transform .25s var(--ease), visibility .25s var(--ease);
            }

            .site-header.nav-open .primary-nav {
                opacity: 1;
                visibility: visible;
                transform: translateY(0);
            }

            .primary-nav a {
                width: 100%;
                padding: 18px 4px;
                font-size: 1.4rem;
                font-family: "Noto Serif SC", "Source Han Serif SC", "Songti SC", SimSun, Georgia, serif;
                color: var(--ink);
                border-bottom: 1px solid var(--line);
                letter-spacing: .02em;
            }

            .primary-nav a::after {
                display: none;
            }

            .primary-nav a.is-active {
                color: var(--brand);
            }

            .footer-grid {
                grid-template-columns: 1fr 1fr;
            }
        }

        @media (max-width: 768px) {
            .article-card-panel {
                padding: 24px 18px;
                border-radius: 8px;
            }

            .related-grid {
                display: flex;
                flex-direction: column;
            }

            .related-card,
            .related-card.main-card,
            .related-card.side-card {
                min-height: 0;
                padding: 24px 20px;
            }

            .cta-strip {
                padding: 28px 22px;
            }

            .cta-inner {
                flex-direction: column;
                align-items: flex-start;
            }

            .footer-grid {
                grid-template-columns: 1fr;
                gap: 34px;
            }

            .source-note {
                padding: 16px 14px;
                flex-direction: column;
            }
        }

        @media (max-width: 520px) {
            .header-inner {
                height: 62px;
                gap: 8px;
            }

            .brand-seal {
                width: 36px;
                height: 36px;
                font-size: 20px;
                border-radius: 6px;
            }

            .brand-name {
                font-size: 1rem;
                line-height: 1.3;
            }

            .brand-name small {
                font-size: .62rem;
            }

            .icon-btn {
                width: 34px;
                height: 34px;
            }

            .article-main {
                padding-top: 28px;
            }

            .post-header h1 {
                font-size: 1.9rem;
                line-height: 1.25;
            }

            .share-btn {
                padding: 9px 14px;
                font-size: .82rem;
            }

            .article-prose {
                font-size: 1rem;
                line-height: 1.9;
            }

            .footer-bottom {
                justify-content: center;
                text-align: center;
            }
        }

        @media (prefers-reduced-motion: reduce) {
            html {
                scroll-behavior: auto;
            }

            *,
            *::before,
            *::after {
                animation-duration: 0.01ms !important;
                transition-duration: 0.01ms !important;
            }
        }

/* roulang page: category2 */
:root {
            --paper: #f7f4ef;
            --surface: #ffffff;
            --ink: #1c1917;
            --text-muted: #6b6460;
            --brand: #a63a2b;
            --brand-deep: #7e2a1e;
            --line: rgba(28, 25, 23, 0.14);
            --dark-panel: #191613;
            --tint: rgba(166, 58, 43, 0.06);
            --radius: 6px;
            --radius-lg: 10px;
            --shadow-soft: 0 1px 2px rgba(0, 0, 0, 0.05), 0 8px 24px rgba(0, 0, 0, 0.04);
            --font-serif: "Noto Serif SC", "Source Han Serif SC", "Songti SC", "SimSun", Georgia, serif;
            --font-sans: "Noto Sans SC", "PingFang SC", "Microsoft YaHei", "Helvetica Neue", Arial, sans-serif;
        }

        *,
        *::before,
        *::after {
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            margin: 0;
            background: var(--paper);
            color: var(--ink);
            font-family: var(--font-sans);
            font-size: 16px;
            line-height: 1.85;
            -webkit-font-smoothing: antialiased;
        }

        img {
            max-width: 100%;
            display: block;
        }

        a {
            color: inherit;
            text-decoration: none;
            transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease;
        }

        button {
            font-family: var(--font-sans);
            border: 0;
            background: transparent;
            color: inherit;
            cursor: pointer;
        }

        figure {
            margin: 0;
        }

        h1,
        h2,
        h3,
        h4 {
            font-family: var(--font-serif);
            margin: 0;
            line-height: 1.2;
            font-weight: 800;
        }

        a:focus-visible,
        button:focus-visible {
            outline: 2px solid var(--brand);
            outline-offset: 3px;
        }

        .wrap {
            max-width: 1280px;
            margin-left: auto;
            margin-right: auto;
            padding-left: 28px;
            padding-right: 28px;
        }

        .page-section {
            padding: clamp(72px, 8vw, 116px) 0;
        }

        .eyebrow {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            font-size: 0.8125rem;
            letter-spacing: 0.12em;
            color: var(--brand);
            text-transform: uppercase;
            font-weight: 700;
        }

        .eyebrow::before {
            content: "";
            width: 28px;
            height: 1px;
            background: var(--brand);
        }

        .eyebrow--light {
            color: #e7b9ad;
        }

        .eyebrow--light::before {
            background: var(--brand);
        }

        .section-title {
            margin-top: 16px;
            font-size: clamp(1.9rem, 3.6vw, 2.8rem);
            letter-spacing: 0.01em;
        }

        .section-sub {
            color: var(--text-muted);
            max-width: 740px;
            font-size: 1rem;
            margin-top: 14px;
        }

        /* Header */
        .site-header {
            position: sticky;
            top: 0;
            z-index: 80;
            background: rgba(247, 244, 239, 0.92);
            backdrop-filter: blur(14px);
            -webkit-backdrop-filter: blur(14px);
            border-bottom: 1px solid transparent;
            transition: background 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
        }

        .site-header.is-scrolled {
            background: rgba(250, 248, 244, 0.96);
            border-bottom-color: var(--line);
            box-shadow: 0 6px 20px rgba(28, 25, 23, 0.04);
        }

        .header-inner {
            min-height: 76px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 18px;
        }

        .brand-bar {
            display: inline-flex;
            align-items: center;
            gap: 12px;
            flex: 0 0 auto;
        }

        .brand-seal {
            width: 42px;
            height: 42px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            background: var(--dark-panel);
            color: #fff;
            border-radius: 5px;
            font-family: var(--font-serif);
            font-weight: 900;
            font-size: 1.5rem;
        }

        .brand-name {
            font-family: var(--font-serif);
            font-weight: 800;
            font-size: 1.1rem;
            line-height: 1.25;
            color: var(--ink);
            display: flex;
            flex-direction: column;
        }

        .brand-name small {
            font-family: var(--font-sans);
            font-size: 0.7rem;
            font-weight: 500;
            color: var(--text-muted);
            letter-spacing: 0.04em;
        }

        .primary-nav {
            display: flex;
            align-items: center;
            gap: 30px;
        }

        .primary-nav a {
            position: relative;
            font-size: 0.925rem;
            font-weight: 600;
            padding: 6px 0;
            color: var(--ink);
        }

        .primary-nav a::after {
            content: "";
            position: absolute;
            left: 0;
            bottom: -2px;
            width: 20px;
            height: 2px;
            background: transparent;
            opacity: 0;
            transition: opacity 0.2s ease;
        }

        .primary-nav a:hover,
        .primary-nav a:focus-visible {
            color: var(--brand);
        }

        .primary-nav a:hover::after,
        .primary-nav a.is-active::after {
            background: var(--brand);
            opacity: 1;
        }

        .primary-nav a.is-active {
            color: var(--brand);
        }

        .header-actions {
            display: flex;
            align-items: center;
            gap: 10px;
            flex: 0 0 auto;
        }

        .btn-solid {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            border-radius: 999px;
            background: var(--ink);
            color: #fff;
            padding: 0.72rem 1.2rem;
            font-size: 0.875rem;
            font-weight: 700;
            transition: background 0.2s ease, transform 0.2s ease, color 0.2s ease;
        }

        .btn-solid:hover {
            background: var(--brand);
            color: #fff;
            transform: translateY(-2px);
        }

        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            border-radius: 999px;
            padding: 0.95rem 1.6rem;
            font-size: 0.9rem;
            font-weight: 700;
            letter-spacing: 0.04em;
            border: 1px solid transparent;
            transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
        }

        .btn:hover {
            transform: translateY(-2px);
        }

        .btn-brand {
            background: var(--brand);
            color: #fff;
        }

        .btn-brand:hover {
            background: var(--brand-deep);
            color: #fff;
        }

        .btn-dark {
            background: var(--ink);
            color: #fff;
        }

        .btn-dark:hover {
            background: var(--brand-deep);
            color: #fff;
        }

        .btn-line {
            background: #fff;
            color: var(--ink);
            border-color: var(--line);
        }

        .btn-line:hover {
            border-color: var(--brand);
            color: var(--brand);
        }

        .btn-ghost {
            background: transparent;
            border-color: rgba(255, 255, 255, 0.58);
            color: #fff;
        }

        .btn-ghost:hover {
            background: rgba(255, 255, 255, 0.08);
            border-color: #fff;
            color: #fff;
        }

        .icon-btn {
            width: 38px;
            height: 38px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            border: 1px solid var(--line);
            color: var(--ink);
            background: transparent;
            transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
        }

        .icon-btn:hover {
            background: var(--tint);
            color: var(--brand);
            border-color: rgba(166, 58, 43, 0.25);
            transform: translateY(-2px);
        }

        .menu-toggle {
            display: none;
            width: 42px;
            height: 42px;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            border: 1px solid var(--line);
            transition: background 0.2s ease, color 0.2s ease;
        }

        .menu-toggle:hover {
            background: var(--tint);
            color: var(--brand);
        }

        /* Hero */
        .off-hero {
            position: relative;
            background-color: var(--dark-panel);
            background-image: linear-gradient(90deg, rgba(25, 22, 19, 0.96) 0%, rgba(25, 22, 19, 0.9) 44%, rgba(25, 22, 19, 0.58) 82%, rgba(25, 22, 19, 0.76) 100%), url('/assets/images/backpic/back-3.png');
            background-size: cover;
            background-position: center 35%;
            color: #faf8f5;
            padding: clamp(88px, 13vh, 150px) 0;
            border-top: 1px solid rgba(255, 255, 255, 0.06);
        }

        .off-hero .grid-x {
            align-items: center;
        }

        .hero-kicker {
            font-size: 0.85rem;
            letter-spacing: 0.18em;
            color: #dab7ad;
            margin-bottom: 24px;
            font-weight: 700;
        }

        .off-hero h1 {
            font-size: clamp(2.4rem, 5.6vw, 4.4rem);
            line-height: 1.12;
            color: #fff;
            letter-spacing: 0.01em;
            max-width: 760px;
        }

        .hero-lead {
            font-size: 1.05rem;
            color: rgba(250, 248, 245, 0.82);
            max-width: 620px;
            margin: 24px 0 0;
            line-height: 1.9;
        }

        .hero-actions {
            display: flex;
            flex-wrap: wrap;
            gap: 14px;
            margin-top: 34px;
        }

        .hero-figure {
            position: relative;
        }

        .hero-figure img {
            border-radius: 14px;
            border: 1px solid rgba(255, 255, 255, 0.14);
            box-shadow: 0 30px 60px rgba(0, 0, 0, 0.28);
            aspect-ratio: 4 / 4.7;
            object-fit: cover;
            width: 100%;
        }

        .hero-caption {
            display: inline-flex;
            margin-top: 14px;
            color: rgba(255, 255, 255, 0.62);
            font-size: 0.8125rem;
            gap: 8px;
        }

        /* Intro */
        .intro-section {
            background: var(--paper);
        }

        .intro-card {
            background: var(--surface);
            border: 1px solid var(--line);
            border-left: 6px solid var(--brand);
            border-radius: 0 12px 12px 0;
            padding: clamp(24px, 4vw, 46px);
            box-shadow: var(--shadow-soft);
        }

        .intro-card .lead {
            margin-top: 24px;
            color: var(--ink);
            font-size: 1.05rem;
            line-height: 2;
        }

        .intro-card p + p {
            margin-top: 18px;
            color: var(--text-muted);
        }

        .intro-aside {
            background: var(--dark-panel);
            color: #f3efe9;
            border-radius: 12px;
            padding: 30px;
            height: 100%;
            position: relative;
            overflow: hidden;
        }

        .intro-aside::after {
            content: "W";
            position: absolute;
            right: -10px;
            bottom: -46px;
            font-family: var(--font-serif);
            font-size: 9rem;
            font-weight: 900;
            color: rgba(255, 255, 255, 0.04);
            line-height: 1;
        }

        .intro-aside h3 {
            color: #fff;
            font-size: 1.4rem;
            margin-top: 8px;
        }

        .aside-list {
            list-style: none;
            margin: 22px 0 0;
            padding: 0;
            position: relative;
            z-index: 1;
        }

        .aside-list li {
            padding: 12px 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            font-size: 0.9375rem;
            line-height: 1.55;
        }

        .aside-list li span {
            color: #b58d82;
            margin-right: 8px;
        }

        .arrow-link {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            margin-top: 22px;
            font-weight: 700;
            color: #fff;
            font-size: 0.925rem;
            position: relative;
            z-index: 1;
        }

        .arrow-link:hover {
            color: #e4a798;
        }

        .arrow-link svg,
        .arrow-link .arrow-icon {
            transition: transform 0.2s ease;
        }

        .arrow-link:hover svg,
        .arrow-link:hover .arrow-icon {
            transform: translateX(5px);
        }

        /* Chapters */
        .profile-chapters {
            background: var(--surface);
            border-top: 1px solid var(--line);
            border-bottom: 1px solid var(--line);
        }

        .chapter-item {
            display: grid;
            grid-template-columns: 88px 1fr;
            gap: 22px;
            padding: 34px 0;
            border-bottom: 1px solid var(--line);
            transition: background 0.2s ease;
        }

        .chapter-item:last-child {
            border-bottom: 0;
        }

        .chapter-item:hover {
            background: rgba(166, 58, 43, 0.025);
        }

        .chapter-num {
            font-family: var(--font-serif);
            font-size: 3rem;
            font-weight: 900;
            color: var(--brand);
            line-height: 1;
            letter-spacing: -0.02em;
        }

        .chapter-item h3 {
            font-size: 1.35rem;
            margin-bottom: 10px;
        }

        .chapter-item p {
            color: var(--text-muted);
            margin: 0;
            max-width: 680px;
            line-height: 1.9;
        }

        .chapter-meta {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            margin-top: 14px;
        }

        .tag {
            display: inline-flex;
            align-items: center;
            border-radius: 999px;
            background: var(--tint);
            color: var(--brand);
            border: 1px solid rgba(166, 58, 43, 0.12);
            padding: 4px 12px;
            font-size: 0.75rem;
            font-weight: 600;
            letter-spacing: 0.03em;
        }

        .sidebar-sticky {
            position: sticky;
            top: 110px;
        }

        .digest-card {
            background: var(--tint);
            border: 1px solid rgba(166, 58, 43, 0.16);
            border-radius: 12px;
            padding: 26px;
            margin-bottom: 20px;
        }

        .digest-card img {
            border-radius: 8px;
            margin-bottom: 18px;
            object-fit: cover;
            width: 100%;
            max-height: 168px;
        }

        .digest-card h3 {
            font-size: 1.1rem;
            color: var(--ink);
        }

        .digest-card p {
            color: var(--text-muted);
            font-size: 0.925rem;
            margin: 10px 0 0;
            line-height: 1.75;
        }

        .link-block {
            background: var(--dark-panel);
            color: #fff;
            border-radius: 12px;
            padding: 26px;
        }

        .link-block span {
            color: #b58d82;
            font-size: 0.8rem;
            letter-spacing: 0.1em;
            font-weight: 700;
        }

        .link-block h3 {
            font-size: 1.15rem;
            color: #fff;
            margin: 10px 0 14px;
        }

        .link-block ul {
            list-style: none;
            margin: 0;
            padding: 0;
        }

        .link-block li {
            margin-bottom: 8px;
        }

        .link-block a {
            color: rgba(255, 255, 255, 0.78);
            font-size: 0.9rem;
        }

        .link-block a:hover {
            color: #e4a798;
        }

        /* Showcase */
        .showcase-section {
            background: var(--paper);
            overflow: hidden;
        }

        .showcase-media {
            position: relative;
            border-radius: 14px;
            overflow: hidden;
            box-shadow: var(--shadow-soft);
        }

        .showcase-media::after {
            content: "";
            display: block;
            position: absolute;
            inset: 0;
            background: linear-gradient(180deg, transparent 55%, rgba(28, 25, 23, 0.4));
            pointer-events: none;
            border-radius: 14px;
        }

        .showcase-media img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .showcase-copy {
            padding: 18px 0;
        }

        .showcase-copy h2 {
            font-size: clamp(1.9rem, 3vw, 2.8rem);
            margin-top: 14px;
        }

        .showcase-copy p {
            color: var(--text-muted);
            font-size: 1rem;
            line-height: 2;
            margin-top: 22px;
            max-width: 560px;
        }

        .showcase-note {
            margin-top: 24px;
            display: flex;
            gap: 20px;
            align-items: center;
        }

        .note-divider {
            width: 44px;
            height: 2px;
            background: var(--brand);
        }

        .quote-panel {
            background: var(--dark-panel);
            color: #fff;
            padding: clamp(72px, 10vw, 130px) 0;
            margin: 0;
        }

        .quote-inner {
            max-width: 800px;
        }

        .quote-inner blockquote {
            border: 0;
            padding: 0;
            margin: 0;
            font-family: var(--font-serif);
            font-size: clamp(1.6rem, 3.4vw, 2.6rem);
            line-height: 1.5;
            color: #fff;
            font-weight: 700;
            letter-spacing: 0.02em;
        }

        .quote-inner cite {
            margin-top: 26px;
            display: block;
            font-style: normal;
            color: #d7b6ae;
            font-size: 0.9rem;
            letter-spacing: 0.06em;
        }

        /* CTA */
        .cta-save {
            background: var(--paper);
            padding: clamp(72px, 8vw, 110px) 0;
        }

        .cta-box {
            background: var(--dark-panel);
            border-radius: 18px;
            padding: clamp(28px, 5vw, 60px);
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 32px;
            flex-wrap: wrap;
            position: relative;
            overflow: hidden;
        }

        .cta-box::before {
            content: "";
            position: absolute;
            left: 0;
            right: 0;
            top: 0;
            height: 4px;
            background: var(--brand);
        }

        .cta-box h2 {
            color: #fff;
            font-size: clamp(1.8rem, 3vw, 2.6rem);
            max-width: 640px;
            margin-top: 10px;
        }

        .cta-box p {
            color: rgba(255, 255, 255, 0.7);
            margin: 18px 0 0;
            max-width: 560px;
        }

        .cta-actions {
            display: flex;
            flex-wrap: wrap;
            gap: 14px;
            flex: 0 0 auto;
        }

        .cta-actions .btn {
            min-width: 140px;
        }

        .back-top {
            display: inline-flex;
            gap: 8px;
            color: var(--text-muted);
            font-size: 0.875rem;
            margin-top: 28px;
            font-weight: 600;
        }

        .back-top:hover {
            color: var(--brand);
        }

        /* Footer */
        .site-footer {
            background: var(--dark-panel);
            color: #c8c2bb;
            padding: 0 0 26px;
            border-top: 3px solid var(--brand);
        }

        .footer-top {
            padding: 56px 0 34px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 1.4fr 1fr 1fr;
            gap: 44px;
        }

        .footer-brand .brand-name {
            color: #fff;
        }

        .footer-brand .brand-name small {
            color: rgba(255, 255, 255, 0.45);
        }

        .footer-brand .brand-seal {
            background: var(--brand);
        }

        .footer-brand p {
            color: rgba(255, 255, 255, 0.62);
            font-size: 0.925rem;
            margin: 22px 0 0;
            line-height: 1.9;
            max-width: 420px;
        }

        .footer-h {
            color: #fff;
            font-size: 1rem;
            letter-spacing: 0.07em;
            margin-bottom: 18px;
            font-family: var(--font-sans);
        }

        .footer-links {
            list-style: none;
            margin: 0;
            padding: 0;
        }

        .footer-links li {
            margin-bottom: 10px;
        }

        .footer-links a {
            color: rgba(255, 255, 255, 0.62);
            font-size: 0.9rem;
            transition: color 0.2s ease, padding-left 0.2s ease;
        }

        .footer-links a:hover {
            color: #fff;
            padding-left: 6px;
        }

        .footer-bottom {
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 12px;
            flex-wrap: wrap;
            padding-top: 24px;
            color: rgba(255, 255, 255, 0.42);
            font-size: 0.8125rem;
        }

        @media screen and (max-width: 1023px) {
            .wrap {
                padding-left: 20px;
                padding-right: 20px;
            }

            .primary-nav {
                position: absolute;
                top: calc(100% + 10px);
                left: 16px;
                right: 16px;
                background: var(--surface);
                border: 1px solid var(--line);
                border-radius: 14px;
                box-shadow: 0 18px 40px rgba(0, 0, 0, 0.1);
                display: flex;
                flex-direction: column;
                align-items: stretch;
                padding: 14px;
                gap: 0;
                opacity: 0;
                visibility: hidden;
                transform: translateY(-8px);
                transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
            }

            .site-header.menu-open .primary-nav {
                opacity: 1;
                visibility: visible;
                transform: translateY(0);
            }

            .primary-nav a {
                padding: 12px 14px;
                font-size: 1rem;
                border-bottom: 1px solid rgba(28, 25, 23, 0.06);
            }

            .primary-nav a:last-child {
                border-bottom: 0;
            }

            .primary-nav a::after {
                display: none;
            }

            .menu-toggle {
                display: inline-flex;
            }

            .footer-grid {
                grid-template-columns: 1fr 1fr;
            }

            .footer-brand {
                grid-column: 1 / -1;
            }
        }

        @media screen and (max-width: 767px) {
            .btn-solid {
                display: none;
            }

            .brand-name {
                font-size: 0.98rem;
            }

            .brand-seal {
                width: 38px;
                height: 38px;
                font-size: 1.3rem;
            }

            .hero-actions .btn {
                width: 100%;
            }

            .off-hero {
                background-position: 68% top;
            }

            .chapter-item {
                grid-template-columns: 1fr;
                gap: 12px;
                padding: 28px 0;
            }

            .chapter-num {
                font-size: 2.2rem;
            }

            .footer-grid {
                display: block;
            }

            .footer-grid > div {
                margin-bottom: 30px;
            }

            .cta-box {
                align-items: flex-start;
            }

            .cta-actions .btn {
                width: 100%;
            }

            .footer-bottom {
                align-items: flex-start;
                flex-direction: column;
            }
        }

        @media (prefers-reduced-motion: reduce) {
            *,
            *::before,
            *::after {
                animation-duration: 0.01ms !important;
                transition-duration: 0.01ms !important;
                scroll-behavior: auto !important;
            }
        }
