:root { --ink: #1d1d1b; --paper: #f4f2ed; --line: #d7d4cc; --muted: #77746d; --accent: #d95f3b; }
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: var(--paper); color: var(--ink); font-family: Arial, "PingFang SC", "Microsoft YaHei", sans-serif; }
.site-header { height: 76px; border-bottom: 1px solid var(--line); display: flex; align-items: center; justify-content: space-between; padding: 0 clamp(24px, 5vw, 84px); }
.brand, nav a, .about a { color: inherit; text-decoration: none; } .brand { font-size: 15px; letter-spacing: .03em; font-weight: 600; } .brand span { color: var(--accent); }
nav { display: flex; gap: 22px; font-size: 14px; } nav a { color: var(--muted); } nav a.active, nav a:hover { color: var(--ink); }
main { max-width: 1280px; margin: auto; padding: 0 clamp(24px, 5vw, 84px); }.intro { padding: clamp(82px, 13vw, 168px) 0 clamp(70px, 10vw, 130px); }
.eyebrow { color: var(--accent); letter-spacing: .13em; font-size: 11px; font-weight: 700; margin: 0 0 22px; }.intro h1 { font-family: Georgia, "Songti SC", serif; font-size: clamp(43px, 6.5vw, 90px); line-height: 1.07; font-weight: 400; letter-spacing: -.045em; margin: 0; }.intro-copy { color: var(--muted); margin: 28px 0 0; font-size: 16px; }
.works { border-top: 1px solid var(--ink); padding-top: 18px; }.section-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 42px; }.section-head h2 { margin: 0; font-size: 15px; }.filters { display: flex; gap: 7px; }.filter { cursor: pointer; border: 0; background: transparent; padding: 5px 9px; font: inherit; font-size: 13px; color: var(--muted); }.filter.is-active { color: var(--paper); background: var(--ink); border-radius: 20px; }
.feed { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 74px 28px; }.post-featured { grid-column: span 2; }.post.is-hidden { display: none; }.media-button { display: block; position: relative; padding: 0; width: 100%; border: 0; cursor: zoom-in; overflow: hidden; background: #ddd; }.media-button img { width: 100%; height: auto; display: block; aspect-ratio: 16/9; object-fit: cover; transition: transform .5s ease; }.post:not(.post-featured) .media-button img { aspect-ratio: 4/3; }.media-button:hover img { transform: scale(1.025); }.media-hint { opacity: 0; position: absolute; bottom: 14px; right: 14px; background: var(--paper); padding: 7px 10px; font-size: 12px; transition: opacity .2s; }.media-button:hover .media-hint { opacity: 1; }
.post-meta { color: var(--muted); display: flex; justify-content: space-between; font-size: 11px; letter-spacing: .06em; padding-top: 14px; }.post h3 { font-family: Georgia, "Songti SC", serif; margin: 10px 0 6px; font-size: 27px; font-weight: 400; letter-spacing: -.025em; }.post p { margin: 0; color: var(--muted); font-size: 14px; line-height: 1.6; }.text-card { min-height: 370px; background: #dedbd3; padding: clamp(28px, 4vw, 54px); display: flex; flex-direction: column; align-items: flex-start; }.quote-mark { color: var(--accent) !important; font: 70px Georgia, serif !important; height: 45px; }.excerpt { color: var(--ink) !important; font: 28px/1.3 Georgia, "Songti SC", serif !important; letter-spacing: -.03em; }.read-more { color: var(--ink); text-decoration: none; border-bottom: 1px solid var(--ink); font-size: 13px; margin-top: auto; padding-bottom: 3px; }.video-wrap { background: #161616; line-height: 0; }.video-wrap video { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.about { margin-top: clamp(120px, 18vw, 220px); border-top: 1px solid var(--ink); padding: 18px 0 80px; }.about > p:nth-child(2) { font: clamp(27px, 4vw, 50px)/1.25 Georgia, "Songti SC", serif; letter-spacing: -.04em; margin: 0 0 36px; }.about a { border-bottom: 1px solid; padding-bottom: 3px; font-size: 14px; } footer { border-top: 1px solid var(--line); padding: 24px clamp(24px, 5vw, 84px); color: var(--muted); font-size: 11px; letter-spacing: .08em; }
.lightbox { max-width: min(1100px, 92vw); width: auto; padding: 0; border: 0; background: transparent; }.lightbox::backdrop { background: rgba(10,10,10,.88); }.lightbox figure { margin: 0; }.lightbox img { max-width: 92vw; max-height: 80vh; display: block; }.lightbox figcaption { color: white; margin-top: 12px; font-size: 13px; }.close { position: fixed; right: 24px; top: 18px; border: 0; background: transparent; color: white; font-size: 38px; cursor: pointer; }
@media (max-width: 640px) { .site-header { height: 64px; } nav { gap: 13px; }.feed { grid-template-columns: 1fr; gap: 56px; }.post-featured { grid-column: auto; }.section-head { align-items: flex-start; gap: 14px; flex-direction: column; }.intro h1 { font-size: 46px; }.text-card { min-height: 315px; }.excerpt { font-size: 25px !important; } }
