/* ═══════════════════════════════════════════════════════
   周东申艺术网站 · Style Sheet
   黑白基调 · 现代艺术排版
═══════════════════════════════════════════════════════ */

/* ── Variables ── */
:root {
  --bg:          #080808;
  --surface:     #101010;
  --surface2:    #181818;
  --text:        #e4e4e4;
  --muted:       #888;
  --subtle:      #444;
  --accent:      #c9b89a;   /* parchment warm */
  --gold:        #c9a227;
  --white:       #ffffff;
  --border:      rgba(255,255,255,0.07);
  --border2:     rgba(255,255,255,0.12);

  --serif:  'Cormorant Garamond', 'Noto Serif SC', Georgia, serif;
  --zh:     'Noto Serif SC', 'Songti SC', 'STSong', Georgia, serif;

  --ease:    cubic-bezier(0.16, 1, 0.3, 1);

  --nav-h:   72px;
  --max-w:   1200px;
  --gap:     clamp(64px, 10vw, 120px);
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--zh);
  line-height: 1.75;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { display: block; max-width: 100%; height: auto; }
a   { color: inherit; text-decoration: none; }
em  { font-style: italic; }
strong { font-weight: 700; }

/* ── Noise overlay ── */
.noise {
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  opacity: 0.045;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 200px 200px;
}

/* ═══════════════ NAVIGATION ═══════════════ */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 200;
  height: var(--nav-h);
  transition: background 0.5s var(--ease), box-shadow 0.5s var(--ease);
}
.nav.scrolled {
  background: rgba(8,8,8,0.9);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 var(--border);
}
.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  height: 100%;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
  gap: 3px;
}
.nav-logo-cn {
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  color: var(--white);
}
.nav-logo-en {
  font-size: 0.45rem;
  letter-spacing: 0.35em;
  color: var(--subtle);
  text-transform: uppercase;
}
.nav-menu { display: flex; gap: 36px; }
.nav-link {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  color: var(--muted);
  transition: color 0.2s;
  position: relative;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0; right: 100%;
  height: 1px;
  background: var(--accent);
  transition: right 0.35s var(--ease);
}
.nav-link:hover { color: var(--white); }
.nav-link:hover::after { right: 0; }

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle span {
  display: block;
  width: 22px; height: 1px;
  background: var(--text);
  transition: transform 0.35s var(--ease), opacity 0.3s;
}
.nav-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.open span:nth-child(2) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile menu */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 190;
  background: var(--bg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 44px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s var(--ease);
}
.mobile-menu.open { opacity: 1; pointer-events: all; }
.mobile-link {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 5vw, 2.5rem);
  letter-spacing: 0.1em;
  color: var(--muted);
  transition: color 0.2s;
}
.mobile-link:hover { color: var(--white); }

/* ═══════════════ UTILITY ═══════════════ */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 32px;
}

/* Section typography */
.section-eyebrow {
  font-size: 0.65rem;
  letter-spacing: 0.35em;
  color: var(--subtle);
  text-transform: uppercase;
  margin-bottom: 20px;
}
.section-title {
  font-family: var(--serif);
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 300;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 16px;
}
.section-title em { color: var(--accent); font-style: italic; }
.section-desc { color: var(--muted); font-size: 0.95rem; max-width: 480px; }
.section-header { margin-bottom: clamp(48px, 7vw, 80px); }

/* ═══════════════ SCROLL ANIMATIONS ═══════════════ */
[data-animate] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.85s var(--ease), transform 0.85s var(--ease);
}
[data-animate].visible { opacity: 1; transform: none; }

.reveal-up {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.95s var(--ease), transform 0.95s var(--ease);
}
.reveal-up.visible { opacity: 1; transform: none; }
.delay-1 { transition-delay: 0.12s; }
.delay-2 { transition-delay: 0.24s; }
.delay-3 { transition-delay: 0.38s; }

