/* === 时尚编辑 · VOLUME ===
 * 黑白高对比 + 巨字 Bodoni + 杂志封面感
 */

:root {
    --bg: #ffffff;
    --bg-alt: #0a0a0a;
    --ink: #0a0a0a;
    --ink-soft: #6e6e6e;
    --line: #e5e5e5;
    --accent: #d40000;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    font-family: 'Inter', -apple-system, sans-serif;
    background: var(--bg);
    color: var(--ink);
    line-height: 1.55;
    font-weight: 300;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

.kicker {
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    letter-spacing: 0.3em;
    color: var(--ink-soft);
    text-transform: uppercase;
    font-weight: 500;
}

h1, h2, h3 { font-family: 'Bodoni Moda', serif; }

/* === 导航 === */
.nav {
    padding: 24px 40px;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    border-bottom: 1px solid var(--ink);
    font-size: 11px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    font-weight: 500;
}
.nav-meta { color: var(--ink-soft); }
.nav-brand {
    font-family: 'Bodoni Moda', serif;
    font-size: 32px;
    font-weight: 900;
    letter-spacing: 0.05em;
    text-align: center;
}
.nav-links {
    list-style: none;
    display: flex;
    justify-content: flex-end;
    gap: 24px;
}
.nav-links a {
    border-bottom: 1px solid transparent;
    transition: border-color 0.2s;
}
.nav-links a:hover { border-bottom-color: var(--ink); }

/* === Cover === */
.cover {
    position: relative;
    min-height: calc(100vh - 60px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 80px 32px;
    overflow: hidden;
    background: var(--bg);
}
.cover-corner {
    position: absolute;
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    line-height: 1.6;
    font-weight: 500;
}
.cover-corner.top-left { top: 32px; left: 40px; }
.cover-corner.top-right { top: 32px; right: 40px; text-align: right; }
.cover-corner.bottom-left { bottom: 32px; left: 40px; }
.cover-corner.bottom-right { bottom: 32px; right: 40px; text-align: right; }
.cover-title {
    font-size: clamp(80px, 16vw, 220px);
    font-weight: 900;
    line-height: 0.9;
    letter-spacing: -0.02em;
    text-align: center;
    margin: 40px 0 16px;
    z-index: 2;
    mix-blend-mode: difference;
    color: white;
}
.cover-sub {
    font-family: 'Noto Serif SC', serif;
    font-size: 14px;
    color: var(--ink-soft);
    margin-bottom: 48px;
    z-index: 2;
}
.cover-img {
    position: absolute;
    top: 80px;
    bottom: 80px;
    left: 50%;
    transform: translateX(-50%);
    width: 38%;
    z-index: 1;
}
.cover-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(0.2) contrast(1.1);
}

/* === Big Quote === */
.big-quote {
    background: var(--bg-alt);
    color: white;
    padding: 120px 40px;
    text-align: center;
}
.big-quote h2 {
    font-size: clamp(48px, 9vw, 120px);
    font-weight: 900;
    line-height: 1.05;
    letter-spacing: -0.02em;
    margin-bottom: 24px;
}
.big-quote em {
    font-family: 'Bodoni Moda', serif;
    font-style: italic;
    font-weight: 400;
    color: var(--accent);
}
.big-quote p {
    font-size: 13px;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.5);
}

/* === Editorial === */
.editorial { padding: 120px 40px; max-width: 1400px; margin: 0 auto; }
.ed-head { text-align: center; margin-bottom: 80px; }
.ed-head h2 {
    font-size: clamp(48px, 7vw, 96px);
    font-weight: 900;
    letter-spacing: -0.02em;
    margin: 12px 0 16px;
}
.ed-sub { font-family: 'Noto Serif SC', serif; color: var(--ink-soft); }
.ed-main {
    aspect-ratio: 16/9;
    overflow: hidden;
    margin-bottom: 100px;
}
.ed-main img { width: 100%; height: 100%; object-fit: cover; }
.ed-pair {
    display: grid;
    grid-template-columns: 0.7fr 1fr;
    gap: 80px;
    align-items: center;
    margin-bottom: 100px;
}
.ed-pair.reverse { grid-template-columns: 1fr 0.7fr; }
.pair-text h3 {
    font-size: clamp(36px, 5vw, 64px);
    font-weight: 700;
    line-height: 1;
    margin: 12px 0 24px;
}
.pair-text p { font-family: 'Noto Serif SC', serif; font-size: 16px; line-height: 1.9; color: var(--ink); }
.pair-img { aspect-ratio: 4/5; overflow: hidden; }
.pair-img img { width: 100%; height: 100%; object-fit: cover; }

