:root {
    --paper: #fbfaf7;
    --ink: #222126;
    --muted: #6f6b68;
    --line: #e5ded7;
    --wine: #8d1f2d;
    --wine-dark: #64121e;
    --poster: #d9a15f;
    --charcoal: #303038;
    --soft: #f3eee8;
    --radius: 24px;
    --shadow: 0 18px 44px rgba(45, 35, 28, .11);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", Arial, sans-serif;
    color: var(--ink);
    background: var(--paper);
    line-height: 1.75;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.top-line { height: 6px; background: linear-gradient(90deg, var(--wine), var(--poster), var(--charcoal)); }
.site-header {
    position: sticky;
    top: 0;
    z-index: 20;
    background: rgba(251, 250, 247, .94);
    border-bottom: 1px solid var(--line);
    backdrop-filter: blur(16px);
}
.header-inner {
    max-width: 1180px;
    margin: 0 auto;
    padding: 18px 22px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}
.brand { display: grid; grid-template-columns: 48px auto; column-gap: 12px; align-items: center; }
.brand-mark {
    grid-row: span 2;
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: var(--wine);
    color: white;
    display: grid;
    place-items: center;
    font-weight: 900;
    font-size: 24px;
    box-shadow: inset 0 0 0 2px rgba(255,255,255,.18);
}
.brand-text { font-size: 24px; font-weight: 900; letter-spacing: .08em; line-height: 1.1; }
.brand-sub { color: var(--muted); font-size: 12px; letter-spacing: .12em; text-transform: uppercase; }
.main-nav { display: flex; align-items: center; gap: 6px; flex-wrap: wrap; }
.main-nav a {
    padding: 9px 13px;
    border-radius: 999px;
    color: #3f3b3a;
    font-weight: 700;
    font-size: 15px;
}
.main-nav a:hover, .main-nav a.active { background: var(--wine); color: #fff; }
.nav-toggle { display: none; width: 44px; height: 40px; border: 1px solid var(--line); background: #fff; border-radius: 12px; }
.nav-toggle span { display: block; height: 2px; width: 20px; background: var(--ink); margin: 5px auto; }
main { max-width: 1180px; margin: 0 auto; padding: 34px 22px 78px; }
.hero {
    display: grid;
    grid-template-columns: minmax(0, 1.12fr) minmax(300px, .88fr);
    gap: 28px;
    align-items: stretch;
    margin: 12px 0 34px;
}
.hero-primary, .hero-side, .page-hero, .feature-panel, .quote-box, .contact-panel, .ranking-board {
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #fff;
    box-shadow: var(--shadow);
    overflow: hidden;
}
.hero-primary { display: grid; grid-template-columns: 1fr .92fr; min-height: 480px; }
.hero-copy { padding: 46px; display: flex; flex-direction: column; justify-content: center; }
.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--wine);
    font-weight: 900;
    letter-spacing: .12em;
    font-size: 13px;
    text-transform: uppercase;
}
.eyebrow::before { content: ""; width: 34px; height: 2px; background: var(--wine); }
h1 { font-size: clamp(34px, 5vw, 64px); line-height: 1.08; margin: 18px 0; letter-spacing: -.04em; }
h2 { font-size: clamp(26px, 3vw, 38px); line-height: 1.18; margin: 0; letter-spacing: -.03em; }
h3 { line-height: 1.35; margin: 12px 0 8px; }
p { color: var(--muted); margin: 0; }
.hero-copy p { font-size: 18px; }
.hero-cta { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 30px; }
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 10px 18px;
    border-radius: 999px;
    border: 1px solid var(--wine);
    color: var(--wine);
    font-weight: 800;
}
.btn.primary { background: var(--wine); color: #fff; }
.hero-poster { background: var(--soft); display: grid; place-items: center; padding: 24px; }
.hero-side { padding: 26px; display: grid; gap: 20px; }
.side-title { display: flex; justify-content: space-between; align-items: baseline; gap: 16px; border-bottom: 1px solid var(--line); padding-bottom: 14px; }
.side-list { display: grid; gap: 16px; }
.side-item { display: grid; grid-template-columns: 68px 1fr; gap: 14px; align-items: center; }
.side-number { width: 68px; height: 68px; border-radius: 18px; background: var(--charcoal); color: #fff; display: grid; place-items: center; font-size: 24px; font-weight: 900; }
.side-item:nth-child(2) .side-number { background: var(--wine); }
.side-item:nth-child(3) .side-number { background: var(--poster); color: var(--ink); }
.side-item h3 { margin: 0 0 4px; font-size: 17px; }
.section { margin-top: 46px; }
.section-head { display: flex; justify-content: space-between; gap: 20px; align-items: end; padding-bottom: 18px; border-bottom: 2px solid var(--ink); margin-bottom: 22px; }
.section-head p { max-width: 560px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.article-card { background: #fff; border: 1px solid var(--line); border-radius: 22px; overflow: hidden; box-shadow: 0 10px 26px rgba(31, 25, 20, .07); }
.card-image { display: block; background: var(--soft); }
.card-image img { width: 100%; aspect-ratio: 16 / 10; object-fit: cover; }
.card-body { padding: 20px; }
.pill { display: inline-flex; align-items: center; border: 1px solid rgba(141,31,45,.22); color: var(--wine); background: #fff7f5; border-radius: 999px; padding: 3px 10px; font-size: 12px; font-weight: 800; }
.article-card h3 a:hover { color: var(--wine); }
.meta-row { display: flex; justify-content: space-between; gap: 14px; color: #8a8580; font-size: 13px; margin-top: 18px; border-top: 1px solid var(--line); padding-top: 12px; }
.feature-panel { display: grid; grid-template-columns: .86fr 1.14fr; gap: 0; }
.feature-panel img { width: 100%; height: 100%; object-fit: cover; }
.feature-panel .panel-text { padding: 34px; display: grid; gap: 18px; align-content: center; }
.tag-cloud { display: flex; gap: 10px; flex-wrap: wrap; }
.tag-cloud span { border: 1px solid var(--line); border-radius: 999px; padding: 7px 12px; background: var(--paper); font-weight: 700; color: #544e4b; }
.magazine-strip { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.strip-card { border: 1px solid var(--line); background: #fff; border-radius: 18px; padding: 18px; min-height: 154px; display: grid; align-content: space-between; }
.strip-card strong { font-size: 36px; line-height: 1; color: var(--wine); }
.strip-card h3 { margin: 10px 0 6px; }
.page-hero { display: grid; grid-template-columns: 1.05fr .95fr; align-items: center; margin-bottom: 34px; }
.page-hero-text { padding: 44px; }
.page-hero-text h1 { font-size: clamp(34px, 4.6vw, 58px); }
.hero-note { margin-top: 20px; padding: 14px 16px; border-left: 4px solid var(--wine); background: var(--soft); color: #4d4642; border-radius: 0 14px 14px 0; }
.page-hero-art { height: 100%; background: var(--soft); padding: 24px; display: grid; place-items: center; }
.long-copy { background: #fff; border: 1px solid var(--line); border-radius: 22px; padding: 28px; display: grid; gap: 18px; }
.long-copy h2, .long-copy h3 { margin-top: 0; }
.long-copy ul, .long-copy ol { margin: 0; padding-left: 1.2em; color: var(--muted); }
.long-copy li { margin: 8px 0; }
.quote-box { padding: 30px; background: linear-gradient(135deg, #fff, #f7ede8); }
.quote-box blockquote { margin: 0; font-size: clamp(22px, 3vw, 34px); line-height: 1.35; font-weight: 900; color: var(--wine-dark); }
.ranking-board { padding: 24px; }
.rank-row { display: grid; grid-template-columns: 54px 1fr auto; gap: 18px; align-items: center; padding: 18px 0; border-bottom: 1px solid var(--line); }
.rank-row:last-child { border-bottom: none; }
.rank-no { width: 44px; height: 44px; border-radius: 50%; background: var(--ink); color: #fff; display: grid; place-items: center; font-weight: 900; }
.rank-row:nth-child(1) .rank-no { background: var(--wine); }
.rank-row:nth-child(2) .rank-no { background: var(--poster); color: var(--ink); }
.score { font-weight: 900; color: var(--wine); }
.video-frame { position: relative; overflow: hidden; border-radius: 22px; background: var(--charcoal); min-height: 240px; display: grid; place-items: center; color: #fff; }
.video-frame img { opacity: .58; width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; }
.play { position: relative; width: 72px; height: 72px; border-radius: 50%; background: rgba(255,255,255,.92); display: grid; place-items: center; color: var(--wine); font-size: 30px; box-shadow: var(--shadow); }
.contact-panel { padding: 30px; display: grid; gap: 22px; }
.form-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.form-grid label { display: grid; gap: 6px; color: #5d5652; font-weight: 700; }
.form-grid input, .form-grid textarea, .form-grid select { width: 100%; border: 1px solid var(--line); border-radius: 14px; padding: 12px 14px; font: inherit; background: var(--paper); color: var(--ink); }
.form-grid textarea { min-height: 120px; grid-column: 1 / -1; }
.form-grid .full { grid-column: 1 / -1; }
.site-footer { background: #1f1f25; color: #f7f1ec; padding: 46px 22px 24px; }
.footer-grid { max-width: 1180px; margin: 0 auto; display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 34px; }
.footer-logo { font-size: 26px; font-weight: 900; letter-spacing: .12em; margin-bottom: 10px; }
.site-footer p { color: #cfc8c2; }
.site-footer h3 { margin-top: 0; }
.site-footer a { display: block; color: #e7ddd5; margin: 8px 0; }
.footer-bottom { max-width: 1180px; margin: 28px auto 0; border-top: 1px solid rgba(255,255,255,.14); padding-top: 18px; color: #aaa29c; font-size: 13px; }
@media (max-width: 960px) {
    .hero, .hero-primary, .page-hero, .feature-panel { grid-template-columns: 1fr; }
    .hero-primary { min-height: auto; }
    .grid-3, .magazine-strip { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 760px) {
    .header-inner { padding: 14px 16px; }
    .brand-sub { display: none; }
    .nav-toggle { display: block; }
    .main-nav { display: none; position: absolute; left: 16px; right: 16px; top: 76px; background: #fff; border: 1px solid var(--line); border-radius: 18px; padding: 12px; box-shadow: var(--shadow); }
    .main-nav.open { display: grid; grid-template-columns: repeat(2, 1fr); }
    main { padding: 22px 16px 56px; }
    .hero-copy, .page-hero-text, .feature-panel .panel-text { padding: 28px; }
    .grid-2, .grid-3, .magazine-strip, .footer-grid, .form-grid { grid-template-columns: 1fr; }
    .form-grid textarea, .form-grid .full { grid-column: auto; }
    .section-head { display: block; }
    .rank-row { grid-template-columns: 44px 1fr; }
    .score { grid-column: 2; }
}