/* ═══════════════ HERO ═══════════════ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg-img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  filter: brightness(0.12);
  transform-origin: center;
  will-change: transform;
}
.hero-bg-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    135deg,
    rgba(8,8,8,0.75) 0%,
    rgba(8,8,8,0.35) 50%,
    rgba(8,8,8,0.65) 100%
  );
}

.hero-body {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: calc(var(--nav-h) + 48px) 32px 80px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 80px;
  align-items: center;
  min-height: 100svh;
}
.hero-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.hero-tag {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.6rem;
  letter-spacing: 0.3em;
  color: var(--subtle);
  text-transform: uppercase;
  margin-bottom: 48px;
}
.hero-tag-sep { color: var(--accent); font-size: 1rem; line-height: 1; }

.hero-name {
  display: flex;
  align-items: flex-end;
  gap: 28px;
  margin-bottom: 28px;
}
.hero-name-zh {
  font-family: var(--serif);
  font-size: clamp(5.5rem, 13vw, 10rem);
  font-weight: 300;
  font-style: normal;
  line-height: 0.88;
  color: var(--white);
  letter-spacing: 0.06em;
}
.hero-name-en {
  font-family: var(--serif);
  font-size: clamp(0.85rem, 1.8vw, 1.25rem);
  font-weight: 300;
  line-height: 1.4;
  letter-spacing: 0.35em;
  color: var(--subtle);
  text-transform: uppercase;
  margin-bottom: 18px;
}
.hero-years {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 48px;
}
.hero-year {
  font-family: var(--serif);
  font-size: 0.95rem;
  letter-spacing: 0.25em;
  color: var(--accent);
}
.hero-dash { font-size: 1.4rem; color: var(--subtle); }

.hero-quote {
  max-width: 460px;
  padding: 24px 28px;
  border-left: 2px solid var(--accent);
  background: rgba(255,255,255,0.025);
}
.hero-quote p {
  font-family: var(--serif);
  font-size: 1rem;
  font-style: italic;
  font-weight: 300;
  line-height: 1.9;
  color: var(--text);
  margin-bottom: 14px;
}
.hero-quote p strong { font-style: normal; color: var(--white); }
.hero-quote footer {
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  color: var(--muted);
}

.hero-right { display: flex; justify-content: flex-end; }
.hero-portrait { margin: 0; position: relative; width: 100%; max-width: 380px; }
.hero-portrait::before {
  content: '';
  position: absolute;
  inset: -10px;
  border: 1px solid rgba(255,255,255,0.06);
  pointer-events: none;
}
.hero-portrait-img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  object-position: center top;
  filter: grayscale(100%) contrast(1.1) brightness(0.9);
}

/* Scroll hint */
.hero-scroll {
  position: absolute;
  bottom: 36px; left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.hero-scroll span {
  font-size: 0.55rem;
  letter-spacing: 0.45em;
  color: var(--subtle);
  text-transform: uppercase;
}
.scroll-line {
  width: 1px;
  height: 52px;
  background: linear-gradient(to bottom, var(--subtle), transparent);
  animation: scrollAnim 2.2s ease-in-out infinite;
}
@keyframes scrollAnim {
  0%,100% { opacity: 0.25; transform: scaleY(1); }
  50%      { opacity: 1;    transform: scaleY(1.15); transform-origin: top; }
}

/* ═══════════════ STATS ═══════════════ */
.stats {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 72px 32px;
}
.stats-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: center;
}
.stat { text-align: center; padding: 24px 32px; }
.stat-divider { width: 1px; height: 72px; background: var(--border2); }
.stat-row { display: flex; align-items: baseline; justify-content: center; gap: 2px; }
.stat-num {
  font-family: var(--serif);
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 300;
  color: var(--white);
  line-height: 1;
}
.stat-plus {
  font-family: var(--serif);
  font-size: 2rem;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 4px;
}
.stat-label { font-size: 0.85rem; color: var(--muted); margin-top: 12px; letter-spacing: 0.05em; }
.stat-sub { font-size: 0.58rem; letter-spacing: 0.22em; color: var(--subtle); margin-top: 4px; text-transform: uppercase; }

/* ═══════════════ STORY ═══════════════ */
.story { padding: var(--gap) 0; }