/* === Tearsheet === */
.tearsheet {
    background: var(--bg-alt);
    color: white;
    padding: 120px 40px;
}
.tearsheet .ed-head h2 { color: white; }
.tearsheet .ed-sub { color: rgba(255,255,255,0.6); }
.ts-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1400px;
    margin: 0 auto;
}
.ts-cell {
    position: relative;
    aspect-ratio: 4/5;
    overflow: hidden;
    transition: transform 0.4s ease;
}
.ts-cell.ts-tall { aspect-ratio: 4/6; grid-row: span 1; }
.ts-cell img {
    width: 100%; height: 100%; object-fit: cover;
    filter: grayscale(0.3) contrast(1.1);
    transition: filter 0.4s ease;
}
.ts-cell:hover img { filter: grayscale(0) contrast(1); }
.ts-meta {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 16px;
    display: flex;
    justify-content: space-between;
    font-size: 10px;
    letter-spacing: 0.25em;
    color: white;
    background: linear-gradient(180deg, transparent, rgba(0,0,0,0.7));
}

/* === About === */
.about { padding: 120px 40px; max-width: 1300px; margin: 0 auto; }
.about-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 100px;
}
.about-text h2 {
    font-size: clamp(60px, 9vw, 120px);
    font-weight: 900;
    line-height: 0.9;
    letter-spacing: -0.03em;
    margin: 20px 0 4px;
}
.zh-name {
    font-family: 'Noto Serif SC', serif;
    font-size: 18px;
    color: var(--ink-soft);
    letter-spacing: 0.2em;
    margin-bottom: 32px;
}
.about-text p { font-family: 'Noto Serif SC', serif; font-size: 15px; line-height: 1.95; color: var(--ink); }
.awards {
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid var(--ink);
    font-family: 'Inter', sans-serif !important;
    font-size: 12px !important;
    letter-spacing: 0.15em;
    color: var(--ink-soft);
    text-transform: uppercase;
}
.awards strong { color: var(--ink); margin-right: 8px; }

.contact-block {
    border-left: 1px solid var(--ink);
    padding-left: 40px;
}
.contact-line {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    margin-bottom: 16px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--line);
    display: flex;
    justify-content: space-between;
    gap: 16px;
}
.contact-line strong {
    font-size: 10px;
    letter-spacing: 0.25em;
    color: var(--ink-soft);
    text-transform: uppercase;
    font-weight: 500;
}

/* === Footer === */
.footer {
    background: var(--bg-alt);
    color: white;
    padding: 80px 40px 40px;
    text-align: center;
}
.footer-brand {
    font-family: 'Bodoni Moda', serif;
    font-size: clamp(80px, 16vw, 200px);
    font-weight: 900;
    letter-spacing: 0.02em;
    line-height: 1;
    margin-bottom: 32px;
}
.footer-meta {
    font-size: 10px;
    letter-spacing: 0.25em;
    color: rgba(255,255,255,0.4);
    text-transform: uppercase;
}

/* === 响应式 === */
@media (max-width: 900px) {
    .nav {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 12px;
        padding: 16px 20px;
    }
    .nav-meta { display: none; }
    .nav-links { justify-content: center; flex-wrap: wrap; gap: 16px; }
    .cover { min-height: auto; padding: 60px 20px; }
    .cover-corner { font-size: 9px; }
    .cover-corner.top-left { top: 16px; left: 20px; }
    .cover-corner.top-right { top: 16px; right: 20px; }
    .cover-corner.bottom-left { bottom: 16px; left: 20px; }
    .cover-corner.bottom-right { bottom: 16px; right: 20px; }
    .cover-img { width: 70%; position: relative; top: 0; transform: none; left: auto; height: 400px; margin: 24px 0; }
    .big-quote { padding: 64px 20px; }
    .editorial { padding: 64px 20px; }
    .ed-pair, .ed-pair.reverse {
        grid-template-columns: 1fr;
        gap: 32px;
        margin-bottom: 64px;
    }
    .tearsheet { padding: 64px 20px; }
    .ts-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
    .about { padding: 64px 20px; }
    .about-grid { grid-template-columns: 1fr; gap: 48px; }
    .contact-block { border-left: none; border-top: 1px solid var(--ink); padding-left: 0; padding-top: 32px; }
}
