:root {
    --paper: #fffdf9;
    --ink: #242126;
    --muted: #6d6871;
    --line: #e8dfd8;
    --wine: #8d2636;
    --wine-dark: #5f1723;
    --sand: #f4eadf;
    --poster: #d6a55c;
    --smoke: #f7f4ef;
    --shadow: 0 22px 60px rgba(57, 43, 35, .12);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    color: var(--ink);
    background: var(--paper);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
    line-height: 1.75;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 74px;
    padding: 0 5vw;
    border-bottom: 1px solid rgba(36, 33, 38, .08);
    background: rgba(255, 253, 249, .92);
    backdrop-filter: blur(14px);
}
.brand { display: flex; align-items: center; gap: 12px; }
.brand-mark {
    display: grid;
    place-items: center;
    width: 48px;
    height: 48px;
    color: #fff;
    background: var(--wine);
    border-radius: 50%;
    font-weight: 800;
    letter-spacing: -.03em;
    box-shadow: 0 10px 24px rgba(141, 38, 54, .24);
}
.brand-copy { font-weight: 700; letter-spacing: .12em; color: var(--wine-dark); }
.site-nav { display: flex; gap: 24px; align-items: center; font-size: 15px; color: #423d43; }
.site-nav a { position: relative; padding: 8px 0; }
.site-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 4px;
    width: 0;
    height: 2px;
    background: var(--wine);
    transition: width .2s ease;
}
.site-nav a:hover::after { width: 100%; }
.nav-toggle { display: none; border: 0; background: var(--wine); color: #fff; width: 42px; height: 42px; border-radius: 12px; font-size: 22px; }
main { min-height: 70vh; }
.hero {
    padding: 62px 5vw 44px;
    background: radial-gradient(circle at 82% 12%, rgba(214,165,92,.34), transparent 28%), linear-gradient(120deg, #fffdf9, #f6eee7);
}
.hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.12fr) minmax(320px, .88fr);
    gap: 42px;
    max-width: 1180px;
    margin: 0 auto;
    align-items: center;
}
.eyebrow { color: var(--wine); font-weight: 800; letter-spacing: .18em; font-size: 13px; text-transform: uppercase; }
h1, h2, h3 { line-height: 1.2; margin: 0; }
h1 { font-size: clamp(40px, 7vw, 78px); letter-spacing: -.06em; }
.hero p { color: #56505a; font-size: 18px; max-width: 720px; }
.hero-actions, .button-row { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 26px; }
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0 20px;
    border-radius: 999px;
    border: 1px solid var(--wine);
    color: var(--wine-dark);
    font-weight: 700;
    background: #fff;
}
.btn.primary { background: var(--wine); color: #fff; box-shadow: 0 14px 30px rgba(141, 38, 54, .18); }
.hero-card {
    border: 1px solid var(--line);
    border-radius: 30px;
    padding: 18px;
    background: rgba(255,255,255,.72);
    box-shadow: var(--shadow);
}
.hero-card img { border-radius: 22px; border: 1px solid var(--line); background: #fff; }
.caption-strip { display: flex; justify-content: space-between; gap: 18px; margin-top: 16px; color: var(--muted); font-size: 14px; }
.section { max-width: 1180px; margin: 0 auto; padding: 64px 5vw; }
.section + .section { border-top: 1px solid var(--line); }
.section-head {
    display: flex;
    justify-content: space-between;
    gap: 24px;
    align-items: end;
    margin-bottom: 30px;
}
.section-head p { max-width: 560px; margin: 8px 0 0; color: var(--muted); }
.section-title { font-size: clamp(28px, 4vw, 46px); letter-spacing: -.04em; }
.kicker { color: var(--wine); font-weight: 800; font-size: 13px; letter-spacing: .18em; }
.magazine-grid { display: grid; grid-template-columns: 1.2fr .8fr; gap: 24px; }
.feature-article, .article-card, .mini-card, .quote-card, .contact-card, .policy-card {
    border: 1px solid var(--line);
    background: #fff;
    border-radius: 26px;
    box-shadow: 0 16px 40px rgba(57,43,35,.06);
    overflow: hidden;
}
.feature-article { display: grid; grid-template-columns: minmax(260px,.9fr) minmax(0,1.1fr); }
.feature-article img { height: 100%; object-fit: cover; background: var(--sand); }
.article-body { padding: 26px; }
.meta { display: flex; gap: 10px; flex-wrap: wrap; color: var(--muted); font-size: 13px; margin: 0 0 12px; }
.tag { display: inline-flex; align-items: center; min-height: 28px; padding: 0 10px; border-radius: 999px; background: var(--sand); color: var(--wine-dark); font-weight: 700; font-size: 12px; }
.article-body h3, .article-card h3, .mini-card h3 { font-size: 23px; letter-spacing: -.03em; margin-bottom: 12px; }
.article-body p, .article-card p, .mini-card p, .quote-card p, .policy-card p { color: var(--muted); margin: 0; }
.article-list { display: grid; gap: 18px; }
.mini-card { padding: 22px; }
.card-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 22px; }
.article-card img { width: 100%; aspect-ratio: 16/11; object-fit: cover; border-bottom: 1px solid var(--line); background: var(--smoke); }
.article-card .article-body { padding: 22px; }
.split { display: grid; grid-template-columns: minmax(0,.95fr) minmax(0,1.05fr); gap: 26px; align-items: center; }
.poster-frame { border-radius: 32px; overflow: hidden; border: 1px solid var(--line); box-shadow: var(--shadow); background: #fff; }
.topic-list { display: grid; gap: 14px; }
.topic-item { display: grid; grid-template-columns: 88px 1fr; gap: 18px; padding: 18px; border: 1px solid var(--line); border-radius: 20px; background: #fff; }
.topic-rank { font-size: 34px; line-height: 1; font-weight: 900; color: var(--wine); letter-spacing: -.06em; }
.topic-item h3 { margin-bottom: 6px; font-size: 20px; }
.topic-item p { margin: 0; color: var(--muted); }
.rank-table { width: 100%; border-collapse: collapse; overflow: hidden; border-radius: 24px; background: #fff; box-shadow: 0 16px 40px rgba(57,43,35,.06); }
.rank-table th, .rank-table td { padding: 18px; text-align: left; border-bottom: 1px solid var(--line); }
.rank-table th { color: var(--wine-dark); background: var(--sand); font-size: 14px; }
.rank-table tr:last-child td { border-bottom: 0; }
.score { font-weight: 900; color: var(--wine); }
.timeline { display: grid; gap: 18px; }
.timeline-item { position: relative; padding: 22px 22px 22px 62px; border: 1px solid var(--line); border-radius: 24px; background: #fff; }
.timeline-item::before { content: ""; position: absolute; left: 24px; top: 28px; width: 14px; height: 14px; border-radius: 50%; background: var(--wine); box-shadow: 0 0 0 8px rgba(141,38,54,.1); }
.timeline-item h3 { font-size: 21px; margin-bottom: 8px; }
.timeline-item p { color: var(--muted); margin: 0; }
.quote-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 20px; }
.quote-card { padding: 24px; }
.quote-card strong { display: block; margin-bottom: 8px; color: var(--wine-dark); }
.news-strip { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 16px; }
.news-pill { padding: 18px; border-radius: 20px; background: var(--smoke); border: 1px solid var(--line); }
.news-pill strong { display: block; margin-bottom: 6px; color: var(--wine-dark); }
.news-pill p { margin: 0; color: var(--muted); font-size: 14px; }
.page-hero { padding: 58px 5vw; background: linear-gradient(135deg, #fffdf9 0%, #f4eadf 100%); border-bottom: 1px solid var(--line); }
.page-hero-inner { max-width: 1180px; margin: 0 auto; display: grid; gap: 14px; }
.page-hero h1 { font-size: clamp(38px, 6vw, 66px); }
.page-hero p { max-width: 760px; color: var(--muted); margin: 0; font-size: 18px; }
.content-panel { max-width: 900px; margin: 0 auto; padding: 48px 5vw; }
.content-panel h2 { font-size: 34px; margin: 36px 0 12px; }
.content-panel p { color: var(--muted); }
.content-panel ul { padding-left: 22px; color: var(--muted); }
.content-panel li { margin: 10px 0; }
.notice { border-left: 4px solid var(--wine); background: var(--smoke); padding: 18px 20px; border-radius: 16px; color: #514b53; }
.video-card { position: relative; }
.video-card .play-badge { position: absolute; left: 18px; top: 18px; background: rgba(36,33,38,.82); color: #fff; border-radius: 999px; padding: 7px 12px; font-weight: 700; font-size: 12px; }
.contact-grid { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 20px; }
.contact-card { padding: 24px; }
.contact-card h3 { margin-bottom: 10px; }
.dynamic-field { display: inline-flex; padding: 4px 10px; border-radius: 999px; background: var(--sand); color: var(--wine-dark); font-weight: 800; word-break: break-all; }
.subscribe-box { display: grid; grid-template-columns: minmax(0,1fr) auto; gap: 12px; padding: 18px; border-radius: 24px; background: var(--smoke); border: 1px solid var(--line); }
.subscribe-box input { width: 100%; min-height: 48px; border: 1px solid var(--line); border-radius: 999px; padding: 0 18px; font: inherit; background: #fff; }
.subscribe-box button { border: 0; border-radius: 999px; padding: 0 22px; background: var(--wine); color: #fff; font-weight: 800; cursor: pointer; }
.site-footer { padding: 42px 5vw 22px; background: #201d22; color: #fff; }
.footer-grid { max-width: 1180px; margin: 0 auto; display: grid; grid-template-columns: 1.1fr 1fr 1fr; gap: 28px; }
.footer-grid p { color: rgba(255,255,255,.68); margin: 10px 0 0; }
.footer-bottom { max-width: 1180px; margin: 34px auto 0; padding-top: 18px; border-top: 1px solid rgba(255,255,255,.14); display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; color: rgba(255,255,255,.7); }
.footer-bottom a { color: #fff; }
@media (max-width: 940px) {
    .nav-toggle { display: inline-grid; place-items: center; }
    .site-nav { position: fixed; left: 5vw; right: 5vw; top: 84px; display: none; flex-direction: column; align-items: stretch; padding: 18px; border-radius: 22px; background: #fff; box-shadow: var(--shadow); border: 1px solid var(--line); }
    .site-nav.is-open { display: flex; }
    .hero-grid, .magazine-grid, .split, .feature-article { grid-template-columns: 1fr; }
    .card-grid, .news-strip, .contact-grid, .footer-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
}
@media (max-width: 640px) {
    .site-header { min-height: 66px; }
    .brand-copy { display: none; }
    .hero, .section, .page-hero { padding-left: 20px; padding-right: 20px; }
    .section-head { display: block; }
    .card-grid, .news-strip, .quote-grid, .contact-grid, .footer-grid { grid-template-columns: 1fr; }
    .topic-item { grid-template-columns: 1fr; }
    .rank-table { font-size: 14px; }
    .rank-table th, .rank-table td { padding: 12px; }
    .subscribe-box { grid-template-columns: 1fr; }
    h1 { font-size: 42px; }
}