.story-flow {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: center;
  margin-bottom: 72px;
}
.story-card { padding: 0 12px; }
.story-card-img {
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--surface2);
  margin-bottom: 24px;
}
.story-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: grayscale(70%);
  transition: filter 0.7s var(--ease), transform 0.7s var(--ease);
}
.story-card:hover .story-card-img img {
  filter: grayscale(0%);
  transform: scale(1.04);
}
.story-card-year {
  font-size: 0.62rem;
  letter-spacing: 0.3em;
  color: var(--accent);
  text-transform: uppercase;
  margin-bottom: 8px;
}
.story-card h3 {
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 12px;
}
.story-card p { font-size: 0.875rem; color: var(--muted); line-height: 1.75; }

.story-arrow {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 0 6px;
  margin-bottom: 100px; /* align to center of image */
}
.arrow-body { width: 1px; height: 28px; background: var(--border2); }
.arrow-tip  { color: var(--accent); font-size: 1.1rem; }

.story-coda {
  display: flex;
  align-items: center;
  gap: 28px;
  max-width: 680px;
  margin: 0 auto;
  padding: 0 12px;
}
.coda-line { flex: 1; height: 1px; background: var(--border2); }
.story-coda p { font-size: 0.9rem; color: var(--muted); white-space: nowrap; }
.story-coda p strong { color: var(--white); }

/* ═══════════════ ABOUT ═══════════════ */
.about {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 80vh;
}
.about-portrait-col { position: relative; overflow: hidden; }
.about-figure {
  position: sticky;
  top: var(--nav-h);
  height: calc(100vh - var(--nav-h));
  margin: 0;
}
.about-img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 20%;
  filter: grayscale(100%) contrast(1.15) brightness(0.8);
}
.about-text-col {
  padding: 88px 72px 88px 88px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.about-name {
  font-family: var(--serif);
  font-size: clamp(3rem, 6vw, 5.5rem);
  font-weight: 300;
  line-height: 1;
  color: var(--white);
  letter-spacing: 0.1em;
  margin-bottom: 44px;
}
.about-bio { display: flex; flex-direction: column; gap: 20px; margin-bottom: 40px; }
.about-bio p { font-size: 0.92rem; line-height: 1.9; color: var(--muted); }
.about-bio p strong { color: var(--white); font-weight: 600; }
.about-bio p em { color: var(--accent); font-style: italic; }

.about-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 40px; }
.tag {
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  padding: 6px 14px;
  border: 1px solid var(--border2);
  color: var(--subtle);
  transition: color 0.2s, border-color 0.2s;
}
.tag:hover { color: var(--muted); border-color: var(--muted); }

.cctv-bar {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 20px 24px;
  border: 1px solid var(--border2);
  background: rgba(255,255,255,0.018);
}
.cctv-icon {
  width: 38px; height: 38px;
  background: var(--accent);
  color: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  flex-shrink: 0;
  border-radius: 50%;
}
.cctv-text { display: flex; flex-direction: column; gap: 4px; }
.cctv-text strong { font-size: 0.85rem; color: var(--text); font-weight: 600; }
.cctv-text span { font-size: 0.75rem; color: var(--muted); }
.cctv-text em { color: var(--accent); font-style: normal; font-weight: 700; }

/* ═══════════════ MASTERWORK ═══════════════ */
.masterwork {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.masterwork-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: var(--gap) 32px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 88px;
  align-items: center;
}
.masterwork-title {
  font-family: var(--serif);
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 300;
  line-height: 1;
  color: var(--white);
  letter-spacing: 0.08em;
  margin-bottom: 20px;
}
.masterwork-badge {
  display: inline-block;
  font-size: 0.6rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--bg);
  background: var(--accent);
  padding: 6px 16px;
  margin-bottom: 36px;
}
.masterwork-meta { display: flex; gap: 44px; margin-bottom: 32px; align-items: baseline; }
.mw-item { display: flex; align-items: baseline; gap: 6px; }
.mw-num {
  font-family: var(--serif);
  font-size: 1.7rem;
  font-weight: 300;
  color: var(--white);
}
.mw-num sup { font-size: 1rem; color: var(--accent); }
.mw-unit { font-size: 0.7rem; color: var(--muted); letter-spacing: 0.05em; }

