:root {
    color-scheme: light;
    --ink: #12313b;
    --muted: #60737a;
    --brand: #0f5367;
    --brand-dark: #082f3a;
    --accent: #e39a37;
    --accent-soft: rgba(227, 154, 55, .22);
    --hero-start: #f4faf9;
    --hero-end: #e7f1f0;
    --paper: #ffffff;
    --soft: #eef5f5;
    --line: #d9e5e5;
    --shadow: 0 18px 55px rgba(12, 50, 60, .11);
}

.theme-tech { --brand: #1557a0; --brand-dark: #0b2f59; --accent: #34a6a1; --accent-soft: rgba(52, 166, 161, .2); --hero-start: #f4f9ff; --hero-end: #e6f0fb; }
.theme-industrial { --brand: #525d69; --brand-dark: #252c34; --accent: #c5832f; --accent-soft: rgba(197, 131, 47, .2); --hero-start: #f7f8f8; --hero-end: #e8ecee; }
.theme-mobility { --brand: #245a75; --brand-dark: #123548; --accent: #e07a38; --accent-soft: rgba(224, 122, 56, .2); --hero-start: #f5fafc; --hero-end: #e5f0f5; }
.theme-commerce { --brand: #9a3f54; --brand-dark: #552333; --accent: #dd8b3f; --accent-soft: rgba(221, 139, 63, .22); --hero-start: #fff8f8; --hero-end: #f8e9ec; }
.theme-finance { --brand: #315c4b; --brand-dark: #18372c; --accent: #b89138; --accent-soft: rgba(184, 145, 56, .22); --hero-start: #f7faf6; --hero-end: #eaf1e7; }
.theme-wellness { --brand: #39786c; --brand-dark: #1f4942; --accent: #d58762; --accent-soft: rgba(213, 135, 98, .2); --hero-start: #f6fbf9; --hero-end: #e6f2ee; }
.theme-education { --brand: #4b55a3; --brand-dark: #292e65; --accent: #ce853c; --accent-soft: rgba(206, 133, 60, .2); --hero-start: #f8f8ff; --hero-end: #ebecf9; }
.theme-culture { --brand: #754766; --brand-dark: #43273b; --accent: #c88d3b; --accent-soft: rgba(200, 141, 59, .22); --hero-start: #fcf8fb; --hero-end: #f2e9ef; }
.theme-local { --brand: #356d58; --brand-dark: #1b4335; --accent: #d27b42; --accent-soft: rgba(210, 123, 66, .2); --hero-start: #f7fbf8; --hero-end: #e8f1ea; }
.theme-event { --brand: #7b466e; --brand-dark: #46273f; --accent: #e06f52; --accent-soft: rgba(224, 111, 82, .2); --hero-start: #fff8fc; --hero-end: #f4e8f0; }
.theme-entertainment { --brand: #5e4fa0; --brand-dark: #302960; --accent: #e27748; --accent-soft: rgba(226, 119, 72, .22); --hero-start: #faf8ff; --hero-end: #ece8f7; }

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    background: var(--paper);
    color: var(--ink);
    font-family: Inter, "PingFang SC", "Microsoft YaHei", system-ui, -apple-system, sans-serif;
    line-height: 1.75;
}
a { color: inherit; }
.shell { width: min(1120px, calc(100% - 40px)); margin: 0 auto; }
.narrow { max-width: 760px; }

.site-header {
    position: sticky;
    top: 0;
    z-index: 10;
    background: rgba(255, 255, 255, .94);
    border-bottom: 1px solid var(--line);
    backdrop-filter: blur(12px);
}
.header-inner { min-height: 72px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { font-size: 20px; font-weight: 800; text-decoration: none; letter-spacing: -.02em; }
nav { display: flex; align-items: center; gap: 24px; }
nav a { color: #36515a; font-size: 14px; text-decoration: none; }
.nav-cta { padding: 9px 16px; border-radius: 999px; background: var(--brand); color: #fff; }

.hero {
    overflow: hidden;
    padding: 92px 0 84px;
    background:
        radial-gradient(circle at 80% 15%, var(--accent-soft), transparent 28%),
        linear-gradient(135deg, var(--hero-start), var(--hero-end));
}
.hero-grid { display: grid; grid-template-columns: minmax(0, 1.4fr) minmax(280px, .6fr); gap: 72px; align-items: center; }
.status-pill { display: inline-flex; padding: 6px 12px; border: 1px solid #a8c4c7; border-radius: 999px; color: var(--brand); font-size: 13px; font-weight: 700; background: rgba(255,255,255,.65); }
h1, h2, h3 { line-height: 1.22; }
h1 { margin: 20px 0 18px; font-size: clamp(44px, 8vw, 82px); letter-spacing: -.055em; overflow-wrap: anywhere; }
h2 { margin: 8px 0 20px; font-size: clamp(28px, 4vw, 42px); letter-spacing: -.035em; }
h3 { font-size: 19px; }
.hero-lead { max-width: 700px; margin: 0; color: #38555e; font-size: 19px; }
.sale-positioning { margin: -8px 0 14px; color: var(--brand); font-size: 22px; font-weight: 800; letter-spacing: -.02em; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 32px; }
.button { display: inline-flex; min-height: 48px; align-items: center; justify-content: center; padding: 0 22px; border-radius: 10px; font-weight: 700; text-decoration: none; transition: transform .2s ease, box-shadow .2s ease; }
.button:hover { transform: translateY(-2px); }
.button.primary { color: #fff; background: var(--brand); box-shadow: 0 12px 24px rgba(15,83,103,.2); }
.button.secondary { border: 1px solid #a9c2c6; background: rgba(255,255,255,.65); }
.button.light { background: #fff; color: var(--brand-dark); }
.contact-note { margin-top: 18px; color: var(--muted); font-size: 14px; }
.hero-trust { display: flex; flex-wrap: wrap; gap: 8px 22px; margin: 24px 0 0; padding: 0; color: var(--muted); font-size: 13px; list-style: none; }
.hero-trust li::before { content: "✓"; margin-right: 7px; color: var(--brand); font-weight: 900; }
.price-card { padding: 30px; border: 1px solid rgba(255,255,255,.9); border-radius: 20px; background: rgba(255,255,255,.8); box-shadow: var(--shadow); }
.price-card > span { color: var(--muted); font-size: 13px; }
.price-card > strong { display: block; margin: 4px 0 5px; color: var(--brand); font-size: 32px; }
.price-note { margin: 0 0 22px; color: var(--muted); font-size: 12px; }
.price-card dl { margin: 0; }
.price-card dl div, .facts div { display: flex; justify-content: space-between; gap: 20px; padding: 13px 0; border-top: 1px solid var(--line); }
.price-card-link { display: inline-block; margin-top: 20px; color: var(--brand); font-weight: 800; text-decoration: none; }
dt { color: var(--muted); }
dd { margin: 0; text-align: right; font-weight: 650; }

.section { padding: 82px 0; }
.section-muted { background: var(--soft); }
.section-dark { background: var(--brand-dark); color: #fff; }
.two-column { display: grid; grid-template-columns: 1.1fr .9fr; gap: 72px; }
.eyebrow { margin: 0 0 4px; color: var(--accent); font-size: 13px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.fact-panel { padding: 30px; border: 1px solid var(--line); border-radius: 18px; background: #fff; box-shadow: 0 14px 42px rgba(24,58,66,.07); }
.fact-panel h2 { font-size: 25px; }
.tag-list { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 24px; }
.tag-list span { padding: 5px 11px; border-radius: 999px; background: #edf5f4; color: var(--brand); font-size: 13px; }
.use-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 34px; }
.use-card { min-height: 230px; padding: 26px; border: 1px solid var(--line); border-radius: 16px; background: #fff; }
.use-card > span { color: var(--accent); font-weight: 800; }
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; padding: 0; margin: 34px 0 0; list-style: none; counter-reset: step; }
.steps li { position: relative; padding: 24px; border: 1px solid var(--line); border-radius: 14px; }
.steps strong, .steps span { display: block; }
.steps span { margin-top: 8px; color: var(--muted); font-size: 14px; }
.steps.vertical { grid-template-columns: 1fr; }
.callout { display: flex; align-items: center; justify-content: space-between; gap: 40px; }
.callout h2 { margin-bottom: 10px; }
.callout p { margin-bottom: 0; color: #c5d8dc; }
.faq-layout { display: grid; grid-template-columns: .7fr 1.3fr; gap: 72px; }
.faq-list details { border-top: 1px solid var(--line); padding: 18px 0; }
.faq-list summary { cursor: pointer; font-weight: 750; }
.faq-list p { color: var(--muted); }
.related-section { padding-top: 20px; }
.related-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.related-grid a { padding: 20px; border: 1px solid var(--line); border-radius: 12px; text-decoration: none; }
.related-grid strong, .related-grid span { display: block; }
.related-grid span { margin-top: 4px; color: var(--muted); font-size: 13px; }

.strategy-section { background: linear-gradient(180deg, #fff, var(--hero-start)); }
.section-intro { max-width: 820px; margin: -6px 0 34px; color: var(--muted); font-size: 17px; }
.strategy-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.strategy-card { padding: 26px; border: 1px solid var(--line); border-radius: 16px; background: rgba(255,255,255,.88); box-shadow: 0 12px 36px rgba(24,58,66,.06); }
.strategy-card > span { color: var(--accent); font-size: 13px; font-weight: 800; letter-spacing: .08em; }
.strategy-card h3 { margin: 10px 0 12px; }
.strategy-card p { margin: 0; color: var(--muted); }
.launch-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 20px; }
.launch-panel { padding: 28px; border-radius: 16px; background: var(--brand-dark); color: #fff; }
.launch-panel h3 { margin: 0 0 18px; }
.topic-list { display: grid; gap: 12px; margin: 0; padding-left: 22px; color: #dbe8eb; }
.value-list { margin: 0; }
.value-list div { display: grid; grid-template-columns: 96px 1fr; gap: 14px; padding: 12px 0; border-top: 1px solid rgba(255,255,255,.16); }
.value-list div:first-child { border-top: 0; padding-top: 0; }
.value-list dt { color: #fff; font-weight: 750; }
.value-list dd { color: #dbe8eb; text-align: left; font-weight: 400; }

.content-entry-section { background: var(--brand-dark); color: #fff; }
.content-entry-section .section-intro { color: #cbdcdf; }
.content-entry-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.content-entry-card { padding: 30px; border: 1px solid rgba(255,255,255,.18); border-radius: 18px; background: rgba(255,255,255,.07); color: #fff; text-decoration: none; transition: transform .2s ease, background .2s ease; }
.content-entry-card:hover { transform: translateY(-3px); background: rgba(255,255,255,.11); }
.content-entry-card > span { color: var(--accent); font-size: 13px; font-weight: 800; letter-spacing: .1em; }
.content-entry-card h3 { margin: 10px 0 12px; font-size: 24px; }
.content-entry-card p { color: #cbdcdf; }
.content-entry-card strong { color: #fff; }

.buyer-value-grid { align-items: start; }
.buyer-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 34px; }
.buyer-card { min-height: 245px; padding: 28px; border: 1px solid var(--line); border-radius: 18px; background: #fff; box-shadow: 0 12px 36px rgba(24,58,66,.06); }
.buyer-card > span { color: var(--accent); font-size: 12px; font-weight: 850; letter-spacing: .08em; }
.buyer-card h3 { margin: 14px 0 12px; font-size: 23px; }
.buyer-card p { margin: 0; color: var(--muted); }
.legal-note { margin: 24px 0 0; padding-left: 16px; border-left: 3px solid var(--accent); color: var(--muted); font-size: 13px; }
.buyer-decision-section { background: linear-gradient(135deg, var(--hero-start), var(--hero-end)); }
.decision-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 58px; align-items: start; }
.decision-list { display: grid; gap: 12px; margin: 30px 0 0; padding: 0; list-style: none; counter-reset: buyer-decision; }
.decision-list li { counter-increment: buyer-decision; position: relative; padding: 17px 18px 17px 62px; border: 1px solid var(--line); border-radius: 12px; background: rgba(255,255,255,.78); }
.decision-list li::before { content: counter(buyer-decision, decimal-leading-zero); position: absolute; left: 19px; color: var(--accent); font-weight: 900; }
.value-panel { padding: 32px; border-radius: 18px; background: var(--brand-dark); color: #fff; box-shadow: var(--shadow); }
.value-panel h3 { margin: 7px 0 24px; font-size: 26px; }
.suffix-explainer { align-items: start; }
.buyer-honesty-section { background: var(--hero-start); }
.caution-list li::before { content: "—"; }

.narrow-wide { max-width: 900px; }
.content-hero { padding: 76px 0 68px; background: radial-gradient(circle at 82% 20%, var(--accent-soft), transparent 30%), linear-gradient(135deg, var(--hero-start), var(--hero-end)); }
.content-hero h1 { max-width: 900px; margin: 18px 0; font-size: clamp(42px, 7vw, 68px); }
.content-lead { max-width: 800px; margin: 0; color: #38555e; font-size: 20px; }
.breadcrumb { display: flex; gap: 9px; margin: 0 0 28px; color: var(--muted); font-size: 13px; }
.breadcrumb a { text-decoration: none; }
.content-meta { display: flex; flex-wrap: wrap; gap: 10px 22px; margin-top: 28px; color: var(--muted); font-size: 13px; }
.content-intro-grid { align-items: start; }
.guide-summary h2 { margin-top: 0; }
.clean-list { display: grid; gap: 12px; margin: 0; padding: 0; list-style: none; }
.clean-list li { position: relative; padding-left: 24px; }
.clean-list li::before { content: "✓"; position: absolute; left: 0; color: var(--accent); font-weight: 800; }
.pillar-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 32px; }
.pillar-card { min-height: 235px; padding: 28px; border: 1px solid var(--line); border-radius: 18px; background: #fff; }
.pillar-card > span { color: var(--accent); font-weight: 850; }
.pillar-card h3 { margin: 14px 0 10px; font-size: 23px; }
.pillar-card p { color: var(--muted); }
.guide-check-grid { display: grid; grid-template-columns: 1fr .75fr; gap: 64px; align-items: start; }
.check-list { display: grid; gap: 14px; padding: 0; margin: 30px 0 0; list-style: none; counter-reset: content-check; }
.check-list li { counter-increment: content-check; padding: 18px 20px; border: 1px solid var(--line); border-radius: 12px; background: #fff; }
.check-list li::before { content: counter(content-check, decimal-leading-zero); display: inline-block; width: 42px; color: var(--accent); font-weight: 850; }
.notice-card { padding: 30px; border-left: 4px solid var(--accent); border-radius: 14px; background: var(--soft); }
.notice-card strong { display: block; margin-bottom: 8px; color: var(--brand); }
.notice-card p { margin: 0; color: var(--muted); }
.topic-card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 30px; }
.topic-card { padding: 24px; border: 1px solid var(--line); border-radius: 15px; background: #fff; }
.topic-card h3 { margin-top: 0; }
.topic-card p { margin-bottom: 0; color: var(--muted); }
.section-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.scenario-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 32px; }
.scenario-card { min-height: 280px; padding: 28px; border: 1px solid var(--line); border-radius: 18px; box-shadow: 0 12px 36px rgba(24,58,66,.06); }
.scenario-card > span { color: var(--accent); font-size: 13px; font-weight: 800; letter-spacing: .08em; }
.scenario-card h3 { margin: 14px 0; font-size: 23px; }
.scenario-card p { color: var(--muted); }
.audience-grid { display: grid; grid-template-columns: 1fr .8fr; gap: 70px; align-items: center; }
.large-copy { max-width: 680px; color: #38555e; font-size: 21px; }
.audience-panel { padding: 30px; border-radius: 18px; background: var(--brand-dark); color: #fff; }
.audience-panel h3 { margin-top: 0; }
.audience-panel .clean-list li { color: #dbe8eb; }
.roadmap-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; padding: 0; margin: 34px 0 0; list-style: none; }
.roadmap-grid li { padding: 24px; border-top: 3px solid var(--accent); background: var(--soft); }
.roadmap-grid li > span { color: var(--accent); font-weight: 850; }
.roadmap-grid h3 { margin: 12px 0 9px; }
.roadmap-grid p { margin: 0; color: var(--muted); }
.callout-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.button.outline-light { border: 1px solid rgba(255,255,255,.55); color: #fff; }

.static-page { min-height: 65vh; }
.static-page h1 { font-size: clamp(38px, 7vw, 66px); }
.static-page > .shell > p { font-size: 18px; }
.not-found { min-height: 100vh; display: flex; flex-direction: column; justify-content: center; }
.not-found h1 { font-size: 58px; }

.site-footer { padding: 52px 0 26px; border-top: 1px solid var(--line); background: #f8fbfb; }
.site-footer p { color: var(--muted); }
.footer-grid { display: flex; justify-content: space-between; gap: 40px; }
.footer-links { display: flex; flex-wrap: wrap; gap: 18px; }
.footer-links a { color: var(--muted); text-decoration: none; }
.copyright { padding-top: 26px; border-top: 1px solid var(--line); color: #789096; font-size: 12px; }

/* Curated operated sites: hongloumeng.com first release */
.curated-site {
    --ink: #2b201d;
    --muted: #75635d;
    --brand: #7c1f2a;
    --brand-dark: #451319;
    --accent: #a36a2d;
    --accent-soft: rgba(163, 106, 45, .16);
    --hero-start: #fbf5e9;
    --hero-end: #efe0c7;
    --paper: #fffdf8;
    --soft: #f5eddf;
    --line: #ded1bf;
    background: var(--paper);
    color: var(--ink);
    font-family: "Noto Serif SC", "Songti SC", SimSun, "PingFang SC", serif;
}
.curated-site .site-header { background: rgba(255, 253, 248, .95); border-bottom-color: #e5d9c8; }
.curated-site .header-inner { min-height: 76px; }
.curated-site .special-brand { display: inline-flex; align-items: baseline; gap: 10px; }
.curated-site .special-brand strong { color: var(--brand); font-size: 24px; letter-spacing: .08em; }
.curated-site .special-brand span { color: #9b857a; font: 11px/1.2 Inter, system-ui, sans-serif; letter-spacing: .08em; text-transform: uppercase; }
.curated-site nav a { color: #5f4a44; font-family: "PingFang SC", "Microsoft YaHei", sans-serif; }
.curated-site .nav-cta { color: #fff; }
.curated-site .button { font-family: "PingFang SC", "Microsoft YaHei", sans-serif; }
.curated-site .button.primary { background: var(--brand); box-shadow: 0 12px 28px rgba(99, 22, 31, .18); }
.curated-site .button.secondary { border-color: #bda99a; background: rgba(255, 253, 248, .72); }
.curated-site .eyebrow { color: var(--brand); }
.curated-site h1, .curated-site h2, .curated-site h3 { font-weight: 700; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0; }

.hlm-hero {
    position: relative;
    overflow: hidden;
    padding: 92px 0 84px;
    background:
        radial-gradient(circle at 83% 18%, rgba(124, 31, 42, .11) 0 2px, transparent 3px),
        radial-gradient(circle at 75% 50%, rgba(163, 106, 45, .13), transparent 24%),
        linear-gradient(135deg, #fffaf0, #efe0c7);
    background-size: 24px 24px, auto, auto;
}
.hlm-hero::before, .hlm-page-hero::before {
    content: "";
    position: absolute;
    width: 420px;
    height: 420px;
    right: -170px;
    top: -190px;
    border: 1px solid rgba(124, 31, 42, .22);
    border-radius: 50%;
    box-shadow: 0 0 0 38px rgba(124, 31, 42, .035), 0 0 0 76px rgba(124, 31, 42, .025);
}
.hlm-hero-grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1.3fr .7fr; gap: 78px; align-items: center; }
.hlm-kicker { margin: 0; color: var(--brand); font: 700 13px/1.4 "PingFang SC", "Microsoft YaHei", sans-serif; letter-spacing: .14em; text-transform: uppercase; }
.hlm-hero h1 { max-width: 790px; margin: 20px 0 22px; font-size: clamp(46px, 6vw, 76px); line-height: 1.13; letter-spacing: -.04em; }
.hlm-lead { max-width: 720px; margin: 0; color: #5f4f48; font-size: 20px; line-height: 1.85; }
.hlm-source-note { max-width: 680px; margin: 22px 0 0; color: #8c776e; font: 13px/1.7 "PingFang SC", "Microsoft YaHei", sans-serif; }
.hlm-search-form { display: flex; max-width: 720px; margin-top: 28px; padding: 6px; border: 1px solid rgba(124, 31, 42, .28); border-radius: 10px; background: rgba(255, 253, 248, .94); box-shadow: 0 16px 40px rgba(70, 35, 22, .1); }
.hlm-search-form input { width: 100%; min-width: 0; padding: 14px 16px; border: 0; outline: 0; background: transparent; color: #2b201d; font: 16px/1.4 "PingFang SC", "Microsoft YaHei", sans-serif; }
.hlm-search-form input::placeholder { color: #9b857a; }
.hlm-search-form input:focus { box-shadow: inset 0 -2px var(--brand); }
.hlm-search-form button { flex: 0 0 auto; padding: 13px 24px; border: 0; border-radius: 7px; background: var(--brand); color: #fff; cursor: pointer; font: 700 15px/1.4 "PingFang SC", "Microsoft YaHei", sans-serif; }
.hlm-search-form button:hover { background: #67151f; }
.hlm-popular-searches { display: flex; flex-wrap: wrap; gap: 8px 14px; align-items: center; margin-top: 14px; color: #806e65; font: 13px/1.5 "PingFang SC", "Microsoft YaHei", sans-serif; }
.hlm-popular-searches a { color: var(--brand); text-underline-offset: 3px; }
.hlm-quick-card { padding: 30px; border: 1px solid rgba(124, 31, 42, .22); border-radius: 4px 26px 4px 26px; background: rgba(255, 253, 248, .88); box-shadow: 0 24px 70px rgba(70, 35, 22, .12); }
.hlm-card-label { display: block; margin-bottom: 12px; color: var(--brand); font: 700 12px/1.4 "PingFang SC", "Microsoft YaHei", sans-serif; letter-spacing: .14em; }
.hlm-quick-card a { display: block; padding: 16px 0; border-top: 1px solid var(--line); text-decoration: none; }
.hlm-quick-card a strong, .hlm-quick-card a span { display: block; }
.hlm-quick-card a strong { font-size: 18px; }
.hlm-quick-card a span { margin-top: 4px; color: var(--muted); font: 13px/1.5 "PingFang SC", "Microsoft YaHei", sans-serif; }
.hlm-quick-card a:hover strong { color: var(--brand); }

.hlm-stat-band { border-top: 1px solid #d9c8b0; border-bottom: 1px solid #d9c8b0; background: #4b161d; color: #fff8ec; }
.hlm-stat-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.hlm-stat-grid > div { padding: 24px 30px; border-left: 1px solid rgba(255, 255, 255, .14); text-align: center; }
.hlm-stat-grid > div:first-child { border-left: 0; }
.hlm-stat-grid strong, .hlm-stat-grid span { display: block; }
.hlm-stat-grid strong { color: #e7c48d; font-size: 28px; }
.hlm-stat-grid span { margin-top: 3px; color: #ddcbc2; font: 13px/1.4 "PingFang SC", "Microsoft YaHei", sans-serif; }

.hlm-paper-section { background: #f6efe2; }
.hlm-section-heading { display: flex; align-items: flex-end; justify-content: space-between; gap: 44px; margin-bottom: 34px; }
.hlm-section-heading h2 { margin-bottom: 0; }
.hlm-section-heading > p { max-width: 520px; margin: 0; color: var(--muted); font-size: 17px; }
.hlm-text-link { color: var(--brand); font-weight: 700; text-decoration: none; white-space: nowrap; }
.hlm-feature-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.hlm-feature-card { min-height: 310px; padding: 30px; border: 1px solid var(--line); background: var(--paper); text-decoration: none; transition: transform .2s ease, border-color .2s ease; }
.hlm-feature-card:hover { transform: translateY(-4px); border-color: #b89472; }
.hlm-feature-card > span, .hlm-project-grid article > span { color: var(--brand); font: 700 12px/1.4 "PingFang SC", "Microsoft YaHei", sans-serif; letter-spacing: .12em; }
.hlm-feature-card h3 { margin: 42px 0 15px; font-size: 25px; }
.hlm-feature-card p { color: var(--muted); }
.hlm-feature-card strong { display: block; margin-top: 26px; color: var(--brand); }

.hlm-character-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.hlm-character-card { display: grid; grid-template-columns: 58px 1fr; min-height: 190px; border: 1px solid #d8c7b1; background: #fffaf1; text-decoration: none; }
.hlm-character-index { display: flex; align-items: center; justify-content: center; border-right: 1px solid #d8c7b1; color: #b39370; font-size: 13px; writing-mode: vertical-rl; }
.hlm-character-card > div { padding: 26px; }
.hlm-character-card p { margin: 0; color: var(--brand); font: 12px/1.4 "PingFang SC", "Microsoft YaHei", sans-serif; letter-spacing: .08em; }
.hlm-character-card h3 { margin: 14px 0 10px; font-size: 29px; }
.hlm-character-card > div > span { color: var(--muted); font-size: 14px; }
.hlm-character-card:hover { border-color: var(--brand); }

.hlm-question-layout { display: grid; grid-template-columns: .75fr 1.25fr; gap: 70px; align-items: start; }
.hlm-question-intro { position: sticky; top: 112px; }
.hlm-question-intro p:not(.eyebrow) { color: var(--muted); font-size: 17px; }
.hlm-mini-faq { border-top: 1px solid var(--line); }
.hlm-mini-faq a { display: grid; grid-template-columns: 1fr auto; gap: 22px; padding: 22px 4px; border-bottom: 1px solid var(--line); text-decoration: none; }
.hlm-mini-faq a strong { font-size: 18px; }
.hlm-mini-faq a span { color: var(--brand); font-size: 14px; }
.hlm-mini-faq a:hover strong { color: var(--brand); }

.hlm-resource-callout { background: #4b161d; color: #fff8ec; }
.hlm-resource-callout-inner, .hlm-next-step { display: flex; align-items: center; justify-content: space-between; gap: 50px; }
.hlm-resource-callout h2 { margin-bottom: 10px; }
.hlm-resource-callout p:not(.eyebrow) { margin: 0; color: #dbc8bd; }

.hlm-page-hero { position: relative; overflow: hidden; padding: 76px 0 72px; background: linear-gradient(135deg, #fffaf0, #efe0c7); }
.hlm-page-hero > .shell { position: relative; z-index: 1; }
.hlm-page-hero h1 { max-width: 930px; margin: 18px 0; font-size: clamp(42px, 6.5vw, 70px); }
.curated-site .breadcrumb { font-family: "PingFang SC", "Microsoft YaHei", sans-serif; }
.hlm-search-hero { padding-bottom: 58px; }
.hlm-search-form-wide { max-width: 850px; margin-top: 28px; }
.hlm-search-results { min-height: 340px; }
.hlm-result-count { margin: 0 0 34px; color: var(--muted); font-size: 15px; }
.hlm-result-group + .hlm-result-group { margin-top: 58px; }
.hlm-result-group > h2 { margin-top: 8px; }
.hlm-result-cards { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; margin-top: 24px; }
.hlm-result-cards > a { padding: 28px; border: 1px solid #d8c7b1; background: #fffaf1; text-decoration: none; }
.hlm-result-cards > a > span { color: var(--brand); font: 12px/1.4 "PingFang SC", "Microsoft YaHei", sans-serif; }
.hlm-result-cards h3 { margin: 14px 0 10px; font-size: 28px; }
.hlm-result-cards p { color: var(--muted); }
.hlm-result-cards strong { color: var(--brand); }
.hlm-result-list { border-top: 1px solid var(--line); }
.hlm-result-list a { display: grid; grid-template-columns: 1fr auto; gap: 24px; padding: 22px 4px; border-bottom: 1px solid var(--line); text-decoration: none; }
.hlm-result-list span { color: var(--brand); }
.hlm-search-empty { max-width: 780px; padding: 32px 0; }
.hlm-search-empty > p:not(.eyebrow) { color: var(--muted); }
.hlm-search-suggestions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 24px; }
.hlm-search-suggestions a { padding: 10px 16px; border: 1px solid #cdb9a5; border-radius: 999px; background: #fffaf1; color: var(--brand); text-decoration: none; }

.hlm-family-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-top: 32px; }
.hlm-family-grid article { min-height: 280px; padding: 26px; border-top: 4px solid var(--brand); background: #fffaf1; }
.hlm-family-grid article > span { color: var(--brand); font-size: 30px; font-weight: 700; }
.hlm-family-grid article > p { color: var(--muted); }
.hlm-family-grid .tag-list span { background: #f0e4d2; }

.hlm-relationship-paths { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.hlm-relationship-paths article { padding: 30px; border: 1px solid #d5c3ad; border-top: 4px solid var(--brand); background: #fffaf1; }
.hlm-relationship-paths h3 { margin: 0 0 24px; font-size: 24px; }
.hlm-relationship-paths article > p { margin: 24px 0 0; color: var(--muted); }
.hlm-path-steps { display: flex; align-items: center; flex-wrap: wrap; gap: 8px; }
.hlm-path-steps a, .hlm-path-steps strong { padding: 7px 10px; border-radius: 4px; background: #f0e4d2; color: var(--brand); font-size: 14px; text-decoration: none; }
.hlm-path-steps > span { color: #ad8c68; }
.hlm-relation-filters { display: flex; flex-wrap: wrap; gap: 9px; margin: 0 0 30px; }
.hlm-relation-filters button { padding: 10px 15px; border: 1px solid #cdb9a5; border-radius: 999px; background: #fffaf1; color: var(--brand); cursor: pointer; font: 700 14px/1.2 "PingFang SC", "Microsoft YaHei", sans-serif; }
.hlm-relation-filters button span { margin-left: 5px; color: #92785d; font-weight: 400; }
.hlm-relation-filters button:hover, .hlm-relation-filters button.is-active { border-color: var(--brand); background: var(--brand); color: #fff8ec; }
.hlm-relation-filters button.is-active span { color: #ead7c6; }

.hlm-relation-list { border-top: 1px solid var(--line); }
.hlm-relation-list article { display: grid; grid-template-columns: .7fr 1.3fr; gap: 44px; padding: 28px 0; border-bottom: 1px solid var(--line); }
.hlm-relation-list article[hidden] { display: none; }
.hlm-relation-pair { display: flex; align-items: center; gap: 14px; font-size: 19px; }
.hlm-relation-pair a { color: var(--brand); font-weight: 700; text-decoration: none; }
.hlm-relation-pair span { color: #b79672; }
.hlm-relation-type { display: inline-block; color: var(--brand); font-weight: 700; }
.hlm-relation-list p { margin: 7px 0 0; color: var(--muted); }
.hlm-residence-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 30px; }
.hlm-residence-grid article { padding: 26px; border: 1px solid #d8c7b1; background: #fffaf1; }
.hlm-residence-grid article > span { color: var(--brand); font: 700 13px/1.4 "PingFang SC", "Microsoft YaHei", sans-serif; }
.hlm-residence-grid h3 { margin: 16px 0 10px; font-size: 25px; }
.hlm-residence-grid h3 a { color: inherit; text-decoration: none; }
.hlm-residence-grid p { color: var(--muted); }
.hlm-next-step > div { max-width: 720px; }
.hlm-next-step > div p:not(.eyebrow) { color: var(--muted); }

.hlm-character-directory { display: grid; gap: 0; }
.hlm-character-directory > article { display: grid; grid-template-columns: 78px 1fr auto; gap: 32px; align-items: center; padding: 38px 0; border-bottom: 1px solid #d7c7b4; }
.hlm-directory-number { color: #ad8c68; font-size: 14px; }
.hlm-directory-main h2 { margin: 10px 0 12px; }
.hlm-directory-main h2 a { text-decoration: none; }
.hlm-directory-main > p { max-width: 760px; color: var(--muted); }
.hlm-directory-meta { display: flex; flex-wrap: wrap; gap: 8px 18px; color: var(--brand); font: 12px/1.4 "PingFang SC", "Microsoft YaHei", sans-serif; }
.hlm-directory-link { color: var(--brand); font-weight: 700; text-decoration: none; white-space: nowrap; }

.hlm-character-hero { padding: 68px 0 70px; background: #4b161d; color: #fff8ec; }
.hlm-character-hero .breadcrumb, .hlm-character-hero .breadcrumb a { color: #cfb9ad; }
.hlm-character-hero .hlm-kicker { color: #e4bd82; }
.hlm-character-hero-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: 70px; align-items: end; }
.hlm-character-hero h1 { margin: 14px 0; color: #fff8ec; font-size: clamp(60px, 9vw, 104px); letter-spacing: .05em; }
.hlm-character-hero .hlm-lead { color: #dac7bc; }
.hlm-character-hero aside { padding: 28px; border: 1px solid rgba(255,255,255,.2); }
.hlm-character-hero aside span, .hlm-profile-side > span { color: #d5ac73; font: 700 12px/1.4 "PingFang SC", "Microsoft YaHei", sans-serif; letter-spacing: .1em; }
.hlm-character-hero aside strong { display: block; margin: 10px 0 16px; font-size: 22px; }
.hlm-character-hero aside p { margin: 0; color: #dac7bc; }
.hlm-profile-grid { display: grid; grid-template-columns: 1.25fr .75fr; gap: 70px; align-items: start; }
.hlm-profile-spacer { margin-top: 56px; }
.hlm-profile-relations { border-top: 1px solid var(--line); }
.hlm-profile-relations > div { padding: 20px 0; border-bottom: 1px solid var(--line); }
.hlm-profile-relations a, .hlm-profile-relations strong { color: var(--brand); font-size: 20px; font-weight: 700; text-decoration: none; }
.hlm-profile-relations p { margin: 5px 0 0; color: var(--muted); }
.hlm-profile-side { position: sticky; top: 110px; padding: 30px; background: #4b161d; color: #fff8ec; }
.hlm-profile-side .tag-list span { background: rgba(255,255,255,.1); color: #fff3df; }
.hlm-profile-side hr { margin: 28px 0; border: 0; border-top: 1px solid rgba(255,255,255,.18); }
.hlm-profile-side p { color: #dac7bc; }
.hlm-evidence-layout { display: grid; grid-template-columns: .8fr 1.2fr; gap: 70px; align-items: start; }
.hlm-evidence-layout > div > p:not(.eyebrow) { color: var(--muted); }
.hlm-evidence-layout ol { margin: 0; padding: 0; list-style: none; counter-reset: evidence; }
.hlm-evidence-layout li { counter-increment: evidence; padding: 22px 0 22px 62px; border-bottom: 1px solid var(--line); position: relative; }
.hlm-evidence-layout li::before { content: counter(evidence, decimal-leading-zero); position: absolute; left: 0; color: var(--brand); font-weight: 700; }
.hlm-character-questions { display: grid; grid-template-columns: .75fr 1.25fr; gap: 70px; align-items: start; }
.hlm-character-questions > div:first-child > p:not(.eyebrow) { color: var(--muted); }
.hlm-scene-section { background: #fffdf8; }
.hlm-scene-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.hlm-scene-card { min-height: 270px; padding: 30px; border: 1px solid #d5c3ad; border-top: 4px solid var(--brand); background: #fffaf1; }
.hlm-scene-card > span { color: var(--brand); font: 700 13px/1.4 "PingFang SC", "Microsoft YaHei", sans-serif; letter-spacing: .08em; }
.hlm-scene-card h3 { margin: 34px 0 14px; font-size: 25px; }
.hlm-scene-card p { margin: 0; color: var(--muted); }
.hlm-text-evidence-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; align-items: stretch; }
.hlm-original-line, .hlm-version-note { padding: 36px; }
.hlm-original-line { background: #4b161d; color: #fff8ec; }
.hlm-original-line .eyebrow { color: #e4bd82; }
.hlm-original-line blockquote { margin: 34px 0 20px; color: #fff8ec; font-size: clamp(27px, 3.5vw, 42px); line-height: 1.55; }
.hlm-original-line > span { color: #e4bd82; font: 700 13px/1.4 "PingFang SC", "Microsoft YaHei", sans-serif; }
.hlm-original-line > p:not(.eyebrow) { margin: 18px 0 0; color: #dac7bc; }
.hlm-version-note { border: 1px solid #d5c3ad; background: #fffaf1; }
.hlm-version-note h2 { margin: 28px 0 18px; font-size: 30px; }
.hlm-version-note > p:not(.eyebrow) { color: var(--muted); }
.hlm-misconception-layout { display: grid; grid-template-columns: .75fr 1.25fr; gap: 70px; align-items: start; }
.hlm-misconception-layout > div:first-child > p:not(.eyebrow) { color: var(--muted); }
.hlm-misconception-list { border-top: 1px solid var(--line); }
.hlm-misconception-list article { padding: 25px 0; border-bottom: 1px solid var(--line); }
.hlm-misconception-list h3 { margin: 0 0 10px; font-size: 22px; }
.hlm-misconception-list p { margin: 0; color: var(--muted); }
.hlm-next-character-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.hlm-next-character-grid a { display: flex; min-height: 235px; padding: 28px; border: 1px solid #d5c3ad; background: #fffaf1; flex-direction: column; text-decoration: none; }
.hlm-next-character-grid a > span { color: var(--brand); font: 700 12px/1.4 "PingFang SC", "Microsoft YaHei", sans-serif; letter-spacing: .08em; }
.hlm-next-character-grid h3 { margin: 25px 0 10px; font-size: 29px; }
.hlm-next-character-grid p { margin: 0; color: var(--muted); }
.hlm-next-character-grid strong { margin-top: auto; padding-top: 20px; color: var(--brand); }

.hlm-events-hero::after { content: "事"; position: absolute; right: 6vw; bottom: -80px; color: rgba(91, 25, 34, .06); font: 700 clamp(180px, 28vw, 340px)/1 "Songti SC", SimSun, serif; pointer-events: none; }
.hlm-event-index { margin: 0; padding: 0; list-style: none; }
.hlm-event-index li { border-bottom: 1px solid #d7c7b4; }
.hlm-event-index a { display: grid; grid-template-columns: 70px 1fr auto; gap: 28px; align-items: center; padding: 35px 0; color: inherit; text-decoration: none; }
.hlm-event-number { color: #ad8c68; font-size: 14px; }
.hlm-event-card-main > p { margin: 0 0 7px; color: var(--brand); font: 700 12px/1.4 "PingFang SC", "Microsoft YaHei", sans-serif; letter-spacing: .06em; }
.hlm-event-card-main h2 { margin: 0 0 10px; font-size: 29px; }
.hlm-event-card-main > span { display: block; max-width: 820px; color: var(--muted); }
.hlm-event-index a > strong { color: var(--brand); white-space: nowrap; }
.hlm-event-method { display: grid; grid-template-columns: .8fr 1.2fr; gap: 70px; align-items: start; }
.hlm-event-method > div:first-child > p:not(.eyebrow) { color: var(--muted); }
.hlm-event-method > div:last-child { display: grid; gap: 0; border-top: 1px solid var(--line); }
.hlm-event-method article { display: grid; grid-template-columns: 46px 1fr; gap: 14px; padding: 22px 0; border-bottom: 1px solid var(--line); }
.hlm-event-method article > span { color: #ad8c68; }
.hlm-event-method h3 { margin: 0 0 7px; font-size: 21px; }
.hlm-event-method article p { grid-column: 2; margin: -8px 0 0; color: var(--muted); }

.hlm-event-hero { padding: 68px 0 70px; background: #4b161d; color: #fff8ec; }
.hlm-event-hero .breadcrumb, .hlm-event-hero .breadcrumb a { color: #cfb9ad; }
.hlm-event-hero .hlm-kicker { color: #e4bd82; }
.hlm-event-hero-grid { display: grid; grid-template-columns: 1.2fr .8fr; gap: 70px; align-items: end; }
.hlm-event-hero h1 { margin: 16px 0 18px; color: #fff8ec; font-size: clamp(52px, 8vw, 92px); }
.hlm-event-hero .hlm-lead { color: #dac7bc; }
.hlm-event-hero aside { padding: 28px; border: 1px solid rgba(255,255,255,.2); }
.hlm-event-hero aside span { color: #e4bd82; font: 700 12px/1.4 "PingFang SC", "Microsoft YaHei", sans-serif; letter-spacing: .08em; }
.hlm-event-hero aside strong { display: block; margin: 12px 0 15px; font-size: 21px; }
.hlm-event-hero aside p { margin: 0; color: #dac7bc; }
.hlm-event-context-grid { display: grid; grid-template-columns: 1.3fr .7fr; gap: 70px; align-items: start; }
.hlm-event-context-grid aside { padding: 30px; border: 1px solid #d5c3ad; background: #fffaf1; }
.hlm-event-context-grid aside span { display: block; color: #ad8c68; font: 700 12px/1.4 "PingFang SC", "Microsoft YaHei", sans-serif; letter-spacing: .08em; }
.hlm-event-context-grid aside strong { display: block; margin: 8px 0 24px; color: var(--brand); font-size: 25px; }
.hlm-event-context-grid aside p { margin: 8px 0 0; color: var(--muted); }
.hlm-event-story { margin: 0; padding: 0; list-style: none; border-top: 1px solid var(--line); }
.hlm-event-story li { display: grid; grid-template-columns: 70px 1fr; gap: 28px; padding: 30px 0; border-bottom: 1px solid var(--line); }
.hlm-event-story li > span { color: #ad8c68; font-size: 14px; }
.hlm-event-story h3 { margin: 0 0 9px; font-size: 24px; }
.hlm-event-story p { margin: 0; color: var(--muted); }
.hlm-event-meaning-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.hlm-event-meaning-grid article { min-height: 210px; padding: 30px; border: 1px solid #d5c3ad; background: #fffaf1; }
.hlm-event-meaning-grid span { color: #ad8c68; }
.hlm-event-meaning-grid p { margin: 30px 0 0; font-size: 18px; }
.hlm-event-people-layout { display: grid; grid-template-columns: .75fr 1.25fr; gap: 70px; align-items: start; }
.hlm-event-people-layout > div:first-child > p:not(.eyebrow) { color: var(--muted); }
.hlm-event-people-list { border-top: 1px solid var(--line); }
.hlm-event-people-list a, .hlm-event-people-list article { display: grid; grid-template-columns: 140px 1fr; gap: 22px; padding: 20px 0; border-bottom: 1px solid var(--line); color: inherit; text-decoration: none; }
.hlm-event-people-list strong { color: var(--brand); font-size: 19px; }
.hlm-event-people-list span { color: var(--muted); }
.hlm-event-reading-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: 25px; align-items: stretch; }
.hlm-event-reading-grid > article, .hlm-event-reading-grid > aside { padding: 36px; }
.hlm-event-reading-grid > article { background: #4b161d; color: #fff8ec; }
.hlm-event-reading-grid > article .eyebrow { color: #e4bd82; }
.hlm-event-reading-grid ol { margin: 28px 0 0; padding-left: 22px; }
.hlm-event-reading-grid li { padding: 7px 0; color: #e4d4ca; }
.hlm-event-reading-grid > aside { border: 1px solid #d5c3ad; background: #fffaf1; }
.hlm-event-reading-grid > aside > p:not(.eyebrow) { color: var(--muted); }
.hlm-event-reading-grid .button { margin-top: 20px; }
.hlm-related-event-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.hlm-related-event-grid a { display: flex; min-height: 280px; padding: 28px; border: 1px solid #d5c3ad; background: #fffaf1; color: inherit; flex-direction: column; text-decoration: none; }
.hlm-related-event-grid a > span { color: var(--brand); font: 700 12px/1.4 "PingFang SC", "Microsoft YaHei", sans-serif; letter-spacing: .06em; }
.hlm-related-event-grid h3 { margin: 28px 0 12px; font-size: 27px; }
.hlm-related-event-grid p { margin: 0; color: var(--muted); }
.hlm-related-event-grid strong { margin-top: auto; padding-top: 24px; color: var(--brand); }

.hlm-twelve-hero::after { content: "十二"; position: absolute; right: 5vw; bottom: -72px; color: rgba(91, 25, 34, .07); font: 700 clamp(150px, 24vw, 310px)/1 "Songti SC", SimSun, serif; letter-spacing: -.18em; pointer-events: none; }
.hlm-twelve-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin: 0; padding: 0; list-style: none; }
.hlm-twelve-grid li { min-width: 0; }
.hlm-twelve-grid a { display: flex; min-height: 320px; padding: 26px; border: 1px solid #d5c3ad; background: #fffaf1; flex-direction: column; text-decoration: none; transition: transform .2s ease, border-color .2s ease; }
.hlm-twelve-grid a:hover { transform: translateY(-4px); border-color: var(--brand); }
.hlm-twelve-grid a > span { color: #ad8c68; font-size: 13px; }
.hlm-twelve-grid a > p { margin: 34px 0 5px; color: var(--brand); font: 12px/1.5 "PingFang SC", "Microsoft YaHei", sans-serif; }
.hlm-twelve-grid h2 { margin: 6px 0 13px; font-size: 32px; }
.hlm-twelve-grid strong { color: var(--muted); font-size: 14px; font-weight: 400; }
.hlm-twelve-grid em { margin-top: auto; padding-top: 24px; color: var(--brand); font-size: 13px; font-style: normal; font-weight: 700; }
.hlm-register-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.hlm-register-grid article { min-height: 280px; padding: 30px; border-top: 4px solid var(--brand); background: #fffaf1; }
.hlm-register-grid article > span { color: #ad8c68; font-size: 13px; font-weight: 700; letter-spacing: .12em; }
.hlm-register-grid h2 { margin: 32px 0 14px; font-size: 27px; }
.hlm-register-grid p { color: var(--muted); }
.hlm-misread-list { border-top: 1px solid var(--line); }
.hlm-misread-list article { display: grid; grid-template-columns: 42px 1fr; gap: 18px; padding: 24px 0; border-bottom: 1px solid var(--line); }
.hlm-misread-list article > span { color: #ad8c68; font-size: 13px; }
.hlm-misread-list h3 { margin: 0 0 7px; font-size: 21px; }
.hlm-misread-list p { margin: 0; color: var(--muted); }

.hlm-faq-page article { display: grid; grid-template-columns: 72px 1fr; gap: 28px; padding: 42px 0; border-bottom: 1px solid #d5c3ad; scroll-margin-top: 100px; }
.hlm-faq-page article > span { color: #ad8c68; font-size: 14px; }
.hlm-faq-page h2 { margin: 0 0 12px; font-size: 28px; }
.hlm-answer-short { margin: 0 0 10px; color: var(--brand); font-size: 19px; font-weight: 700; }
.hlm-faq-page article div > p:not(.hlm-answer-short) { max-width: 820px; color: var(--muted); }
.hlm-answer-links { display: flex; flex-wrap: wrap; gap: 10px 18px; margin-top: 16px; }
.hlm-answer-links a { color: var(--brand); font-size: 14px; font-weight: 700; text-decoration: none; }

.hlm-reading-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.hlm-reading-grid article { padding: 32px; border: 1px solid #d5c3ad; background: #fffaf1; }
.hlm-reading-grid article > span { color: #ad8c68; }
.hlm-reading-grid h2 { margin: 16px 0 8px; font-size: 28px; }
.hlm-reading-for { color: var(--brand); font-weight: 700; }
.hlm-reading-grid dl div { display: grid; grid-template-columns: 90px 1fr; gap: 18px; padding: 18px 0; border-top: 1px solid var(--line); }
.hlm-reading-grid dd { color: var(--muted); text-align: left; font-weight: 400; }

.hlm-resource-grid, .hlm-project-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.hlm-resource-grid article, .hlm-project-grid article { display: flex; min-height: 340px; padding: 30px; border: 1px solid #d5c3ad; background: #fffaf1; flex-direction: column; align-items: flex-start; }
.hlm-resource-grid article > span { color: var(--brand); font: 700 12px/1.4 "PingFang SC", "Microsoft YaHei", sans-serif; letter-spacing: .08em; }
.hlm-resource-grid h2, .hlm-project-grid h2 { margin: 28px 0 12px; font-size: 27px; }
.hlm-resource-grid p, .hlm-project-grid p { color: var(--muted); }
.hlm-resource-grid .button, .hlm-project-grid .button { margin-top: auto; }

.hlm-map-hero { background: linear-gradient(135deg, #fffaf0 0%, #eedec7 72%, #e4d3ba 100%); }
.hlm-map-format-row { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 28px; }
.hlm-map-format-row span { padding: 8px 13px; border: 1px solid #c9af91; border-radius: 999px; background: rgba(255,255,255,.45); color: var(--brand); font: 700 13px/1.3 "PingFang SC", "Microsoft YaHei", sans-serif; }
.hlm-interest-notice { display: flex; gap: 12px; margin-top: 24px; padding: 18px 22px; border: 1px solid #c9af91; background: #fff7e8; }
.hlm-interest-notice strong { color: var(--brand); white-space: nowrap; }
.hlm-interest-notice span { color: var(--muted); }

.hlm-map-download-layout { display: grid; grid-template-columns: minmax(0, 1.12fr) minmax(380px, .88fr); gap: 52px; align-items: start; }
.hlm-map-preview { margin: 0; }
.hlm-map-preview a { display: block; border: 1px solid #d2bea5; background: #fff9ef; }
.hlm-map-preview img { display: block; width: 100%; height: auto; }
.hlm-map-preview figcaption { padding: 12px 2px 0; color: var(--muted); font-size: 13px; }
.hlm-map-downloads > h2 { margin: 8px 0 10px; }
.hlm-map-downloads > p:not(.eyebrow) { color: var(--muted); }
.hlm-map-downloads article { display: grid; grid-template-columns: 52px minmax(0, 1fr) auto; gap: 16px; align-items: center; padding: 19px 0; border-bottom: 1px solid #d6c6b3; }
.hlm-map-downloads article > span { display: flex; width: 48px; height: 48px; align-items: center; justify-content: center; border-radius: 50%; background: #4b161d; color: #fff7e8; font: 700 12px/1 "PingFang SC", "Microsoft YaHei", sans-serif; }
.hlm-map-downloads h3 { margin: 0 0 5px; font-size: 20px; }
.hlm-map-downloads article p { margin: 0; color: var(--muted); font-size: 14px; }
.hlm-map-downloads small { display: block; margin-top: 6px; color: #9b8067; }
.hlm-map-downloads .button { white-space: nowrap; }

.hlm-map-reading-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.hlm-map-reading-grid article { display: flex; min-height: 300px; padding: 30px; border: 1px solid #d5c3ad; border-top: 4px solid var(--brand); background: #fffaf1; flex-direction: column; }
.hlm-map-reading-grid article > span { color: #ad8c68; font-size: 13px; font-weight: 700; }
.hlm-map-reading-grid h3 { margin: 30px 0 12px; font-size: 27px; }
.hlm-map-reading-grid p { margin: 0; color: var(--muted); }
.hlm-map-reading-grid a { margin-top: auto; padding-top: 22px; color: var(--brand); font-weight: 700; text-decoration: none; }

.hlm-map-includes-section { background: #4b161d; color: #fff8ec; }
.hlm-map-includes-layout { display: grid; grid-template-columns: .85fr 1.15fr; gap: 72px; align-items: center; }
.hlm-map-includes-layout .eyebrow { color: #e4bd82; }
.hlm-map-includes-layout h2 { color: #fff8ec; }
.hlm-map-includes-layout > div > p:not(.eyebrow) { color: #dac7bc; }
.hlm-map-includes-layout ul { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; margin: 0; padding: 1px; background: rgba(255,255,255,.18); list-style: none; }
.hlm-map-includes-layout li { padding: 28px; background: #4b161d; }
.hlm-map-includes-layout li strong, .hlm-map-includes-layout li span { display: block; }
.hlm-map-includes-layout li strong { color: #e7c48d; font-size: 34px; }
.hlm-map-includes-layout li span { margin-top: 8px; color: #dac7bc; }

.hlm-premium-validation { display: grid; grid-template-columns: .9fr 1.1fr; gap: 72px; align-items: start; }
.hlm-premium-validation > div > p:not(.eyebrow) { color: var(--muted); }
.hlm-premium-validation .button { margin-top: 18px; }
.hlm-premium-validation ul { margin: 0; padding: 0; border-top: 1px solid var(--line); list-style: none; }
.hlm-premium-validation li { padding: 22px 0; border-bottom: 1px solid var(--line); }
.hlm-premium-validation li strong, .hlm-premium-validation li span { display: block; }
.hlm-premium-validation li strong { color: var(--brand); font-size: 19px; }
.hlm-premium-validation li span { margin-top: 6px; color: var(--muted); }

.hlm-map-faq { display: grid; grid-template-columns: .7fr 1.3fr; gap: 70px; align-items: start; }
.hlm-map-faq details { border-bottom: 1px solid #d1bea7; }
.hlm-map-faq summary { padding: 22px 0; color: var(--ink); cursor: pointer; font-size: 19px; font-weight: 700; }
.hlm-map-faq details p { margin: -5px 0 24px; color: var(--muted); }

.hlm-resource-feature { display: grid; grid-template-columns: 1.15fr .85fr; gap: 56px; align-items: center; }
.hlm-resource-feature-preview { display: block; border: 1px solid #d2bea5; background: #fff9ef; }
.hlm-resource-feature-preview img { display: block; width: 100%; height: auto; }
.hlm-resource-feature > div > p:not(.eyebrow) { color: var(--muted); }
.hlm-resource-feature ul { display: flex; flex-wrap: wrap; gap: 8px; margin: 22px 0 28px; padding: 0; list-style: none; }
.hlm-resource-feature li { padding: 8px 11px; border: 1px solid #ccb69c; border-radius: 999px; background: #fffaf1; color: var(--brand); font-size: 13px; }

.hlm-privacy-copy { max-width: 820px; }
.hlm-privacy-copy h2 { margin-top: 42px; font-size: 27px; }
.hlm-privacy-copy h2:first-child { margin-top: 0; }
.hlm-privacy-copy p { color: var(--muted); font-size: 17px; }
.hlm-privacy-copy a { color: var(--brand); font-weight: 700; }

.hlm-print-toolbar { padding: 14px 0; background: #4b161d; color: #fff; font-family: "PingFang SC", "Microsoft YaHei", sans-serif; }
.hlm-print-toolbar .shell { display: flex; align-items: center; justify-content: space-between; }
.hlm-print-toolbar a { color: #fff; text-decoration: none; }
.hlm-print-toolbar button { padding: 9px 16px; border: 0; border-radius: 6px; background: #fff; color: #4b161d; cursor: pointer; font-weight: 700; }
.hlm-print-sheet { width: min(1100px, calc(100% - 40px)); margin: 36px auto; color: #2b201d; }
.hlm-print-sheet header { padding-bottom: 20px; border-bottom: 3px solid #7c1f2a; }
.hlm-print-sheet header p { margin: 0; color: #7c1f2a; letter-spacing: .1em; }
.hlm-print-sheet header h1 { margin: 8px 0; font-size: 36px; }
.hlm-print-sheet header span { color: #75635d; }
.hlm-print-sheet section { margin-top: 28px; }
.hlm-print-sheet h2 { font-size: 22px; }
.hlm-print-sheet table { width: 100%; border-collapse: collapse; font-size: 13px; }
.hlm-print-sheet th, .hlm-print-sheet td { padding: 9px; border: 1px solid #cdbcaa; text-align: left; vertical-align: top; }
.hlm-print-sheet th { background: #f1e6d5; }
.hlm-print-residences { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }
.hlm-print-residences div { display: flex; justify-content: space-between; padding: 10px 12px; border: 1px solid #cdbcaa; }
.hlm-print-sheet footer { margin-top: 28px; padding-top: 12px; border-top: 1px solid #cdbcaa; color: #75635d; font-size: 11px; }

.hlm-footer { background: #2e1416; color: #fff5e8; border-top: 0; }
.hlm-footer p, .hlm-footer .footer-links a, .hlm-footer .copyright { color: #cdbab0; }
.hlm-footer .copyright { border-top-color: rgba(255,255,255,.14); }

.hlm-ops-login { min-height: 100vh; display: grid; place-items: center; padding: 48px 20px; background: radial-gradient(circle at 80% 10%, rgba(228,189,130,.22), transparent 28%), #2e1416; }
.hlm-ops-login-card { width: min(520px, 100%); padding: 46px; border: 1px solid rgba(255,255,255,.18); border-radius: 22px; background: #fffaf1; box-shadow: 0 30px 90px rgba(0,0,0,.28); }
.hlm-ops-mark { display: inline-flex; margin-bottom: 34px; color: #5d1720; font: 700 27px/1.2 "Songti SC", SimSun, serif; text-decoration: none; }
.hlm-ops-login-card h1 { margin: 9px 0 16px; color: #32181a; font-size: clamp(38px, 7vw, 58px); }
.hlm-ops-login-card > p:not(.eyebrow) { color: #705f59; }
.hlm-ops-login-form { display: grid; gap: 9px; margin-top: 28px; }
.hlm-ops-login-form label { margin-top: 8px; color: #4b3030; font-weight: 700; }
.hlm-ops-login-form input { width: 100%; min-height: 50px; padding: 10px 13px; border: 1px solid #cdb8a2; border-radius: 9px; background: #fff; color: #2e2020; font: inherit; }
.hlm-ops-login-form input:focus { border-color: #7c1f2a; outline: 3px solid rgba(124,31,42,.12); }
.hlm-ops-login-form button, .hlm-ops-header button { border: 0; cursor: pointer; font: inherit; font-weight: 750; }
.hlm-ops-login-form button { min-height: 50px; margin-top: 18px; border-radius: 9px; background: #5d1720; color: #fff8ec; }
.hlm-ops-alert { margin: 24px 0 0; padding: 14px 16px; border-left: 4px solid #a4333f; background: #f6e6e3; color: #68212a; }
.hlm-ops-alert code { overflow-wrap: anywhere; }
.hlm-ops-back { display: inline-block; margin-top: 26px; color: #6c5550; font-size: 14px; text-decoration: none; }

.hlm-ops-main { min-height: calc(100vh - 70px); padding: 52px 0 70px; background: #f4eee5; color: #271b1a; }
.hlm-ops-header { position: sticky; top: 0; z-index: 20; border-bottom: 1px solid rgba(255,255,255,.12); background: #2e1416; color: #fff8ec; }
.hlm-ops-header-inner { min-height: 70px; display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.hlm-ops-header-inner > div { display: flex; align-items: baseline; gap: 14px; }
.hlm-ops-header a { color: #f0cf98; font: 700 22px/1.2 "Songti SC", SimSun, serif; text-decoration: none; }
.hlm-ops-header span { color: #cdbab0; font-size: 13px; }
.hlm-ops-header form { margin: 0; }
.hlm-ops-header button { padding: 8px 14px; border: 1px solid rgba(255,255,255,.22); border-radius: 999px; background: transparent; color: #fff8ec; }
.hlm-ops-intro { display: flex; align-items: end; justify-content: space-between; gap: 34px; }
.hlm-ops-intro > div { max-width: 730px; }
.hlm-ops-intro h1 { margin: 10px 0 14px; color: #32181a; font-size: clamp(42px, 6vw, 68px); }
.hlm-ops-intro > div > p:last-child { color: #74635d; }
.hlm-ops-periods { display: flex; flex-wrap: wrap; gap: 8px; }
.hlm-ops-periods a { padding: 8px 13px; border: 1px solid #cdb9a6; border-radius: 999px; background: rgba(255,255,255,.55); color: #5f4f4a; text-decoration: none; }
.hlm-ops-periods a[aria-current="page"] { border-color: #5d1720; background: #5d1720; color: #fff8ec; }
.hlm-ops-metrics { display: grid; grid-template-columns: repeat(5, minmax(0,1fr)); gap: 14px; margin-top: 34px; }
.hlm-ops-metrics article { min-width: 0; padding: 23px; border: 1px solid #d8c8b7; border-radius: 15px; background: #fffaf3; box-shadow: 0 14px 36px rgba(74,39,29,.06); }
.hlm-ops-metrics span, .hlm-ops-metrics strong, .hlm-ops-metrics small { display: block; }
.hlm-ops-metrics span { color: #745d55; font-size: 13px; }
.hlm-ops-metrics strong { margin: 8px 0 7px; color: #6d1823; font-size: 38px; line-height: 1; }
.hlm-ops-metrics small { color: #9b8579; line-height: 1.45; }
.hlm-ops-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px; margin-top: 20px; }
.hlm-ops-grid-wide { grid-template-columns: 1.15fr .85fr; margin-top: 34px; }
.hlm-ops-panel { min-width: 0; padding: 28px; border: 1px solid #d8c8b7; border-radius: 16px; background: #fffaf3; box-shadow: 0 14px 36px rgba(74,39,29,.05); }
.hlm-ops-table-panel { margin-top: 20px; }
.hlm-ops-panel-heading { display: flex; align-items: start; justify-content: space-between; gap: 20px; margin-bottom: 23px; }
.hlm-ops-panel-heading h2 { margin: 5px 0 0; font-size: 25px; }
.hlm-ops-panel-heading > span { max-width: 290px; color: #8b756b; font-size: 12px; text-align: right; }
.hlm-ops-daily-list { display: grid; gap: 10px; }
.hlm-ops-daily-list > div { display: grid; grid-template-columns: 42px minmax(70px,1fr) minmax(170px,auto); gap: 12px; align-items: center; }
.hlm-ops-daily-list time { color: #735e56; font-variant-numeric: tabular-nums; }
.hlm-ops-daily-list progress { width: 100%; height: 10px; overflow: hidden; border: 0; border-radius: 999px; background: #e7d8c8; }
.hlm-ops-daily-list progress::-webkit-progress-bar { background: #e7d8c8; }
.hlm-ops-daily-list progress::-webkit-progress-value { background: #7c1f2a; }
.hlm-ops-daily-list progress::-moz-progress-bar { background: #7c1f2a; }
.hlm-ops-daily-list span { color: #8d786e; font-size: 12px; text-align: right; }
.hlm-ops-ranking { margin: 0; padding: 0; list-style: none; }
.hlm-ops-ranking li { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 13px 0; border-top: 1px solid #e2d6c9; }
.hlm-ops-ranking li:first-child { border-top: 0; }
.hlm-ops-ranking li > div { min-width: 0; }
.hlm-ops-ranking strong, .hlm-ops-ranking code { display: block; }
.hlm-ops-ranking code { overflow: hidden; margin-top: 3px; color: #9a8176; font-size: 11px; text-overflow: ellipsis; white-space: nowrap; }
.hlm-ops-ranking li > span { color: #6d1823; font-size: 22px; font-weight: 800; }
.hlm-ops-ranking.compact li > strong { font-size: 15px; }
.hlm-ops-table-wrap { overflow-x: auto; }
.hlm-ops-table-wrap table { width: 100%; border-collapse: collapse; font-size: 14px; }
.hlm-ops-table-wrap th, .hlm-ops-table-wrap td { padding: 13px 12px; border-bottom: 1px solid #e2d6c9; text-align: left; white-space: nowrap; }
.hlm-ops-table-wrap th { color: #806b62; font-size: 12px; }
.hlm-ops-table-wrap tbody tr:last-child td { border-bottom: 0; }
.hlm-ops-split-list { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.hlm-ops-split-list h3 { margin: 0 0 12px; color: #654d47; font-size: 15px; }
.hlm-ops-split-list p { display: flex; justify-content: space-between; gap: 12px; margin: 0; padding: 10px 0; border-top: 1px solid #e2d6c9; color: #77645d; }
.hlm-ops-split-list p strong { color: #6d1823; }
.hlm-ops-empty { margin-top: 28px; padding: 28px; border: 1px dashed #bda795; border-radius: 15px; background: #fffaf3; }
.hlm-ops-empty h2 { margin: 0 0 8px; font-size: 25px; }
.hlm-ops-empty p, .hlm-ops-muted { color: #806d65; }
.hlm-ops-footnote { margin-top: 28px; padding-top: 24px; border-top: 1px solid #d8c8b7; color: #826e65; font-size: 12px; }
.hlm-ops-footnote p { margin: 5px 0; }

.hlm-atlas-hero { background: linear-gradient(135deg, #fff9ed 0%, #ead7bd 68%, #ddc5a6 100%); }
.hlm-atlas-hero::after { content: "图"; position: absolute; right: 5vw; bottom: -78px; color: rgba(91,25,34,.06); font: 700 clamp(190px, 27vw, 340px)/1 "Songti SC", SimSun, serif; pointer-events: none; }
.hlm-atlas-feature { display: grid; grid-template-columns: 1.1fr .9fr; overflow: hidden; border: 1px solid #d3bea4; background: #fffaf1; color: inherit; text-decoration: none; }
.hlm-atlas-feature img { display: block; width: 100%; height: 100%; min-height: 430px; object-fit: cover; }
.hlm-atlas-feature > div { display: flex; padding: 44px; flex-direction: column; justify-content: center; }
.hlm-atlas-feature span, .hlm-atlas-card > div > span, .hlm-related-atlas-grid span { color: var(--brand); font: 700 12px/1.55 "PingFang SC", "Microsoft YaHei", sans-serif; letter-spacing: .06em; }
.hlm-atlas-feature h2 { margin: 24px 0 15px; font-size: 38px; }
.hlm-atlas-feature p { color: var(--muted); }
.hlm-atlas-feature strong { margin-top: 24px; color: var(--brand); }

.hlm-atlas-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 24px; }
.hlm-atlas-card { display: grid; grid-template-columns: .95fr 1.05fr; overflow: hidden; border: 1px solid #d3bea4; background: #fffaf1; }
.hlm-atlas-card-image { display: block; min-height: 100%; background: #eee2d0; }
.hlm-atlas-card-image img { display: block; width: 100%; height: 100%; object-fit: cover; }
.hlm-atlas-card > div { display: flex; min-width: 0; padding: 28px; flex-direction: column; align-items: flex-start; }
.hlm-atlas-card h2 { margin: 18px 0 12px; font-size: 28px; }
.hlm-atlas-card h2 a { color: inherit; text-decoration: none; }
.hlm-atlas-card p { margin: 0; color: var(--muted); }
.hlm-atlas-card ul { display: flex; flex-wrap: wrap; gap: 8px 16px; margin: 20px 0; padding: 0; list-style: none; }
.hlm-atlas-card li { color: var(--muted); font-size: 12px; }
.hlm-atlas-card li strong { margin-right: 4px; color: var(--brand); font-size: 18px; }
.hlm-atlas-card .button { margin-top: auto; }
.hlm-atlas-path-section { background: #4b161d; color: #fff8ec; }
.hlm-atlas-path-section h2 { color: #fff8ec; }
.hlm-atlas-path-section .eyebrow, .hlm-atlas-path-section .hlm-map-reading-grid article > span, .hlm-atlas-path-section .hlm-map-reading-grid a { color: #e6c18a; }
.hlm-atlas-path-section .hlm-map-reading-grid article { border-color: rgba(255,255,255,.2); background: rgba(255,255,255,.06); }
.hlm-atlas-path-section .hlm-map-reading-grid p { color: #d9c6bb; }

.hlm-atlas-topic-hero { background: #4b161d; color: #fff8ec; }
.hlm-atlas-topic-hero .breadcrumb, .hlm-atlas-topic-hero .breadcrumb a { color: #cfb9ad; }
.hlm-atlas-topic-hero .hlm-kicker { color: #e4bd82; }
.hlm-atlas-topic-hero h1 { color: #fff8ec; }
.hlm-atlas-topic-hero .content-lead { color: #dac7bc; }
.hlm-atlas-topic-hero .hlm-map-format-row span { border-color: rgba(255,255,255,.25); background: rgba(255,255,255,.06); color: #f0d4a8; }
.hlm-atlas-download-layout { display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(390px, .9fr); gap: 52px; align-items: start; }
.hlm-atlas-topic-preview { margin: 0; }
.hlm-atlas-topic-preview a { display: block; border: 1px solid #d2bea5; background: #fff9ef; }
.hlm-atlas-topic-preview img { display: block; width: 100%; height: auto; }
.hlm-atlas-topic-preview figcaption { padding-top: 11px; color: var(--muted); font-size: 13px; }
.hlm-atlas-download-panel > h2 { margin: 8px 0 10px; }
.hlm-atlas-download-panel > p:not(.eyebrow) { color: var(--muted); }
.hlm-atlas-download-panel article { display: grid; grid-template-columns: 52px minmax(0,1fr) auto; gap: 16px; align-items: center; padding: 18px 0; border-bottom: 1px solid #d6c6b3; }
.hlm-atlas-download-panel article > span { display: flex; width: 48px; height: 48px; align-items: center; justify-content: center; border-radius: 50%; background: #4b161d; color: #fff7e8; font: 700 11px/1 "PingFang SC", "Microsoft YaHei", sans-serif; }
.hlm-atlas-download-panel h3 { margin: 0 0 5px; font-size: 20px; }
.hlm-atlas-download-panel article p { margin: 0; color: var(--muted); font-size: 13px; }
.hlm-atlas-download-panel small { display: block; margin-top: 5px; color: #9b8067; }
.hlm-atlas-download-panel .button { white-space: nowrap; }

.hlm-atlas-filter { display: flex; flex-wrap: wrap; gap: 9px; margin: 26px 0 30px; }
.hlm-atlas-filter button { padding: 10px 15px; border: 1px solid #c7af93; border-radius: 999px; background: #fffaf1; color: var(--brand); cursor: pointer; font-weight: 700; }
.hlm-atlas-filter button:hover, .hlm-atlas-filter button.is-active { border-color: #4b161d; background: #4b161d; color: #fff7e8; }
.hlm-atlas-interactive-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; }
.hlm-atlas-interactive-grid article { min-height: 245px; padding: 27px; border: 1px solid #d5c3ad; border-top: 4px solid var(--brand); background: #fffaf1; }
.hlm-atlas-interactive-grid article[hidden] { display: none; }
.hlm-atlas-interactive-grid article > span { color: #ad8c68; font: 700 11px/1.5 "PingFang SC", "Microsoft YaHei", sans-serif; letter-spacing: .05em; }
.hlm-atlas-interactive-grid h3 { margin: 24px 0 9px; font-size: 25px; }
.hlm-atlas-interactive-grid strong { display: block; color: var(--brand); font-size: 14px; }
.hlm-atlas-interactive-grid p { margin: 15px 0 0; color: var(--muted); }
.hlm-atlas-guide-section { background: #4b161d; color: #fff8ec; }
.hlm-atlas-guide-layout { display: grid; grid-template-columns: .62fr 1fr .78fr; gap: 54px; align-items: start; }
.hlm-atlas-guide-layout h2 { color: #fff8ec; }
.hlm-atlas-guide-layout .eyebrow { color: #e4bd82; }
.hlm-atlas-guide-layout ol { margin: 0; padding: 0; list-style: none; counter-reset: atlas-guide; }
.hlm-atlas-guide-layout li { counter-increment: atlas-guide; position: relative; padding: 0 0 24px 52px; color: #e2d1c7; }
.hlm-atlas-guide-layout li::before { content: counter(atlas-guide, decimal-leading-zero); position: absolute; left: 0; color: #e4bd82; font-weight: 700; }
.hlm-atlas-version-note { padding: 26px; border: 1px solid rgba(255,255,255,.2); }
.hlm-atlas-version-note span { color: #e4bd82; font: 700 12px/1.4 "PingFang SC", "Microsoft YaHei", sans-serif; letter-spacing: .08em; }
.hlm-atlas-version-note p { margin: 16px 0 0; color: #d9c6bb; }

.hlm-related-atlas-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.hlm-related-atlas-grid > a { overflow: hidden; border: 1px solid #d5c3ad; background: #fffaf1; color: inherit; text-decoration: none; }
.hlm-related-atlas-grid img { display: block; width: 100%; aspect-ratio: 1.414 / 1; object-fit: cover; border-bottom: 1px solid #d5c3ad; }
.hlm-related-atlas-grid > a > div { padding: 24px; }
.hlm-related-atlas-grid h3 { margin: 13px 0 20px; font-size: 26px; }
.hlm-related-atlas-grid strong { color: var(--brand); }

@media (min-width: 801px) and (max-width: 1050px) {
    .hlm-feature-grid, .hlm-twelve-grid, .hlm-scene-grid { grid-template-columns: repeat(2, 1fr); }
    .curated-site nav { gap: 14px; }
    .hlm-atlas-card { grid-template-columns: 1fr; }
}

@media (max-width: 800px) {
    .shell { width: min(100% - 28px, 1120px); }
    .header-inner { min-height: 64px; }
    .site-header nav > a:not(.nav-cta) { display: none; }
    .hero { padding: 68px 0 56px; }
    .hero-grid, .two-column, .faq-layout { grid-template-columns: 1fr; gap: 36px; }
    .use-grid, .steps, .related-grid, .strategy-grid, .launch-grid, .content-entry-grid, .pillar-grid, .guide-check-grid, .topic-card-grid, .scenario-grid, .audience-grid, .roadmap-grid, .buyer-grid, .decision-grid { grid-template-columns: 1fr; }
    .callout, .footer-grid { align-items: flex-start; flex-direction: column; }
    .section { padding: 58px 0; }
    .curated-site .special-brand span { display: none; }
    .hlm-hero { padding: 64px 0 56px; }
    .hlm-hero-grid, .hlm-question-layout, .hlm-character-hero-grid, .hlm-profile-grid, .hlm-evidence-layout, .hlm-character-questions, .hlm-text-evidence-grid, .hlm-misconception-layout { grid-template-columns: 1fr; gap: 36px; }
    .hlm-hero h1 { font-size: clamp(42px, 13vw, 62px); }
    .hlm-search-form { display: grid; grid-template-columns: 1fr; gap: 6px; }
    .hlm-search-form button { width: 100%; }
    .hlm-stat-grid { grid-template-columns: repeat(2, 1fr); }
    .hlm-stat-grid > div:nth-child(3) { border-left: 0; border-top: 1px solid rgba(255,255,255,.14); }
    .hlm-stat-grid > div:nth-child(4) { border-top: 1px solid rgba(255,255,255,.14); }
    .hlm-section-heading, .hlm-resource-callout-inner, .hlm-next-step { align-items: flex-start; flex-direction: column; }
    .hlm-feature-grid, .hlm-character-grid, .hlm-family-grid, .hlm-residence-grid, .hlm-reading-grid, .hlm-resource-grid, .hlm-project-grid, .hlm-twelve-grid, .hlm-register-grid, .hlm-scene-grid, .hlm-next-character-grid, .hlm-relationship-paths, .hlm-event-meaning-grid, .hlm-related-event-grid { grid-template-columns: 1fr; }
    .hlm-event-hero-grid, .hlm-event-context-grid, .hlm-event-method, .hlm-event-people-layout, .hlm-event-reading-grid { grid-template-columns: 1fr; gap: 36px; }
    .hlm-event-index a { grid-template-columns: 42px 1fr; gap: 16px; }
    .hlm-event-index a > strong { grid-column: 2; }
    .hlm-result-cards { grid-template-columns: 1fr; }
    .hlm-result-list a { grid-template-columns: 1fr; gap: 6px; }
    .hlm-question-intro, .hlm-profile-side { position: static; }
    .hlm-mini-faq a { grid-template-columns: 1fr; gap: 5px; }
    .hlm-relation-list article { grid-template-columns: 1fr; gap: 12px; }
    .hlm-character-directory > article { grid-template-columns: 42px 1fr; gap: 18px; }
    .hlm-directory-link { grid-column: 2; }
    .hlm-character-hero h1 { font-size: 64px; }
    .hlm-faq-page article { grid-template-columns: 42px 1fr; gap: 12px; }
    .hlm-print-residences { grid-template-columns: 1fr; }
    .hlm-map-download-layout, .hlm-map-includes-layout, .hlm-premium-validation, .hlm-map-faq, .hlm-resource-feature { grid-template-columns: 1fr; gap: 36px; }
    .hlm-map-downloads article { grid-template-columns: 46px 1fr; }
    .hlm-map-downloads article > span { width: 42px; height: 42px; }
    .hlm-map-downloads .button { grid-column: 2; justify-self: start; }
    .hlm-map-reading-grid { grid-template-columns: 1fr; }
    .hlm-map-reading-grid article { min-height: 0; }
    .hlm-map-includes-layout ul { grid-template-columns: 1fr 1fr; }
    .hlm-interest-notice { align-items: flex-start; flex-direction: column; }
    .hlm-atlas-feature, .hlm-atlas-grid, .hlm-atlas-card, .hlm-atlas-download-layout, .hlm-atlas-guide-layout, .hlm-related-atlas-grid, .hlm-atlas-interactive-grid { grid-template-columns: 1fr; }
    .hlm-atlas-feature img { min-height: 0; }
    .hlm-atlas-card-image img { aspect-ratio: 1.414 / 1; }
    .hlm-atlas-download-panel article { grid-template-columns: 46px 1fr; }
    .hlm-atlas-download-panel .button { grid-column: 2; justify-self: start; }
    .hlm-atlas-guide-layout { gap: 32px; }
    .hlm-ops-login-card { padding: 32px 24px; }
    .hlm-ops-main { padding-top: 34px; }
    .hlm-ops-intro { align-items: flex-start; flex-direction: column; }
    .hlm-ops-metrics { grid-template-columns: 1fr 1fr; }
    .hlm-ops-grid, .hlm-ops-grid-wide { grid-template-columns: 1fr; }
    .hlm-ops-daily-list > div { grid-template-columns: 38px 1fr; }
    .hlm-ops-daily-list span { grid-column: 2; text-align: left; }
    .hlm-ops-panel-heading { align-items: flex-start; flex-direction: column; }
    .hlm-ops-panel-heading > span { text-align: left; }
    .hlm-ops-split-list { grid-template-columns: 1fr; }
}

/* V10: editorial reading experience */
.hlm-hero-copy-v9 h1 { max-width: 720px; text-wrap: balance; }
.hlm-hero-copy-v9 .hlm-lead { max-width: 680px; font-size: 19px; line-height: 1.85; }
.hlm-home-quiet-nav { border-bottom: 1px solid rgba(50,75,67,.14); background: #fbf7ee; }
.hlm-home-quiet-nav .shell { display: flex; gap: 32px; padding-top: 15px; padding-bottom: 15px; }
.hlm-home-quiet-nav a { color: #425c54; font-size: 14px; letter-spacing: .08em; }
.hlm-home-quiet-nav a:hover { color: #8b3a31; }

.hlm-home-start { background: #fffdf8; }
.hlm-home-editorial { display: grid; grid-template-columns: minmax(260px,.78fr) minmax(0,1.22fr); gap: 9vw; align-items: start; }
.hlm-home-editorial-title { position: sticky; top: 110px; }
.hlm-home-editorial-title h2 { margin: 12px 0 0; font-family: var(--serif); font-size: clamp(34px,4.3vw,58px); line-height: 1.16; font-weight: 500; text-wrap: balance; }
.hlm-home-editorial-copy p { margin: 0 0 1.35em; font-size: 19px; line-height: 1.95; color: #394843; }
.hlm-home-editorial-copy p:first-child::first-letter { float: left; margin: .08em .12em 0 0; color: #8b3a31; font-family: var(--serif); font-size: 4.3em; line-height: .75; }
.hlm-home-editorial-copy .hlm-text-link { display: inline-block; margin-top: 12px; font-weight: 700; }

.hlm-intro-section { background: #183f3a; color: #f8f0df; }
.hlm-home-current { display: grid; grid-template-columns: minmax(0,1.48fr) minmax(260px,.72fr); gap: 7vw; }
.hlm-home-current-main h2 { max-width: 820px; margin: 12px 0 28px; color: #fffaf0; font-family: var(--serif); font-size: clamp(35px,4.4vw,62px); line-height: 1.13; font-weight: 500; }
.hlm-home-current-main > p:not(.eyebrow) { max-width: 760px; margin: 0 0 1.25em; color: #dfebe4; font-size: 18px; line-height: 1.9; }
.hlm-home-current-main blockquote { max-width: 650px; margin: 30px 0; padding-left: 24px; border-left: 2px solid #caa85e; color: #f6db9c; font-family: var(--serif); font-size: 24px; line-height: 1.6; }
.hlm-home-current-aside { align-self: start; padding: 30px; border: 1px solid rgba(255,255,255,.16); background: rgba(255,255,255,.05); }
.hlm-home-current-aside .eyebrow { color: #d7bd7c; }
.hlm-home-current-aside a { display: block; padding: 18px 0; border-bottom: 1px solid rgba(255,255,255,.14); color: #fff; }
.hlm-home-current-aside a:last-child { border: 0; color: #efd58f; }
.hlm-home-current-aside span { display: block; margin-bottom: 5px; color: #a9c2b9; font-size: 12px; letter-spacing: .08em; }
.hlm-home-current-aside strong { font-family: var(--serif); font-size: 18px; line-height: 1.45; font-weight: 500; }

.hlm-reading-note { display: flex; flex-direction: column; justify-content: center; }
.hlm-reading-note blockquote { margin: 18px 0; color: #713328; font-family: var(--serif); font-size: 30px; line-height: 1.45; }
.hlm-reading-note p { margin: 0; color: #56645f; line-height: 1.8; }
.hlm-reading-letter .narrow-wide { max-width: 980px; }
.hlm-reading-letter h2, .hlm-reading-editorial-note h2 { margin: 10px 0 30px; font-family: var(--serif); font-size: clamp(34px,4.5vw,58px); line-height: 1.15; font-weight: 500; }
.hlm-reading-letter .narrow-wide > div { columns: 2; column-gap: 64px; }
.hlm-reading-letter p, .hlm-reading-editorial-note > .shell > p:not(.eyebrow) { margin: 0 0 1.3em; color: #3e4b47; font-size: 18px; line-height: 1.9; }
.hlm-reading-stage-list-v10 a { grid-template-columns: 74px minmax(0,1fr) auto; padding: 32px 10px; background: transparent; box-shadow: none; }
.hlm-reading-stage-list-v10 li { border-bottom: 1px solid rgba(46,68,61,.18); }
.hlm-reading-stage-list-v10 div > p { color: #8a4a3f; }
.hlm-reading-stage-list-v10 div > h2 { margin: 7px 0 10px; font-size: clamp(25px,3vw,38px); font-weight: 500; }
.hlm-reading-stage-list-v10 div > span { display: block; max-width: 830px; color: #58645f; font-size: 16px; line-height: 1.75; }
.hlm-reading-stage-list-v10 a > strong { align-self: center; white-space: nowrap; }
.hlm-reading-editorial-note { background: #f1eadb; }
.hlm-reading-editorial-note .narrow-wide { max-width: 920px; }

.hlm-longread-hero { padding: 70px 0 62px; border-bottom: 1px solid rgba(45,66,59,.16); background: linear-gradient(135deg,#f5efe2 0%,#fffdf7 62%,#e4eee8 100%); }
.hlm-longread-hero-inner { max-width: 1030px; }
.hlm-longread-hero h1 { max-width: 980px; margin: 18px 0 24px; color: #193f39; font-family: var(--serif); font-size: clamp(44px,6vw,78px); line-height: 1.08; font-weight: 500; letter-spacing: -.025em; text-wrap: balance; }
.hlm-longread-deck { max-width: 790px; margin: 0; color: #4b5b55; font-size: 20px; line-height: 1.85; }
.hlm-longread-meta { display: flex; flex-wrap: wrap; gap: 10px 24px; margin-top: 30px; color: #78837e; font-size: 13px; }
.hlm-longread-meta span + span::before { content: '·'; margin-right: 24px; color: #b1a48d; }
.hlm-longread-section { background: #fffdf8; }
.hlm-longread { display: grid; grid-template-columns: minmax(0,720px) minmax(250px,320px); gap: clamp(55px,8vw,110px); align-items: start; max-width: 1160px; }
.hlm-longread-body { min-width: 0; }
.hlm-longread-body p { margin: 0 0 1.35em; color: #343f3b; font-family: var(--serif); font-size: 19px; line-height: 2; }
.hlm-longread-body .hlm-longread-opening { font-size: 21px; line-height: 1.95; }
.hlm-longread-body .hlm-longread-opening:first-child::first-letter { float: left; margin: .12em .12em 0 0; color: #8d3f34; font-size: 4.4em; line-height: .72; }
.hlm-original-quote { margin: 48px 0; padding: 34px 40px; border-top: 1px solid #c7b68d; border-bottom: 1px solid #c7b68d; text-align: center; }
.hlm-original-quote blockquote { margin: 0; color: #6f302a; font-family: var(--serif); font-size: clamp(25px,3.2vw,36px); line-height: 1.6; }
.hlm-original-quote figcaption { margin-top: 16px; font-size: 13px; }
.hlm-original-quote figcaption a { color: #788079; }
.hlm-longread-chapter { margin-top: 52px; }
.hlm-longread-chapter h2 { margin: 0 0 24px; color: #173e38; font-family: var(--serif); font-size: clamp(29px,3.4vw,42px); line-height: 1.25; font-weight: 500; }
.hlm-longread-closing { margin-top: 50px !important; padding: 28px 30px; border-left: 3px solid #9e5546; background: #f6efe3; }
.hlm-longread-notes { position: sticky; top: 110px; border-top: 3px solid #254f47; }
.hlm-longread-notes section { padding: 24px 0; border-bottom: 1px solid rgba(46,68,61,.18); }
.hlm-longread-notes ol { margin: 12px 0 0; padding: 0; list-style: none; }
.hlm-longread-notes li { padding: 10px 0; }
.hlm-longread-notes li span { display: block; margin-bottom: 3px; color: #8d6c59; font-size: 12px; }
.hlm-longread-notes li a, .hlm-longread-notes li strong { color: #25473f; font-family: var(--serif); font-size: 16px; line-height: 1.45; font-weight: 500; }
.hlm-longread-people { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 14px; }
.hlm-longread-people a, .hlm-longread-people span { padding: 7px 10px; border: 1px solid #d4cab6; color: #4d5b55; font-size: 13px; }
.hlm-longread-version p:not(.eyebrow) { color: #68716c; font-size: 13px; line-height: 1.75; }
.hlm-longread-version > a { color: #8b3a31; font-size: 13px; font-weight: 700; }

@media (max-width: 900px) {
    .hlm-home-editorial, .hlm-home-current, .hlm-longread { grid-template-columns: 1fr; }
    .hlm-home-editorial { gap: 38px; }
    .hlm-home-editorial-title, .hlm-longread-notes { position: static; }
    .hlm-longread-notes { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
}

@media (max-width: 700px) {
    .hlm-home-quiet-nav .shell { gap: 18px; overflow-x: auto; }
    .hlm-home-editorial-copy p, .hlm-longread-body p { font-size: 17px; line-height: 1.88; }
    .hlm-home-current-main h2, .hlm-longread-hero h1 { font-size: 40px; }
    .hlm-reading-letter .narrow-wide > div { columns: 1; }
    .hlm-reading-stage-list-v10 a { grid-template-columns: 48px 1fr; padding: 26px 0; }
    .hlm-reading-stage-list-v10 a > strong { grid-column: 2; }
    .hlm-longread-hero { padding: 52px 0 42px; }
    .hlm-longread-deck { font-size: 18px; }
    .hlm-longread-meta span + span::before { display: none; }
    .hlm-original-quote { padding: 28px 10px; }
    .hlm-longread-notes { grid-template-columns: 1fr; gap: 0; }
}

@media print {
    @page { size: A4 landscape; margin: 12mm; }
    .hlm-print-toolbar { display: none; }
    .hlm-print-sheet { width: 100%; margin: 0; }
    .hlm-print-sheet table { font-size: 10px; }
    .hlm-print-sheet th, .hlm-print-sheet td { padding: 5px 6px; }
    .hlm-print-sheet section { margin-top: 16px; }
    .hlm-print-sheet header h1 { font-size: 28px; }
}

/* hongloumeng.com V9: continuous reading experience */
.hlm-hero-v9 { min-height: 690px; padding: 104px 0 82px; background: #f1e9da; }
.hlm-hero-v9::before { display: none; }
.hlm-hero-v9::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(255,250,240,.98) 0%, rgba(255,250,240,.92) 36%, rgba(255,250,240,.26) 62%, rgba(255,250,240,0) 80%); }
.hlm-hero-art { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center; }
.hlm-hero-v9 .hlm-hero-grid { display: block; }
.hlm-hero-copy-v9 { position: relative; z-index: 2; width: min(650px, 56%); }
.hlm-hero-copy-v9 h1 { max-width: 650px; font-size: clamp(48px, 5.4vw, 72px); }
.hlm-hero-actions-v9 { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.hlm-hero-v9 .hlm-search-form { max-width: 620px; margin-top: 26px; }

.hlm-home-start { padding-top: 72px; padding-bottom: 72px; }
.hlm-start-grid { display: grid; grid-template-columns: 1.25fr 1fr 1fr; gap: 18px; }
.hlm-start-grid > a { min-height: 310px; padding: 30px; border: 1px solid #d8c7b1; background: #fffaf1; color: inherit; text-decoration: none; transition: transform .2s ease, box-shadow .2s ease; }
.hlm-start-grid > a:hover { transform: translateY(-4px); box-shadow: 0 18px 50px rgba(78, 42, 28, .1); }
.hlm-start-grid > a > span { color: var(--brand); font: 700 12px/1.5 "PingFang SC", "Microsoft YaHei", sans-serif; letter-spacing: .08em; }
.hlm-start-grid h3 { margin: 48px 0 15px; font-size: 28px; }
.hlm-start-grid p { color: var(--muted); }
.hlm-start-grid strong { display: block; margin-top: 28px; color: var(--brand); }
.hlm-start-primary { background: #4b161d !important; color: #fffaf0 !important; }
.hlm-start-primary > span, .hlm-start-primary strong { color: #e7c48d !important; }
.hlm-start-primary p { color: #e4d4cb !important; }
.hlm-feature-grid { grid-template-columns: repeat(5, minmax(0, 1fr)); }
.hlm-feature-card { min-height: 330px; padding: 25px; }
.hlm-feature-card h3 { margin-top: 36px; font-size: 23px; }

.hlm-home-poems { background: #4b161d; color: #fff8ec; }
.hlm-home-poems .eyebrow, .hlm-home-poems .hlm-text-link { color: #e7c48d; }
.hlm-home-poems .hlm-section-heading > p { color: #ddcbc2; }
.hlm-home-poem-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: rgba(255,255,255,.14); }
.hlm-home-poem-grid > a { min-height: 360px; padding: 28px; background: #4b161d; color: inherit; text-decoration: none; }
.hlm-home-poem-grid > a:hover { background: #5b1c25; }
.hlm-home-poem-grid span { color: #d9bb8e; font: 12px/1.5 "PingFang SC", "Microsoft YaHei", sans-serif; }
.hlm-home-poem-grid h3 { margin: 30px 0 18px; font-size: 28px; }
.hlm-home-poem-grid blockquote { margin: 0; color: #f4dfbf; font-size: 18px; line-height: 1.8; }
.hlm-home-poem-grid p { color: #d8c7be; }
.hlm-home-poem-grid strong { display: block; margin-top: 24px; color: #e7c48d; }

.hlm-reading-hero { position: relative; overflow: hidden; padding: 92px 0 82px; background: radial-gradient(circle at 84% 20%, rgba(163,106,45,.16), transparent 24%), linear-gradient(135deg,#fffaf0,#ead8bd); }
.hlm-reading-hero::after { content: "八十"; position: absolute; right: 4vw; bottom: -80px; color: rgba(124,31,42,.055); font-size: 330px; line-height: 1; }
.hlm-reading-hero-grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1.35fr .65fr; gap: 80px; align-items: center; }
.hlm-reading-hero h1 { margin: 20px 0; font-size: clamp(44px, 5.5vw, 70px); }
.hlm-reading-compass { padding: 30px; border: 1px solid rgba(124,31,42,.25); border-radius: 4px 28px 4px 28px; background: rgba(255,253,248,.84); box-shadow: 0 24px 70px rgba(70,35,22,.12); }
.hlm-reading-compass > span { color: var(--brand); font: 700 12px/1.5 "PingFang SC", "Microsoft YaHei", sans-serif; letter-spacing: .1em; }
.hlm-reading-compass ol { margin: 18px 0 0; padding: 0; list-style: none; }
.hlm-reading-compass li { display: grid; grid-template-columns: 62px 1fr; gap: 16px; padding: 18px 0; border-top: 1px solid var(--line); }
.hlm-reading-compass strong { color: var(--brand); }
.hlm-reading-compass small { color: var(--muted); font: 13px/1.6 "PingFang SC", "Microsoft YaHei", sans-serif; }
.hlm-reading-stage-list { margin: 0; padding: 0; border-top: 1px solid #ccb99f; list-style: none; }
.hlm-reading-stage-list li { border-bottom: 1px solid #ccb99f; }
.hlm-reading-stage-list a { display: grid; grid-template-columns: 92px 1fr auto; gap: 28px; align-items: center; padding: 28px 12px; color: inherit; text-decoration: none; }
.hlm-reading-stage-list a:hover { background: rgba(255,255,255,.5); }
.hlm-stage-number { color: #b28f66; font-size: 36px; }
.hlm-reading-stage-list p { margin: 0 0 5px; color: var(--brand); font: 12px/1.5 "PingFang SC", "Microsoft YaHei", sans-serif; }
.hlm-reading-stage-list h2 { margin: 0 0 7px; font-size: 28px; }
.hlm-reading-stage-list div > span { color: var(--muted); }
.hlm-reading-stage-list a > strong { color: var(--brand); white-space: nowrap; }
.hlm-reading-method-v9 { display: grid; grid-template-columns: .7fr 1.3fr; gap: 70px; align-items: start; }
.hlm-method-steps { display: grid; gap: 14px; }
.hlm-method-steps article { padding: 24px 28px; border-left: 3px solid var(--accent); background: #fffaf1; }
.hlm-method-steps span { color: var(--brand); font: 700 12px/1.5 "PingFang SC", "Microsoft YaHei", sans-serif; }
.hlm-method-steps h3 { margin: 7px 0; }
.hlm-method-steps p { margin: 0; color: var(--muted); }
.hlm-version-section { background: #f4e9da; }

.hlm-stage-hero { padding: 70px 0 78px; background: linear-gradient(135deg,#fffaf0,#e9d4b5); }
.hlm-stage-hero-grid { display: grid; grid-template-columns: 180px 1fr; gap: 52px; align-items: center; margin-top: 42px; }
.hlm-stage-seal { display: grid; place-items: center; min-height: 180px; border: 1px solid #bda17d; border-radius: 50%; background: rgba(255,253,248,.62); text-align: center; }
.hlm-stage-seal span, .hlm-stage-seal small { color: var(--brand); font: 12px/1.4 "PingFang SC", "Microsoft YaHei", sans-serif; }
.hlm-stage-seal strong { display: block; color: var(--brand); font-size: 58px; line-height: 1; }
.hlm-stage-hero h1 { margin: 15px 0; font-size: clamp(42px, 5vw, 68px); }
.hlm-stage-thesis { display: grid; grid-template-columns: .55fr 1.45fr; gap: 60px; align-items: start; }
.hlm-stage-thesis blockquote { margin: 0; padding: 0 0 0 32px; border-left: 4px solid var(--accent); font-size: 25px; line-height: 1.8; }
.hlm-checkpoint-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; }
.hlm-checkpoint-grid article { padding: 30px; border: 1px solid #d5c3ad; background: #fffaf1; }
.hlm-checkpoint-grid article > span { color: #b28f66; }
.hlm-checkpoint-grid h3 { margin: 34px 0 14px; font-size: 24px; }
.hlm-checkpoint-grid p { color: var(--muted); }
.hlm-stage-events { margin: 0; padding: 0; border-top: 1px solid var(--line); list-style: none; }
.hlm-stage-events li { display: grid; grid-template-columns: 130px 1fr auto; gap: 28px; align-items: center; padding: 26px 0; border-bottom: 1px solid var(--line); }
.hlm-stage-events > li > span { color: var(--brand); font-weight: 700; }
.hlm-stage-events h3, .hlm-stage-events p { margin: 0; }
.hlm-stage-events p { margin-top: 5px; color: var(--muted); }
.hlm-stage-events a { color: var(--brand); font-weight: 700; text-decoration: none; }
.hlm-stage-people-layout { display: grid; grid-template-columns: .65fr 1.35fr; gap: 60px; }
.hlm-stage-people { display: grid; grid-template-columns: repeat(2,1fr); gap: 14px; }
.hlm-stage-people > a, .hlm-stage-people > article { display: block; padding: 24px; border: 1px solid #d5c3ad; background: #fffaf1; color: inherit; text-decoration: none; }
.hlm-stage-people strong, .hlm-stage-people span { display: block; }
.hlm-stage-people strong { font-size: 22px; }
.hlm-stage-people span { margin-top: 8px; color: var(--muted); }
.hlm-stage-question-layout { display: grid; grid-template-columns: .75fr 1.25fr; gap: 70px; }
.hlm-stage-question-layout ol { margin: 0; counter-reset: question; list-style: none; }
.hlm-stage-question-layout li { counter-increment: question; padding: 20px 0 20px 56px; border-bottom: 1px solid var(--line); font-size: 19px; }
.hlm-stage-question-layout li::before { content: counter(question, decimal-leading-zero); float: left; margin-left: -56px; color: #b28f66; }
.hlm-stage-source { padding: 52px 0; background: #ede0cc; }
.hlm-stage-source-inner { display: flex; align-items: center; justify-content: space-between; gap: 40px; }
.hlm-stage-source-inner p { max-width: 720px; margin: 8px 0 0; }
.hlm-stage-navigation { padding-top: 36px; }
.hlm-stage-navigation .shell { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.hlm-stage-navigation a { padding: 24px; border: 1px solid var(--line); background: #fffaf1; color: inherit; text-decoration: none; }
.hlm-stage-navigation a.next { text-align: right; }
.hlm-stage-navigation span, .hlm-stage-navigation strong { display: block; }
.hlm-stage-navigation span { color: var(--brand); font-size: 13px; }
.hlm-stage-navigation strong { margin-top: 8px; font-size: 19px; }

.hlm-poems-hero { padding: 88px 0 78px; background: #4b161d; color: #fff8ec; }
.hlm-poems-hero .breadcrumb a, .hlm-poems-hero .breadcrumb span, .hlm-poems-hero .hlm-kicker { color: #e7c48d; }
.hlm-poems-hero-grid { display: grid; grid-template-columns: 1.2fr .8fr; gap: 80px; align-items: center; }
.hlm-poems-hero h1 { margin: 18px 0; font-size: clamp(48px,6vw,74px); }
.hlm-poems-hero .hlm-lead { color: #decfc6; }
.hlm-poems-hero blockquote { margin: 0; padding: 32px; border: 1px solid rgba(231,196,141,.45); color: #f4dfbf; font-size: 24px; line-height: 1.8; }
.hlm-poems-hero blockquote span, .hlm-poems-hero blockquote small { display: block; font: 12px/1.6 "PingFang SC", "Microsoft YaHei", sans-serif; }
.hlm-poems-hero blockquote span { margin-bottom: 20px; color: #d9bb8e; }
.hlm-poems-hero blockquote small { margin-top: 18px; color: #cab9af; }
.hlm-poem-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; }
.hlm-poem-grid > a { min-height: 440px; padding: 30px; border: 1px solid #d5c3ad; background: #fffaf1; color: inherit; text-decoration: none; }
.hlm-poem-grid > a:hover { border-color: var(--brand); transform: translateY(-3px); }
.hlm-poem-grid > a > div { display: flex; justify-content: space-between; gap: 16px; color: #9c7b57; }
.hlm-poem-grid h2 { margin: 44px 0 18px; font-size: 30px; }
.hlm-poem-grid blockquote { margin: 0; min-height: 76px; color: var(--brand); font-size: 18px; line-height: 1.8; }
.hlm-poem-grid p { color: var(--muted); }
.hlm-poem-grid strong { display: block; margin-top: 24px; color: var(--brand); }
.hlm-poem-method { display: grid; grid-template-columns: .55fr 1.45fr; gap: 60px; }
.hlm-poem-method ol { display: grid; grid-template-columns: repeat(2,1fr); gap: 14px; margin: 0; padding: 0; list-style: none; }
.hlm-poem-method li { padding: 22px; border-left: 3px solid var(--accent); background: #fffaf1; }
.hlm-poem-method strong, .hlm-poem-method span { display: block; }
.hlm-poem-method span { margin-top: 7px; color: var(--muted); }
.hlm-poem-detail-hero { padding: 74px 0 80px; background: linear-gradient(145deg,#4b161d,#6a2630); color: #fff8ec; }
.hlm-poem-detail-hero .breadcrumb a, .hlm-poem-detail-hero .breadcrumb span, .hlm-poem-detail-hero .hlm-kicker { color: #e7c48d; }
.hlm-poem-detail-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: 70px; align-items: center; margin-top: 38px; }
.hlm-poem-detail-grid h1 { margin: 14px 0; font-size: clamp(54px,7vw,86px); }
.hlm-poem-detail-grid .hlm-lead { color: #decfc6; }
.hlm-poem-detail-grid blockquote { margin: 0; padding: 34px; border: 1px solid rgba(231,196,141,.45); color: #f4dfbf; font-size: 24px; line-height: 1.9; }
.hlm-poem-detail-grid blockquote span { display: block; margin-top: 18px; color: #cdb8a9; font-size: 13px; }
.hlm-poem-context { display: grid; grid-template-columns: .55fr 1.45fr; gap: 60px; }
.hlm-poem-analysis { display: grid; grid-template-columns: .55fr 1.45fr; gap: 60px; }
.hlm-poem-analysis > div:last-child > p { font-size: 18px; }
.hlm-poem-reading-grid { display: grid; grid-template-columns: 1.2fr .8fr; gap: 24px; }
.hlm-poem-reading-grid article, .hlm-poem-reading-grid aside { padding: 32px; border: 1px solid var(--line); background: #fffaf1; }
.hlm-poem-reading-grid ol { padding-left: 22px; }
.hlm-poem-reading-grid li { margin: 14px 0; }
.hlm-poem-connections { display: grid; grid-template-columns: .55fr 1.45fr; gap: 60px; }
.hlm-poem-connections > div:last-child { display: grid; grid-template-columns: repeat(3,1fr); gap: 12px; }
.hlm-poem-connections a { padding: 20px; border: 1px solid #d5c3ad; background: #fffaf1; color: inherit; text-decoration: none; }
.hlm-poem-connections a span, .hlm-poem-connections a strong { display: block; }
.hlm-poem-connections a span { color: var(--brand); font-size: 12px; }
.hlm-poem-connections a strong { margin-top: 7px; }

.hlm-character-chronicle { background: #4b161d; color: #fff8ec; }
.hlm-character-chronicle .eyebrow { color: #e7c48d; }
.hlm-character-chronicle .hlm-section-heading > p { color: #ddcbc2; }
.hlm-chronicle-list { display: grid; grid-template-columns: repeat(4,1fr); gap: 1px; margin: 0; padding: 0; background: rgba(255,255,255,.14); list-style: none; }
.hlm-chronicle-list li { min-height: 280px; padding: 28px; background: #4b161d; }
.hlm-chronicle-list li > span { color: #d9bb8e; font: 12px/1.5 "PingFang SC", "Microsoft YaHei", sans-serif; }
.hlm-chronicle-list h3 { margin: 34px 0 14px; color: #fff8ec; font-size: 24px; }
.hlm-chronicle-list p { color: #d8c7be; }

@media (max-width: 1050px) {
    .hlm-feature-grid { grid-template-columns: repeat(2,1fr); }
    .hlm-home-poem-grid, .hlm-chronicle-list { grid-template-columns: repeat(2,1fr); }
    .hlm-poem-grid { grid-template-columns: repeat(2,1fr); }
}

@media (max-width: 800px) {
    .hlm-hero-v9 { min-height: 760px; padding: 62px 0 48px; }
    .hlm-hero-v9::after { background: linear-gradient(180deg, rgba(255,250,240,.98) 0%, rgba(255,250,240,.91) 52%, rgba(255,250,240,.42) 76%, rgba(255,250,240,.15) 100%); }
    .hlm-hero-art { object-position: 70% center; }
    .hlm-hero-copy-v9 { width: 100%; }
    .hlm-hero-copy-v9 h1 { font-size: clamp(40px,12vw,58px); }
    .hlm-hero-actions-v9 { flex-direction: column; align-items: stretch; }
    .hlm-start-grid, .hlm-home-poem-grid, .hlm-reading-hero-grid, .hlm-reading-method-v9, .hlm-stage-hero-grid, .hlm-stage-thesis, .hlm-checkpoint-grid, .hlm-stage-people-layout, .hlm-stage-question-layout, .hlm-poems-hero-grid, .hlm-poem-grid, .hlm-poem-method, .hlm-poem-detail-grid, .hlm-poem-context, .hlm-poem-analysis, .hlm-poem-reading-grid, .hlm-poem-connections, .hlm-chronicle-list { grid-template-columns: 1fr; }
    .hlm-start-grid > a { min-height: 0; }
    .hlm-start-grid h3 { margin-top: 28px; }
    .hlm-reading-stage-list a { grid-template-columns: 58px 1fr; gap: 16px; }
    .hlm-reading-stage-list a > strong { grid-column: 2; }
    .hlm-stage-hero-grid { gap: 28px; }
    .hlm-stage-seal { width: 150px; min-height: 150px; }
    .hlm-stage-events li { grid-template-columns: 1fr; gap: 8px; }
    .hlm-stage-people { grid-template-columns: 1fr; }
    .hlm-stage-source-inner { align-items: flex-start; flex-direction: column; }
    .hlm-stage-navigation .shell { grid-template-columns: 1fr; }
    .hlm-stage-navigation a.next { text-align: left; }
    .hlm-poems-hero blockquote, .hlm-poem-detail-grid blockquote { font-size: 20px; }
    .hlm-poem-method ol, .hlm-poem-connections > div:last-child { grid-template-columns: 1fr; }
    .hlm-chronicle-list li { min-height: 0; }
}

/* V11: human-edited character, poem and event essays */
.hlm-editorial-hub-hero { padding: 86px 0 76px; border-bottom: 1px solid rgba(41,63,56,.16); background: linear-gradient(135deg,#f4ecdd 0%,#fffdf7 66%,#e1ece6 100%); }
.hlm-editorial-hub-hero .narrow-wide { max-width: 1050px; }
.hlm-editorial-hub-hero h1 { max-width: 1000px; margin: 18px 0 24px; color: #173f38; font-family: var(--serif); font-size: clamp(46px,6vw,76px); line-height: 1.1; font-weight: 500; letter-spacing: -.025em; text-wrap: balance; }
.hlm-editorial-hub-hero .content-lead { max-width: 780px; color: #4d5b56; font-size: 20px; line-height: 1.85; }
.hlm-poem-hub-hero { background: linear-gradient(135deg,#3e151b 0%,#5c2029 64%,#742e36 100%); }
.hlm-poem-hub-hero h1 { color: #fff7e9; }
.hlm-poem-hub-hero .breadcrumb a, .hlm-poem-hub-hero .breadcrumb span, .hlm-poem-hub-hero .hlm-kicker { color: #dfc088; }
.hlm-poem-hub-hero .content-lead { color: #dfcfc4; }
.hlm-event-hub-hero { background: linear-gradient(135deg,#e8eee8 0%,#fffdf7 56%,#efdfc8 100%); }

.hlm-editorial-letter-section { background: #fffdf8; }
.hlm-editorial-letter { max-width: 930px; }
.hlm-editorial-letter > p:not(.eyebrow) { margin: 0 0 1.35em; color: #37443f; font-family: var(--serif); font-size: 20px; line-height: 1.95; }
.hlm-editorial-letter > p:nth-child(2)::first-letter { float: left; margin: .12em .12em 0 0; color: #8d3f34; font-size: 4.3em; line-height: .72; }
.hlm-poem-letter-section { background: #f6efe3; }

.hlm-editorial-directory { border-top: 1px solid #cfc2ad; }
.hlm-editorial-directory > article { display: grid; grid-template-columns: 70px minmax(180px,.55fr) minmax(0,1.45fr); gap: clamp(24px,4vw,64px); align-items: start; padding: 38px 6px 42px; border-bottom: 1px solid #cfc2ad; }
.hlm-editorial-directory-number { color: #a68965; font-family: var(--serif); font-size: 29px; }
.hlm-editorial-directory article > div > p:first-child { margin: 0 0 9px; color: #8d6b57; font-size: 12px; letter-spacing: .06em; }
.hlm-editorial-directory h2 { margin: 0; font-family: var(--serif); font-size: 30px; font-weight: 500; }
.hlm-editorial-directory h2 a { color: #183f38; }
.hlm-editorial-directory h3 { max-width: 760px; margin: 0 0 12px; color: #2b3c36; font-family: var(--serif); font-size: clamp(24px,2.6vw,34px); line-height: 1.3; font-weight: 500; text-wrap: balance; }
.hlm-editorial-directory article > div:last-child > p { max-width: 820px; margin: 0 0 16px; color: #59645f; line-height: 1.8; }
.hlm-editorial-directory article > div:last-child > a { color: #8b3a31; font-size: 14px; font-weight: 700; }
.hlm-poem-editorial-directory blockquote { margin: 16px 0 0; color: #71342c; font-family: var(--serif); font-size: 16px; line-height: 1.75; }

.hlm-editorial-detail-hero { padding: 70px 0 64px; border-bottom: 1px solid rgba(44,65,58,.16); background: linear-gradient(135deg,#f5eee0 0%,#fffdf8 62%,#dfeae4 100%); }
.hlm-editorial-detail-hero-inner { max-width: 1080px; }
.hlm-editorial-detail-hero h1 { max-width: 1040px; margin: 18px 0 24px; color: #173f38; font-family: var(--serif); font-size: clamp(44px,6vw,76px); line-height: 1.09; font-weight: 500; letter-spacing: -.025em; text-wrap: balance; }
.hlm-editorial-detail-deck { max-width: 820px; margin: 0; color: #4c5c56; font-size: 20px; line-height: 1.85; }
.hlm-poem-editorial-hero { background: linear-gradient(140deg,#40151c 0%,#5c2029 67%,#74333a 100%); }
.hlm-poem-editorial-hero h1 { color: #fff8eb; }
.hlm-poem-editorial-hero .breadcrumb a, .hlm-poem-editorial-hero .breadcrumb span, .hlm-poem-editorial-hero .hlm-kicker { color: #dfc08b; }
.hlm-poem-editorial-hero .hlm-editorial-detail-deck { color: #dfd0c7; }
.hlm-poem-editorial-hero .hlm-longread-meta { color: #bfaea5; }
.hlm-event-editorial-hero { background: linear-gradient(135deg,#e9efea 0%,#fffdf8 58%,#efdfc8 100%); }

.hlm-editorial-detail-section { background: #fffdf8; }
.hlm-editorial-detail-layout { display: grid; grid-template-columns: minmax(0,720px) minmax(250px,320px); gap: clamp(54px,8vw,108px); align-items: start; max-width: 1160px; }
.hlm-editorial-article { min-width: 0; }
.hlm-editorial-article > p, .hlm-editorial-chapter > p, .hlm-event-prose-step > p { margin: 0 0 1.35em; color: #333f3a; font-family: var(--serif); font-size: 19px; line-height: 2; }
.hlm-editorial-article .hlm-editorial-opening { font-size: 21px; line-height: 1.95; }
.hlm-editorial-opening:first-child::first-letter { float: left; margin: .12em .12em 0 0; color: #8d3f34; font-size: 4.4em; line-height: .72; }
.hlm-editorial-quote { margin: 48px 0; padding: 32px 36px; border-top: 1px solid #c8b68e; border-bottom: 1px solid #c8b68e; }
.hlm-editorial-quote blockquote { margin: 0; color: #71342d; font-family: var(--serif); font-size: clamp(24px,3vw,34px); line-height: 1.65; text-align: center; }
.hlm-editorial-quote figcaption { margin-top: 16px; color: #7b817c; font-size: 13px; line-height: 1.7; text-align: center; }
.hlm-editorial-chapter { margin-top: 58px; }
.hlm-editorial-chapter > h2, .hlm-event-prose-step > h2 { margin: 10px 0 25px; color: #173f38; font-family: var(--serif); font-size: clamp(30px,3.6vw,43px); line-height: 1.25; font-weight: 500; text-wrap: balance; }
.hlm-editorial-sequence, .hlm-editorial-scenes { margin-top: 30px; border-top: 1px solid #d4c8b6; }
.hlm-editorial-sequence > section, .hlm-editorial-scenes > section { padding: 26px 0 28px; border-bottom: 1px solid #d4c8b6; }
.hlm-editorial-sequence span, .hlm-editorial-scenes span, .hlm-event-prose-step > span { color: #9a765e; font-size: 12px; letter-spacing: .06em; }
.hlm-editorial-sequence h3, .hlm-editorial-scenes h3 { margin: 8px 0 10px; color: #263d36; font-family: var(--serif); font-size: 25px; font-weight: 500; }
.hlm-editorial-sequence p, .hlm-editorial-scenes p { margin: 0; color: #4e5c56; font-family: var(--serif); font-size: 17px; line-height: 1.9; }
.hlm-event-prose-step { position: relative; margin-top: 36px; padding-top: 32px; border-top: 1px solid #d3c6b3; }
.hlm-event-prose-step > h2 { margin-top: 8px; }
.hlm-editorial-closing { margin-top: 54px !important; padding: 28px 30px; border-left: 3px solid #9b5043; background: #f5ecdf; }

.hlm-editorial-notes { position: sticky; top: 104px; border-top: 3px solid #234d44; }
.hlm-editorial-notes > section { padding: 24px 0; border-bottom: 1px solid rgba(46,68,61,.18); }
.hlm-editorial-notes h2 { margin: 8px 0 10px; color: #25483f; font-family: var(--serif); font-size: 27px; font-weight: 500; }
.hlm-editorial-notes p { color: #5e6964; line-height: 1.75; }
.hlm-note-small { font-size: 13px; }
.hlm-editorial-link-list, .hlm-editorial-source-list { margin: 12px 0 0; padding: 0; list-style: none; }
.hlm-editorial-link-list li, .hlm-editorial-source-list li { padding: 10px 0; border-top: 1px solid rgba(46,68,61,.12); color: #52615b; font-size: 14px; line-height: 1.65; }
.hlm-editorial-link-list a, .hlm-editorial-link-list strong { display: block; color: #25483f; font-family: var(--serif); font-size: 17px; font-weight: 500; }
.hlm-editorial-link-list span { display: block; margin-top: 3px; }

.hlm-editorial-related-section { background: #183f39; color: #f8f0df; }
.hlm-editorial-related-layout { display: grid; grid-template-columns: minmax(240px,.7fr) minmax(0,1.3fr); gap: 7vw; align-items: start; }
.hlm-editorial-related-layout h2 { margin: 10px 0 16px; color: #fff7e8; font-family: var(--serif); font-size: clamp(32px,4vw,48px); line-height: 1.25; font-weight: 500; }
.hlm-editorial-related-layout > div:first-child > p:last-child { color: #c8d8d1; line-height: 1.8; }
.hlm-editorial-related-list { border-top: 1px solid rgba(255,255,255,.18); }
.hlm-editorial-related-list a { display: grid; grid-template-columns: 140px 1fr; gap: 22px; padding: 22px 0; border-bottom: 1px solid rgba(255,255,255,.18); color: #fff; }
.hlm-editorial-related-list span { color: #d5bd83; font-size: 12px; }
.hlm-editorial-related-list strong { font-family: var(--serif); font-size: 21px; line-height: 1.5; font-weight: 500; }

.hlm-editorial-faq-layout { display: grid; grid-template-columns: minmax(230px,.7fr) minmax(0,1.3fr); gap: 7vw; }
.hlm-editorial-faq-layout h2 { margin-top: 10px; font-family: var(--serif); font-size: clamp(31px,4vw,47px); line-height: 1.25; font-weight: 500; }
.hlm-editorial-faq article { padding: 24px 0; border-top: 1px solid #cec1ae; }
.hlm-editorial-faq h3 { margin: 0 0 10px; color: #273d36; font-family: var(--serif); font-size: 23px; font-weight: 500; }
.hlm-editorial-faq p { color: #53605b; line-height: 1.8; }
.hlm-editorial-faq a { color: #8b3a31; font-size: 13px; font-weight: 700; }

.hlm-editorial-bottom-nav { padding-top: 34px; }
.hlm-editorial-bottom-nav .shell { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 12px; }
.hlm-editorial-bottom-nav a { min-height: 118px; padding: 24px; border: 1px solid #d0c4b1; background: #fffaf1; color: inherit; }
.hlm-editorial-bottom-nav span, .hlm-editorial-bottom-nav strong { display: block; }
.hlm-editorial-bottom-nav span { color: #8b3a31; font-size: 12px; }
.hlm-editorial-bottom-nav strong { margin-top: 10px; color: #2c4039; font-family: var(--serif); font-size: 19px; line-height: 1.45; font-weight: 500; }

@media (max-width: 900px) {
    .hlm-editorial-detail-layout, .hlm-editorial-related-layout, .hlm-editorial-faq-layout { grid-template-columns: 1fr; }
    .hlm-editorial-notes { position: static; display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 0 28px; }
    .hlm-editorial-directory > article { grid-template-columns: 58px 1fr; }
    .hlm-editorial-directory > article > div:last-child { grid-column: 2; }
}

@media (max-width: 700px) {
    .hlm-editorial-hub-hero, .hlm-editorial-detail-hero { padding: 54px 0 46px; }
    .hlm-editorial-hub-hero h1, .hlm-editorial-detail-hero h1 { font-size: 40px; }
    .hlm-editorial-hub-hero .content-lead, .hlm-editorial-detail-deck { font-size: 18px; }
    .hlm-editorial-letter > p:not(.eyebrow), .hlm-editorial-article > p, .hlm-editorial-chapter > p, .hlm-event-prose-step > p { font-size: 17px; line-height: 1.9; }
    .hlm-editorial-article .hlm-editorial-opening { font-size: 18px; }
    .hlm-editorial-directory > article { grid-template-columns: 42px 1fr; gap: 18px; padding: 30px 0; }
    .hlm-editorial-directory h2 { font-size: 26px; }
    .hlm-editorial-directory h3 { font-size: 25px; }
    .hlm-editorial-quote { padding: 28px 8px; }
    .hlm-editorial-notes { grid-template-columns: 1fr; }
    .hlm-editorial-related-list a { grid-template-columns: 1fr; gap: 6px; }
    .hlm-editorial-bottom-nav .shell { grid-template-columns: 1fr; }
    .hlm-editorial-bottom-nav a { min-height: 0; }
}

/* V12: cross-chapter editorial essays */
.hlm-essay-hub-hero { background: linear-gradient(135deg,#173f38 0%,#25584c 58%,#8e6a43 100%); color: #fff8e9; }
.hlm-essay-hub-hero h1 { color: #fff8e9; }
.hlm-essay-hub-hero .breadcrumb a, .hlm-essay-hub-hero .breadcrumb span, .hlm-essay-hub-hero .hlm-kicker { color: #dfc68f; }
.hlm-essay-hub-hero .hlm-lead { max-width: 820px; color: #dbe7df; font-size: 20px; line-height: 1.85; }
.hlm-section-heading-quiet { padding-bottom: 10px; }
.hlm-essay-directory { border-top: 1px solid #c9bda9; }
.hlm-essay-directory-item { display: grid; grid-template-columns: 82px minmax(0,1fr); gap: clamp(24px,4vw,62px); padding: 42px 4px 46px; border-bottom: 1px solid #c9bda9; }
.hlm-essay-number { color: #a08260; font-family: var(--serif); font-size: 34px; }
.hlm-essay-directory-item > div > p:first-child { margin: 0 0 9px; color: #8f6f57; font-size: 12px; letter-spacing: .06em; }
.hlm-essay-directory-item h2 { max-width: 930px; margin: 0 0 14px; color: #193f37; font-family: var(--serif); font-size: clamp(29px,3.5vw,44px); line-height: 1.26; font-weight: 500; text-wrap: balance; }
.hlm-essay-directory-item h2 a { color: inherit; }
.hlm-essay-directory-item > div > p:nth-of-type(2) { max-width: 820px; color: #56625d; font-size: 17px; line-height: 1.8; }
.hlm-essay-next-step { background: #e4ebe5; }

.hlm-home-essays { background: #e7ede7; }
.hlm-essay-inline-section { background: #e7ede7; }
.hlm-essay-inline-section > .shell > h2 { margin: 8px 0 26px; color: #193f37; font-family: var(--serif); font-size: clamp(30px,4vw,46px); line-height: 1.25; font-weight: 500; }
.hlm-home-essay-list { border-top: 1px solid rgba(32,67,58,.25); }
.hlm-home-essay-list > a { display: grid; grid-template-columns: 54px minmax(0,1fr) auto; gap: 28px; align-items: center; padding: 28px 0; border-bottom: 1px solid rgba(32,67,58,.25); color: inherit; }
.hlm-home-essay-list > a > span { color: #987951; font-family: var(--serif); font-size: 27px; }
.hlm-home-essay-list p { margin: 0; color: #64706b; }
.hlm-home-essay-list div > p:first-child { margin-bottom: 5px; color: #7e624d; font-size: 12px; }
.hlm-home-essay-list h3 { margin: 0 0 6px; color: #1b443b; font-family: var(--serif); font-size: 27px; line-height: 1.35; font-weight: 500; }
.hlm-home-essay-list > a > strong { color: #8b3a31; white-space: nowrap; }

.hlm-essay-hero { padding: 74px 0 68px; border-bottom: 1px solid rgba(255,255,255,.14); background: linear-gradient(135deg,#173f38 0%,#28574c 64%,#705039 100%); color: #fff8e9; }
.hlm-essay-hero .breadcrumb a, .hlm-essay-hero .breadcrumb span, .hlm-essay-hero .hlm-kicker { color: #dfc68f; }
.hlm-essay-hero h1 { max-width: 1050px; margin: 18px 0 24px; color: #fff8e9; font-family: var(--serif); font-size: clamp(45px,6vw,76px); line-height: 1.1; font-weight: 500; letter-spacing: -.025em; text-wrap: balance; }
.hlm-essay-hero .hlm-lead { max-width: 860px; color: #dbe6df; font-size: 20px; line-height: 1.85; }
.hlm-essay-byline { display: flex; flex-wrap: wrap; gap: 10px 24px; margin-top: 30px; color: #c8d5ce; font-size: 13px; }
.hlm-essay-byline span + span::before { content: '·'; margin-right: 24px; color: #d4bc86; }
.hlm-essay-layout { display: grid; grid-template-columns: minmax(0,730px) minmax(240px,300px); gap: clamp(52px,8vw,112px); align-items: start; padding-top: 72px; padding-bottom: 84px; }
.hlm-essay-body { min-width: 0; }
.hlm-essay-opening p, .hlm-essay-section > p:not(.eyebrow), .hlm-essay-closing > p:not(.eyebrow) { margin: 0 0 1.35em; color: #303d38; font-family: var(--serif); font-size: 19px; line-height: 2; }
.hlm-essay-opening p:first-child { font-size: 21px; line-height: 1.95; }
.hlm-essay-opening p:first-child::first-letter { float: left; margin: .12em .12em 0 0; color: #94493d; font-size: 4.4em; line-height: .72; }
.hlm-essay-pullquote { margin: 52px 0; padding: 34px 28px; border-top: 1px solid #bfae8c; border-bottom: 1px solid #bfae8c; text-align: center; }
.hlm-essay-pullquote p { margin: 0; color: #743c32; font-family: var(--serif); font-size: clamp(25px,3vw,36px); line-height: 1.65; }
.hlm-essay-pullquote cite { display: block; margin-top: 14px; color: #777d78; font-size: 13px; font-style: normal; }
.hlm-essay-section { margin-top: 62px; scroll-margin-top: 100px; }
.hlm-essay-section h2 { margin: 10px 0 26px; color: #173f38; font-family: var(--serif); font-size: clamp(31px,3.7vw,44px); line-height: 1.25; font-weight: 500; text-wrap: balance; }
.hlm-essay-closing { margin-top: 62px; padding: 31px 34px; border-left: 3px solid #9b5043; background: #f3e9db; }
.hlm-essay-closing > p:not(.eyebrow) { margin-bottom: 0; font-size: 20px; }
.hlm-essay-sources { margin-top: 46px; padding-top: 28px; border-top: 1px solid #c9bda9; }
.hlm-essay-sources > p:not(.eyebrow) { color: #65706b; font-size: 14px; }
.hlm-essay-sources ul { margin: 16px 0 0; padding: 0; list-style: none; }
.hlm-essay-sources li { padding: 10px 0; border-top: 1px solid rgba(43,66,58,.14); }
.hlm-essay-sources a { color: #275247; }
.hlm-essay-aside { position: sticky; top: 100px; }
.hlm-essay-aside-inner { padding: 24px 0; border-top: 3px solid #245044; border-bottom: 1px solid rgba(36,80,68,.25); }
.hlm-essay-aside ol { margin: 16px 0 24px; padding: 0; counter-reset: essay-toc; list-style: none; }
.hlm-essay-aside li { counter-increment: essay-toc; padding: 12px 0 12px 34px; border-top: 1px solid rgba(36,80,68,.14); }
.hlm-essay-aside li::before { content: counter(essay-toc,decimal-leading-zero); float: left; margin-left: -34px; color: #9b7a56; font-size: 11px; }
.hlm-essay-aside a { color: #34554c; line-height: 1.55; }
.hlm-essay-related h2 { margin: 8px 0 24px; color: #193f37; font-family: var(--serif); font-size: clamp(30px,4vw,46px); font-weight: 500; }
.hlm-essay-related-links { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); border-top: 1px solid #c9bda9; }
.hlm-essay-related-links a { display: flex; justify-content: space-between; gap: 20px; padding: 22px 18px 22px 0; border-bottom: 1px solid #c9bda9; color: #23493f; font-family: var(--serif); font-size: 18px; }
.hlm-essay-related-links a:nth-child(odd) { margin-right: 24px; }
.hlm-essay-related-links span { color: #8b3a31; font: 700 12px/1.6 "PingFang SC", "Microsoft YaHei", sans-serif; white-space: nowrap; }

@media (max-width: 900px) {
    .hlm-essay-layout { grid-template-columns: 1fr; }
    .hlm-essay-aside { position: static; order: -1; }
    .hlm-essay-aside ol { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 0 24px; }
}

@media (max-width: 700px) {
    .hlm-essay-hero { padding: 54px 0 48px; }
    .hlm-essay-hero h1 { font-size: 39px; }
    .hlm-essay-hub-hero .hlm-lead, .hlm-essay-hero .hlm-lead { font-size: 18px; }
    .hlm-essay-directory-item { grid-template-columns: 42px minmax(0,1fr); gap: 18px; padding: 32px 0; }
    .hlm-essay-number { font-size: 27px; }
    .hlm-home-essay-list > a { grid-template-columns: 40px minmax(0,1fr); gap: 14px; align-items: start; }
    .hlm-home-essay-list > a > strong { grid-column: 2; }
    .hlm-home-essay-list h3 { font-size: 23px; }
    .hlm-essay-layout { padding-top: 48px; }
    .hlm-essay-opening p, .hlm-essay-section > p:not(.eyebrow), .hlm-essay-closing > p:not(.eyebrow) { font-size: 17px; line-height: 1.9; }
    .hlm-essay-opening p:first-child, .hlm-essay-closing > p:not(.eyebrow) { font-size: 18px; }
    .hlm-essay-aside ol, .hlm-essay-related-links { grid-template-columns: 1fr; }
    .hlm-essay-related-links a:nth-child(odd) { margin-right: 0; }
    .hlm-essay-byline span + span::before { margin-right: 10px; }
}

/* V14: on-site full text and chapter reader */
.hlm-original-hero { padding: 84px 0 76px; border-bottom: 1px solid rgba(255,255,255,.14); background: radial-gradient(circle at 80% 20%,rgba(213,185,127,.18),transparent 34%),linear-gradient(135deg,#40151c 0%,#5c2029 65%,#71333a 100%); color: #fff8e9; }
.hlm-original-hero .breadcrumb a, .hlm-original-hero .breadcrumb span, .hlm-original-hero .hlm-kicker { color: #dfc68f; }
.hlm-original-hero h1 { margin: 18px 0 22px; color: #fff8e9; font-family: var(--serif); font-size: clamp(50px,7vw,82px); line-height: 1.08; font-weight: 500; letter-spacing: -.025em; }
.hlm-original-hero .hlm-lead { max-width: 800px; color: #e1d2c9; font-size: 20px; line-height: 1.85; }
.hlm-original-intro { background: #fffdf8; }
.hlm-original-intro-grid { display: grid; grid-template-columns: minmax(220px,.65fr) minmax(0,1.35fr); gap: clamp(44px,8vw,110px); }
.hlm-original-intro h2, .hlm-original-afterword h2 { margin: 9px 0 0; color: #173f38; font-family: var(--serif); font-size: clamp(32px,4vw,48px); line-height: 1.28; font-weight: 500; }
.hlm-original-intro-grid > div:last-child p { margin: 0 0 1.2em; color: #485650; font-family: var(--serif); font-size: 19px; line-height: 1.95; }
.hlm-original-groups { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 54px 58px; }
.hlm-original-group { min-width: 0; }
.hlm-original-group-heading { display: flex; gap: 15px; align-items: baseline; padding-bottom: 15px; border-bottom: 2px solid #294f45; }
.hlm-original-group-heading > span { color: #aa8660; font-family: var(--serif); font-size: 24px; }
.hlm-original-group-heading h3 { margin: 0; color: #25483f; font-family: var(--serif); font-size: 23px; font-weight: 500; }
.hlm-original-group ol { margin: 0; padding: 0; list-style: none; }
.hlm-original-group li { border-bottom: 1px solid #d5c9b7; }
.hlm-original-group li a { display: grid; grid-template-columns: 74px minmax(0,1fr); gap: 15px; padding: 15px 2px; color: inherit; }
.hlm-original-group li a:hover strong { color: #8b3a31; }
.hlm-original-group li span { color: #8f745d; font-size: 12px; line-height: 1.7; }
.hlm-original-group li strong { color: #2d4039; font-family: var(--serif); font-size: 16px; line-height: 1.65; font-weight: 500; }
.hlm-original-afterword { background: #e4ebe5; }
.hlm-original-afterword .narrow-wide { display: grid; grid-template-columns: minmax(240px,.75fr) minmax(0,1.25fr); gap: clamp(42px,8vw,108px); }
.hlm-original-afterword p { color: #53615b; line-height: 1.85; }
.hlm-original-start-links { border-top: 1px solid rgba(36,76,65,.28); }
.hlm-original-start-links a { display: grid; grid-template-columns: 120px minmax(0,1fr); gap: 22px; padding: 20px 0; border-bottom: 1px solid rgba(36,76,65,.28); color: inherit; }
.hlm-original-start-links span { color: #8b3a31; font-size: 12px; }
.hlm-original-start-links strong { color: #244b41; font-family: var(--serif); font-size: 19px; font-weight: 500; }
.hlm-original-source { background: #f3ebdf; }
.hlm-original-source .narrow-wide, .hlm-original-source .hlm-reader-shell { display: flex; justify-content: space-between; gap: 32px; align-items: start; }
.hlm-original-source p { max-width: 790px; margin: 0; color: #5b625e; font-size: 13px; line-height: 1.8; }

.hlm-reader-shell { width: min(100% - 36px,820px); margin-inline: auto; }
.hlm-original-reader { background: #fffdf8; }
.hlm-original-chapter-header { padding: 62px 0 48px; border-bottom: 1px solid #d5c9b7; background: linear-gradient(145deg,#f3eadc 0%,#fffdf8 64%,#e4ece7 100%); }
.hlm-original-chapter-header h1 { margin: 18px 0 24px; color: #173f38; font-family: var(--serif); font-size: clamp(36px,5.2vw,58px); line-height: 1.3; font-weight: 500; letter-spacing: -.015em; text-align: center; text-wrap: balance; }
.hlm-original-chapter-header .hlm-kicker { text-align: center; }
.hlm-chapter-tools { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px 24px; color: #7a776f; font-size: 12px; }
.hlm-chapter-tools a { color: #8b3a31; }
.hlm-chapter-navigation { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 12px; padding: 28px 0; }
.hlm-chapter-navigation a { min-height: 94px; padding: 18px 20px; border: 1px solid #d2c6b4; background: #fbf5e9; color: inherit; }
.hlm-chapter-navigation a.next { text-align: right; }
.hlm-chapter-navigation span, .hlm-chapter-navigation strong { display: block; }
.hlm-chapter-navigation span { color: #8b3a31; font-size: 12px; }
.hlm-chapter-navigation strong { margin-top: 7px; color: #30443d; font-family: var(--serif); font-size: 15px; line-height: 1.55; font-weight: 500; }
.hlm-version-divider { margin-top: 14px; margin-bottom: 22px; padding: 20px 24px; border-left: 3px solid #9b5043; background: #f3e8da; }
.hlm-version-divider strong { color: #813e35; }
.hlm-version-divider p { margin: 5px 0 0; color: #5f625f; line-height: 1.75; }
.hlm-original-text { padding-top: 36px; padding-bottom: 54px; }
.hlm-original-text > p { margin: 0 0 1.25em; color: #252d29; font-family: var(--serif); font-size: 20px; line-height: 2.05; text-align: justify; text-indent: 2em; overflow-wrap: anywhere; scroll-margin-top: 90px; }
.hlm-original-text > p:first-child::first-letter { color: #76352f; font-size: 1.75em; }
.hlm-original-poem { width: fit-content; max-width: 86%; margin: 30px auto; padding: 22px 36px; border-top: 1px solid #baa985; border-bottom: 1px solid #baa985; scroll-margin-top: 90px; }
.hlm-original-poem p { margin: .35em 0; color: #4f3b34; font-family: var(--serif); font-size: 18px; line-height: 1.8; text-align: center; }
.hlm-reader-bottom { padding-bottom: 44px; border-top: 1px solid #d5c9b7; }
.hlm-chapter-related-grid { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 12px; }
.hlm-chapter-related-grid a { min-height: 150px; padding: 22px; border: 1px solid #d0c4b2; background: #fffaf1; color: inherit; }
.hlm-chapter-related-grid span { color: #8b3a31; font-size: 12px; }
.hlm-chapter-related-grid strong { display: block; margin-top: 13px; color: #24483f; font-family: var(--serif); font-size: 20px; line-height: 1.45; font-weight: 500; }
.hlm-chapter-related-grid p { margin: 9px 0 0; color: #6a716d; font-size: 13px; }
.hlm-chapter-source { padding: 36px 0; }
.hlm-original-result-cards a { position: relative; }
.hlm-original-result-cards mark { padding: 0 .08em; background: #f2ddb1; color: inherit; }

@media (max-width: 900px) {
    .hlm-original-groups, .hlm-original-intro-grid, .hlm-original-afterword .narrow-wide { grid-template-columns: 1fr; }
    .hlm-chapter-related-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
}

@media (max-width: 700px) {
    .hlm-original-hero { padding: 58px 0 50px; }
    .hlm-original-hero h1 { font-size: 45px; }
    .hlm-original-hero .hlm-lead { font-size: 18px; }
    .hlm-original-group li a { grid-template-columns: 66px minmax(0,1fr); }
    .hlm-original-chapter-header { padding: 46px 0 36px; }
    .hlm-original-chapter-header h1 { font-size: 34px; text-align: left; }
    .hlm-original-chapter-header .hlm-kicker { text-align: left; }
    .hlm-chapter-tools { justify-content: flex-start; }
    .hlm-chapter-navigation, .hlm-chapter-related-grid { grid-template-columns: 1fr; }
    .hlm-chapter-navigation a.next { text-align: left; }
    .hlm-original-text { padding-top: 22px; }
    .hlm-original-text > p { font-size: 18px; line-height: 2; }
    .hlm-original-poem { max-width: 100%; padding: 18px 10px; }
    .hlm-original-poem p { font-size: 17px; }
    .hlm-original-source .narrow-wide, .hlm-original-source .hlm-reader-shell { flex-direction: column; }
    .hlm-original-start-links a { grid-template-columns: 1fr; gap: 5px; }
}
