/* =========================================================
   世界杯官方网站 - 全球运动文化传播平台
   Theme: Classic Sports Magazine (深蓝 + 金 + 米白)
   ========================================================= */
* { box-sizing: border-box; margin: 0; padding: 0; }
:root {
    --ink: #0d1b3d;
    --ink-2: #1a2a55;
    --gold: #c8a24b;
    --gold-soft: #e7d29a;
    --paper: #f6f1e7;
    --paper-2: #ece4d2;
    --line: #d8cdb4;
    --red: #a72a2a;
    --text: #1c2238;
    --muted: #6a6a78;
}
html, body { background: var(--paper); color: var(--text); }
body {
    font-family: "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "Source Han Sans CN", system-ui, sans-serif;
    line-height: 1.75;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
}
a { color: var(--ink); text-decoration: none; transition: color .2s; }
a:hover { color: var(--red); }
img { max-width: 100%; display: block; }
.shell { max-width: 1180px; margin: 0 auto; padding: 0 22px; }
.serif { font-family: "Georgia", "Times New Roman", "Songti SC", "STSong", serif; }

/* ---------- Top strip ---------- */
.strip {
    background: var(--ink);
    color: var(--gold-soft);
    font-size: 13px;
    padding: 8px 0;
    letter-spacing: .04em;
}
.strip .shell { display: flex; justify-content: space-between; align-items: center; }
.strip .dot { display: inline-block; width: 7px; height: 7px; background: var(--gold); border-radius: 50%; margin-right: 8px; }
.strip .mute { color: #b0b0c0; }
@media (max-width: 720px){ .strip .mute { display: none; } }

/* ---------- Header / Masthead ---------- */
header.masthead {
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    position: sticky;
    top: 0;
    z-index: 50;
}
.masthead-top {
    padding: 22px 0 14px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
}
.brand {
    display: flex;
    align-items: center;
    gap: 14px;
}
.brand-emblem {
    width: 56px; height: 56px;
    border: 2px solid var(--ink);
    background: var(--ink);
    color: var(--gold);
    display: flex; align-items: center; justify-content: center;
    font-family: Georgia, serif;
    font-weight: 700;
    font-size: 22px;
    letter-spacing: .04em;
    position: relative;
}
.brand-emblem::after{
    content: "";
    position: absolute;
    inset: 4px;
    border: 1px solid var(--gold);
}
.brand-name {
    line-height: 1.2;
}
.brand-name strong {
    font-family: Georgia, "Songti SC", serif;
    font-size: 22px;
    color: var(--ink);
    letter-spacing: .03em;
}
.brand-name span {
    display: block;
    font-size: 12px;
    color: var(--muted);
    letter-spacing: .3em;
    margin-top: 4px;
}
.head-meta { text-align: right; font-size: 13px; color: var(--muted); }
.head-meta strong { color: var(--ink); display: block; font-family: Georgia, serif; font-size: 15px; letter-spacing: .08em; }
@media (max-width: 720px){ .head-meta { display: none; } }

nav.primary {
    border-top: 2px solid var(--ink);
    border-bottom: 1px solid var(--ink);
}
nav.primary ul {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}
nav.primary li { }
nav.primary a {
    display: block;
    padding: 14px 22px;
    font-size: 14px;
    letter-spacing: .18em;
    color: var(--ink);
    font-weight: 600;
    border-right: 1px solid var(--line);
    text-transform: uppercase;
}
nav.primary li:first-child a { border-left: 1px solid var(--line); }
nav.primary a:hover, nav.primary a.on { background: var(--ink); color: var(--gold); }
.nav-toggle {
    display: none;
    background: transparent;
    border: 1px solid var(--ink);
    color: var(--ink);
    padding: 6px 12px;
    font-size: 18px;
    cursor: pointer;
    border-radius: 2px;
}
@media (max-width: 880px){
    nav.primary ul { display: none; flex-direction: column; }
    nav.primary ul.open { display: flex; }
    nav.primary a { border-right: none; border-bottom: 1px solid var(--line); padding: 12px 22px; }
    nav.primary li:first-child a { border-left: none; }
    .nav-toggle { display: inline-block; }
}

/* ---------- Hero ---------- */
.hero {
    background: var(--ink);
    color: #f3ead2;
    position: relative;
    overflow: hidden;
}
.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 20%, rgba(200,162,75,.18), transparent 40%),
        radial-gradient(circle at 80% 70%, rgba(167,42,42,.18), transparent 45%);
    pointer-events: none;
}
.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 44px;
    padding: 70px 0 80px;
    align-items: center;
    position: relative;
}
.hero .kicker {
    font-size: 12px;
    letter-spacing: .42em;
    color: var(--gold);
    margin-bottom: 18px;
    display: inline-block;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(200,162,75,.4);
}
.hero h1 {
    font-family: Georgia, "Songti SC", serif;
    font-weight: 700;
    font-size: clamp(28px, 4.4vw, 50px);
    line-height: 1.18;
    color: #fff7e2;
    margin-bottom: 22px;
    letter-spacing: .02em;
}
.hero h1 em {
    color: var(--gold);
    font-style: italic;
    font-weight: 700;
}
.hero p.lead {
    color: #d8cfb6;
    font-size: 17px;
    line-height: 1.85;
    margin-bottom: 28px;
    max-width: 560px;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.btn {
    display: inline-block;
    padding: 13px 26px;
    font-size: 13px;
    letter-spacing: .22em;
    border-radius: 2px;
    border: 1px solid transparent;
    font-weight: 600;
    cursor: pointer;
    text-transform: uppercase;
}
.btn-gold {
    background: var(--gold);
    color: var(--ink);
    border-color: var(--gold);
}
.btn-gold:hover { background: var(--gold-soft); color: var(--ink); }
.btn-ghost {
    background: transparent;
    color: var(--gold-soft);
    border-color: var(--gold-soft);
}
.btn-ghost:hover { background: rgba(200,162,75,.12); color: var(--gold); }

.hero-figure {
    position: relative;
    border: 1px solid rgba(200,162,75,.5);
    padding: 14px;
    background: rgba(13,27,61,.65);
}
.hero-figure img {
    width: 100%;
    height: 380px;
    object-fit: cover;
    filter: sepia(.1) contrast(1.05);
}
.hero-figure .frame-cap {
    position: absolute;
    left: 14px;
    bottom: 14px;
    right: 14px;
    background: rgba(13,27,61,.86);
    border-top: 2px solid var(--gold);
    padding: 14px 18px;
    color: #f0e6cb;
}
.hero-figure .frame-cap small {
    letter-spacing: .3em;
    color: var(--gold);
    font-size: 11px;
}
.hero-figure .frame-cap h3 {
    font-family: Georgia, serif;
    font-size: 17px;
    margin-top: 4px;
    color: #fff;
}
@media (max-width: 880px){
    .hero-grid { grid-template-columns: 1fr; gap: 26px; padding: 50px 0 56px; }
    .hero-figure img { height: 260px; }
}

/* ---------- Section frame ---------- */
section.block { padding: 70px 0; }
section.block.paper-2 { background: var(--paper-2); }
section.block.ink { background: var(--ink); color: #f3ead2; }
.section-title {
    text-align: center;
    margin-bottom: 44px;
}
.section-title small {
    display: inline-block;
    font-size: 12px;
    letter-spacing: .42em;
    color: var(--gold);
    padding-bottom: 8px;
    border-bottom: 1px solid var(--gold);
    margin-bottom: 16px;
}
.section-title h2 {
    font-family: Georgia, "Songti SC", serif;
    font-size: clamp(24px, 3vw, 34px);
    color: var(--ink);
    letter-spacing: .04em;
}
section.block.ink .section-title h2 { color: #fff7e2; }
.section-title p {
    color: var(--muted);
    margin-top: 12px;
    font-size: 15px;
}
section.block.ink .section-title p { color: #c8c0a8; }

/* ---------- Pillars (3 columns) ---------- */
.pillars {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}
.pillar {
    background: #fffaf0;
    border: 1px solid var(--line);
    padding: 32px 26px;
    position: relative;
    transition: transform .25s, box-shadow .25s;
}
.pillar:hover { transform: translateY(-4px); box-shadow: 0 14px 30px rgba(13,27,61,.08); }
.pillar .num {
    font-family: Georgia, serif;
    font-style: italic;
    color: var(--gold);
    font-size: 38px;
    line-height: 1;
    margin-bottom: 14px;
}
.pillar h3 {
    font-family: Georgia, "Songti SC", serif;
    font-size: 19px;
    color: var(--ink);
    margin-bottom: 12px;
}
.pillar p { color: var(--muted); font-size: 14.5px; line-height: 1.85; }
@media (max-width: 880px){ .pillars { grid-template-columns: 1fr; } }

/* ---------- Feature split ---------- */
.feature {
    display: grid;
    grid-template-columns: 1fr 1.05fr;
    gap: 50px;
    align-items: center;
}
.feature-pic {
    position: relative;
    border: 1px solid var(--line);
    padding: 12px;
    background: #fff;
}
.feature-pic img {
    width: 100%;
    height: 420px;
    object-fit: cover;
}
.feature-pic .badge {
    position: absolute;
    top: -14px;
    left: 26px;
    background: var(--gold);
    color: var(--ink);
    font-family: Georgia, serif;
    font-style: italic;
    padding: 6px 16px;
    letter-spacing: .12em;
    font-size: 13px;
}
.feature-text h2 {
    font-family: Georgia, "Songti SC", serif;
    font-size: clamp(22px, 2.6vw, 30px);
    color: var(--ink);
    line-height: 1.3;
    margin-bottom: 18px;
}
.feature-text h2 em { color: var(--red); font-style: italic; }
.feature-text p {
    color: #3a3a48;
    margin-bottom: 14px;
    font-size: 15.5px;
}
.feature-text .quote {
    border-left: 3px solid var(--gold);
    padding: 10px 16px;
    margin: 18px 0;
    color: var(--ink);
    font-family: Georgia, "Songti SC", serif;
    font-style: italic;
    background: #fffaf0;
    font-size: 16px;
}
@media (max-width: 880px){
    .feature { grid-template-columns: 1fr; gap: 30px; }
    .feature-pic img { height: 280px; }
}

/* ---------- Article cards ---------- */
.cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}
.card {
    background: #fffaf0;
    border: 1px solid var(--line);
    display: flex;
    flex-direction: column;
    transition: transform .25s, box-shadow .25s;
}
.card:hover { transform: translateY(-4px); box-shadow: 0 14px 30px rgba(13,27,61,.08); }
.card-img {
    aspect-ratio: 4/3;
    overflow: hidden;
    border-bottom: 1px solid var(--line);
}
.card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.card:hover .card-img img { transform: scale(1.04); }
.card-body { padding: 22px 22px 26px; flex: 1; display: flex; flex-direction: column; }
.card-tag {
    font-size: 11px;
    letter-spacing: .35em;
    color: var(--gold);
    margin-bottom: 10px;
    display: inline-block;
    text-transform: uppercase;
}
.card h3 {
    font-family: Georgia, "Songti SC", serif;
    font-size: 18px;
    color: var(--ink);
    margin-bottom: 10px;
    line-height: 1.4;
}
.card p {
    color: var(--muted);
    font-size: 14.5px;
    flex: 1;
    margin-bottom: 14px;
}
.card .more {
    color: var(--red);
    font-size: 13px;
    letter-spacing: .12em;
    text-transform: uppercase;
    font-weight: 600;
}
@media (max-width: 880px){ .cards { grid-template-columns: 1fr; } }

/* ---------- Stats row ---------- */
.stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    background: var(--ink-2);
    border: 1px solid rgba(200,162,75,.3);
}
.stat {
    padding: 30px 22px;
    text-align: center;
    border-right: 1px solid rgba(200,162,75,.18);
}
.stat:last-child { border-right: none; }
.stat strong {
    display: block;
    font-family: Georgia, serif;
    font-size: 34px;
    color: var(--gold);
    margin-bottom: 6px;
    letter-spacing: .04em;
}
.stat span { color: #c8c0a8; font-size: 13px; letter-spacing: .18em; }
@media (max-width: 720px){
    .stats { grid-template-columns: repeat(2, 1fr); }
    .stat { border-right: 1px solid rgba(200,162,75,.18); border-bottom: 1px solid rgba(200,162,75,.18); }
    .stat:nth-child(even){ border-right: none; }
    .stat:nth-last-child(-n+2){ border-bottom: none; }
}

/* ---------- List page header ---------- */
.page-head {
    background: var(--ink);
    color: #fff7e2;
    padding: 60px 0 56px;
    text-align: center;
    position: relative;
}
.page-head small {
    color: var(--gold);
    letter-spacing: .42em;
    font-size: 12px;
}
.page-head h1 {
    font-family: Georgia, "Songti SC", serif;
    font-size: clamp(26px, 3.6vw, 40px);
    margin-top: 16px;
    color: #fff7e2;
}
.page-head p {
    max-width: 680px;
    margin: 16px auto 0;
    color: #cfc6ad;
    font-size: 15.5px;
    line-height: 1.85;
}
.crumb {
    background: var(--paper-2);
    border-bottom: 1px solid var(--line);
    padding: 12px 0;
    color: var(--muted);
    font-size: 13px;
}
.crumb a { color: var(--ink); }

/* ---------- Article (detail) ---------- */
.article-wrap {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 300px;
    gap: 50px;
    padding: 56px 0 70px;
}
article.post .meta {
    color: var(--muted);
    font-size: 13px;
    letter-spacing: .14em;
    margin-bottom: 14px;
    text-transform: uppercase;
}
article.post h1 {
    font-family: Georgia, "Songti SC", serif;
    font-size: clamp(26px, 3.2vw, 36px);
    color: var(--ink);
    line-height: 1.3;
    margin-bottom: 18px;
}
article.post .lead {
    font-size: 17px;
    color: #2c3354;
    border-left: 3px solid var(--gold);
    padding-left: 18px;
    margin: 18px 0 28px;
    line-height: 1.85;
}
article.post .hero-pic {
    border: 1px solid var(--line);
    padding: 10px;
    margin: 26px 0;
    background: #fff;
}
article.post .hero-pic img { width: 100%; max-height: 420px; object-fit: cover; }
article.post h2 {
    font-family: Georgia, "Songti SC", serif;
    font-size: 22px;
    color: var(--ink);
    margin: 30px 0 14px;
    border-bottom: 1px solid var(--line);
    padding-bottom: 8px;
}
article.post h3 {
    font-family: Georgia, "Songti SC", serif;
    font-size: 18px;
    color: var(--ink-2);
    margin: 22px 0 10px;
}
article.post p {
    margin-bottom: 15px;
    color: #2c3046;
    font-size: 16px;
    line-height: 1.95;
}
article.post ul, article.post ol { margin: 10px 0 18px 22px; }
article.post li { margin-bottom: 6px; color: #2c3046; line-height: 1.85; }
article.post blockquote {
    background: #fffaf0;
    border-left: 3px solid var(--red);
    padding: 14px 18px;
    margin: 18px 0;
    font-family: Georgia, "Songti SC", serif;
    font-style: italic;
    color: var(--ink);
}
.tag-row { margin: 26px 0 10px; }
.tag-row a {
    display: inline-block;
    background: var(--paper-2);
    border: 1px solid var(--line);
    padding: 4px 12px;
    margin: 0 6px 6px 0;
    font-size: 12px;
    color: var(--ink);
    letter-spacing: .08em;
}

aside.side .box {
    background: #fffaf0;
    border: 1px solid var(--line);
    padding: 24px 22px;
    margin-bottom: 24px;
}
aside.side h4 {
    font-family: Georgia, "Songti SC", serif;
    font-size: 16px;
    color: var(--ink);
    border-bottom: 2px solid var(--gold);
    padding-bottom: 8px;
    margin-bottom: 14px;
    letter-spacing: .04em;
}
aside.side ul { list-style: none; }
aside.side li { padding: 9px 0; border-bottom: 1px dashed var(--line); font-size: 14px; }
aside.side li:last-child { border-bottom: none; }
aside.side li a { color: var(--ink); }
aside.side li a:hover { color: var(--red); }
aside.side .mini-img {
    border: 1px solid var(--line);
    padding: 6px;
    background: #fff;
    margin-bottom: 14px;
}
aside.side .mini-img img { width: 100%; height: 150px; object-fit: cover; }
@media (max-width: 880px){
    .article-wrap { grid-template-columns: 1fr; gap: 30px; padding: 36px 0 50px; }
}

/* ---------- Contact / Form ---------- */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}
.form-card, .info-card {
    background: #fffaf0;
    border: 1px solid var(--line);
    padding: 32px 28px;
}
.form-card h3, .info-card h3 {
    font-family: Georgia, "Songti SC", serif;
    font-size: 20px;
    color: var(--ink);
    margin-bottom: 18px;
}
.field { margin-bottom: 14px; }
.field label { display: block; font-size: 13px; color: var(--ink); margin-bottom: 6px; letter-spacing: .04em; }
.field input, .field textarea, .field select {
    width: 100%;
    padding: 10px 14px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 2px;
    color: var(--ink);
    font-family: inherit;
    font-size: 14px;
}
.field input:focus, .field textarea:focus, .field select:focus { outline: 2px solid var(--gold); }
.info-card .line { padding: 12px 0; border-bottom: 1px dashed var(--line); }
.info-card .line:last-child { border-bottom: none; }
.info-card .line small { color: var(--muted); letter-spacing: .14em; font-size: 12px; }
.info-card .line strong { display: block; color: var(--ink); margin-top: 4px; font-family: Georgia, serif; font-size: 16px; }
@media (max-width: 880px){ .contact-grid { grid-template-columns: 1fr; } }

/* ---------- Banner CTA ---------- */
.cta-band {
    background: linear-gradient(90deg, var(--ink), var(--ink-2));
    padding: 50px 0;
    color: #f3ead2;
    border-top: 4px solid var(--gold);
    border-bottom: 4px solid var(--gold);
    text-align: center;
}
.cta-band h2 {
    font-family: Georgia, "Songti SC", serif;
    font-size: 26px;
    color: #fff7e2;
    margin-bottom: 12px;
}
.cta-band p { color: #cfc6ad; margin-bottom: 22px; }

/* ---------- Footer ---------- */
footer.site {
    background: #0a1330;
    color: #c8c0a8;
    padding: 60px 0 0;
}
.foot-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
    gap: 36px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(200,162,75,.18);
}
.foot-grid h4 {
    color: var(--gold);
    font-family: Georgia, "Songti SC", serif;
    font-size: 15px;
    margin-bottom: 16px;
    letter-spacing: .12em;
}
.foot-grid p { font-size: 14px; line-height: 1.85; }
.foot-grid ul { list-style: none; }
.foot-grid li { padding: 5px 0; font-size: 14px; }
.foot-grid li a { color: #c8c0a8; }
.foot-grid li a:hover { color: var(--gold); }
.foot-brand {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 18px;
}
.foot-brand .brand-emblem { width: 48px; height: 48px; font-size: 18px; }
.foot-brand strong { color: #fff7e2; font-family: Georgia, serif; font-size: 16px; }
.foot-brand span { color: #8b8a92; font-size: 11px; letter-spacing: .26em; display: block; margin-top: 4px; }
.foot-bottom {
    text-align: center;
    padding: 22px 0 26px;
    font-size: 13px;
    color: #8b8a92;
    letter-spacing: .08em;
}
@media (max-width: 880px){ .foot-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px){ .foot-grid { grid-template-columns: 1fr; } }