.masterwork-desc { font-size: 0.9rem; line-height: 1.85; color: var(--muted); margin-bottom: 28px; }
.masterwork-desc strong { color: var(--white); }
.masterwork-award { display: flex; align-items: center; gap: 14px; font-size: 0.8rem; color: var(--muted); margin-bottom: 36px; }
.award-chip {
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  color: var(--bg);
  background: var(--gold);
  padding: 4px 10px;
  text-transform: uppercase;
}
.masterwork-detail {
  padding: 20px 24px;
  border-left: 2px solid var(--border2);
  background: rgba(255,255,255,0.018);
}
.masterwork-detail p { font-size: 0.82rem; line-height: 1.85; color: var(--muted); }

.masterwork-frame {
  position: relative;
  background: var(--surface2);
  padding: 16px;
}
.masterwork-frame::before {
  content: '';
  position: absolute;
  inset: -5px;
  border: 1px solid var(--border2);
  pointer-events: none;
}
.masterwork-img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  background: #f5f2ec;
  padding: 20px;
}
.masterwork-caption {
  display: flex;
  justify-content: space-between;
  padding: 12px 4px 0;
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  color: var(--subtle);
}

/* ═══════════════ RECOGNITION ═══════════════ */
.recognition { padding: var(--gap) 0; }

.rec-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  margin-bottom: 72px;
}
.rec-card {
  padding: 52px 44px;
  background: var(--bg);
  transition: background 0.35s var(--ease);
}
.rec-card:hover { background: var(--surface); }
.rec-num {
  font-family: var(--serif);
  font-size: 3rem;
  font-weight: 300;
  color: var(--border2);
  line-height: 1;
  margin-bottom: 20px;
  transition: color 0.35s;
}
.rec-card:hover .rec-num { color: var(--accent); }
.rec-card h3 {
  font-family: var(--serif);
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 14px;
}
.rec-card p { font-size: 0.875rem; line-height: 1.8; color: var(--muted); }

/* Museums */
.museums { margin-bottom: 72px; }
.museums-heading {
  font-size: 0.6rem;
  letter-spacing: 0.35em;
  color: var(--subtle);
  text-transform: uppercase;
  margin-bottom: 28px;
}
.museums-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}
.museum-item {
  padding: 18px 22px;
  background: var(--bg);
  font-size: 0.8rem;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 10px;
  line-height: 1.45;
  transition: background 0.2s, color 0.2s;
}
.museum-item:hover { background: var(--surface); color: var(--text); }
.museum-no { font-family: var(--serif); font-size: 0.65rem; color: var(--subtle); flex-shrink: 0; }

/* Timeline */
.awards-section { }
.awards-heading {
  font-size: 0.6rem;
  letter-spacing: 0.35em;
  color: var(--subtle);
  text-transform: uppercase;
  margin-bottom: 36px;
}
.timeline {
  position: relative;
  padding-left: 128px;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 96px; top: 0; bottom: 0;
  width: 1px;
  background: var(--border2);
}
.tl-item {
  position: relative;
  padding: 22px 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: flex-start;
  gap: 0;
}
.tl-year {
  position: absolute;
  left: -128px; top: 22px;
  font-family: var(--serif);
  font-size: 0.82rem;
  color: var(--accent);
  letter-spacing: 0.1em;
  white-space: nowrap;
}
.tl-dot {
  position: absolute;
  left: -38px; top: 28px;
  width: 7px; height: 7px;
  border-radius: 50%;
  border: 1px solid var(--accent);
  background: var(--bg);
  transform: translateX(-3px);
}
.tl-events { display: flex; flex-direction: column; gap: 8px; }
.tl-events p { font-size: 0.85rem; color: var(--muted); line-height: 1.65; }
.tl-events p strong { color: var(--accent); }

/* ═══════════════ CONTACT ═══════════════ */
.contact {
  position: relative;
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--surface);
  border-top: 1px solid var(--border);
}
.contact-bg-text {
  position: absolute;
  font-family: var(--serif);
  font-size: clamp(9rem, 28vw, 24rem);
  font-weight: 700;
  color: rgba(255,255,255,0.018);
  user-select: none;
  letter-spacing: 0.1em;
  white-space: nowrap;
  z-index: 0;
  animation: driftText 18s ease-in-out infinite alternate;
}
@keyframes driftText {
  from { transform: translateX(-3%); }
  to   { transform: translateX(3%); }
}
.contact-content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 88px 32px;
}
.contact-title {
  font-family: var(--serif);
  font-size: clamp(2.4rem, 6vw, 5rem);
  font-weight: 300;
  line-height: 1.1;
  color: var(--white);
  margin: 12px 0 8px;
  letter-spacing: 0.05em;
}
.contact-org { font-size: 0.78rem; letter-spacing: 0.12em; color: var(--subtle); margin-bottom: 52px; }
.contact-links { display: flex; gap: 28px; justify-content: center; flex-wrap: wrap; }
.contact-link {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 22px 36px;
  border: 1px solid var(--border2);
  transition: border-color 0.3s, background 0.3s;
}
.contact-link:hover { border-color: var(--muted); background: rgba(255,255,255,0.025); }
.cl-label { font-size: 0.58rem; letter-spacing: 0.45em; color: var(--subtle); text-transform: uppercase; }
.cl-value { font-family: var(--serif); font-size: 1rem; color: var(--text); letter-spacing: 0.05em; }

/* ═══════════════ FOOTER ═══════════════ */
.footer {
  background: #050505;
  border-top: 1px solid var(--border);
  padding: 22px 32px;
}
.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  color: var(--subtle);
}

/* ═══════════════ RESPONSIVE ═══════════════ */
@media (max-width: 1024px) {
  .story-flow {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .story-card { padding: 0 0 0 0; margin-bottom: 0; }
  .story-arrow {
    flex-direction: row;
    justify-content: center;
    padding: 24px 0;
    margin-bottom: 0;
  }
  .arrow-body { width: 40px; height: 1px; }

  .museums-grid { grid-template-columns: repeat(2, 1fr); }

  .masterwork-inner { gap: 56px; }
}

@media (max-width: 900px) {
  .about {
    grid-template-columns: 1fr;
  }
  .about-figure {
    position: relative;
    height: 56vw;
    max-height: 480px;
  }
  .about-text-col { padding: 56px 32px; }
}

@media (max-width: 768px) {
  :root { --nav-h: 60px; }

  .nav-menu { display: none; }
  .nav-toggle { display: flex; }

  .hero-body {
    grid-template-columns: 1fr;
    gap: 40px;
    min-height: auto;
    padding-bottom: 100px;
  }
  .hero-right { justify-content: flex-start; }
  .hero-portrait { max-width: 240px; }
  .hero-portrait-img { height: 280px; }

  .hero-name { flex-direction: column; gap: 6px; align-items: flex-start; }
  .hero-name-en { align-self: auto; margin-bottom: 0; }

  .stats { padding: 48px 24px; }
  .stats-inner {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .stat-divider { width: 60px; height: 1px; margin: 20px auto; }
  .stat { padding: 8px; }

  .masterwork-inner {
    grid-template-columns: 1fr;
    gap: 48px;
    padding: 56px 24px;
  }

  .rec-cards { grid-template-columns: 1fr; }
  .museums-grid { grid-template-columns: 1fr 1fr; }

  .timeline { padding-left: 80px; }
  .timeline::before { left: 60px; }
  .tl-year { left: -80px; font-size: 0.72rem; }
  .tl-dot { left: -24px; }

  .contact-links { flex-direction: column; align-items: stretch; }
  .contact-link { padding: 20px 28px; }
}

@media (max-width: 480px) {
  .museums-grid { grid-template-columns: 1fr; }
  .hero-tag { display: none; }
  .story-coda p { white-space: normal; text-align: center; }

  .container { padding: 0 20px; }
  .footer-inner { flex-direction: column; gap: 6px; text-align: center; }
}

/* ═══════════════ SELECTION ═══════════════ */
::selection {
  background: var(--accent);
  color: var(--bg);
}
