/* ==========================================================================
   fengzhenmezzo.com — 前台样式 v3「暗场」
   概念：歌剧院灯光暗下、聚光灯亮起的一刻。深色为主体，纸色区块穿插；
   分屏 hero、节目单式编号、错落网格画廊、超大联系排版。
   字体：Fraunces（display 刻字感）+ Inter。
   ========================================================================== */

:root {
  --bg:      #0D0A07;
  --bg-2:    #151109;
  --paper:   #F4EEE1;
  --fg:      #F4EEE1;
  --mut:     rgba(244, 238, 225, .56);
  --line:    rgba(244, 238, 225, .14);
  --brass:   #C89B57;
  --brass-2: #E3C185;

  --display: "Fraunces", Georgia, "Times New Roman", serif;
  --sans:    "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

  --wrap: 1240px;
  --gut:  clamp(20px, 5vw, 72px);
  --sec:  clamp(90px, 12vw, 200px);

  --ease: cubic-bezier(.22, .61, .36, 1);
}

/* 浅色穿插区块：翻转语义变量即可，组件全部跟随 */
.section--light, .quote {
  --fg:   #16120D;
  --mut:  #6F6558;
  --line: rgba(22, 18, 13, .16);
  background: var(--paper);
  color: var(--fg);
}

/* ---------------------------------------------------------------- 基础 */

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  background: var(--bg);
  color: var(--fg);
  font-family: var(--sans);
  font-size: 16px;
  font-weight: 300;
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
}

/* 胶片颗粒——极淡，全站统一的“剧场底噪” */
body::after {
  content: "";
  position: fixed; inset: 0; z-index: 2147483647;
  pointer-events: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='140' height='140'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2'/><feColorMatrix type='saturate' values='0'/></filter><rect width='140' height='140' filter='url(%23n)' opacity='0.5'/></svg>");
  opacity: .04;
  mix-blend-mode: overlay;
}

img, video, iframe { max-width: 100%; display: block; }
img { height: auto; }

a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }

::selection { background: var(--brass); color: #16120D; }

.skip {
  position: absolute; left: -9999px; top: 0; z-index: 999;
  background: var(--paper); color: #16120D; padding: 12px 20px;
}
.skip:focus { left: 12px; top: 12px; }

:focus-visible { outline: 2px solid var(--brass); outline-offset: 3px; }

/* ---------------------------------------------------------------- 排版 */

.wrap { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: var(--gut); }
.wrap--narrow { max-width: 800px; }

.eyebrow {
  display: flex; align-items: center;
  font-family: var(--sans);
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: .4em;
  text-transform: uppercase;
  color: var(--brass);
  margin: 0 0 26px;
}
.no {
  color: var(--brass-2);
  letter-spacing: .12em;
  margin-right: 14px;
}
.no::after { content: "/"; margin-left: 12px; opacity: .45; }

.h1, .h2 {
  font-family: var(--display);
  font-weight: 400;
  font-variation-settings: "opsz" 144;
  line-height: .98;
  letter-spacing: -.02em;
  margin: 0 0 32px;
  color: var(--fg);
}
.h1 { font-size: clamp(46px, 8.5vw, 100px); }
.h2 { font-size: clamp(40px, 6.4vw, 86px); }
.h1 em, .h2 em { font-style: italic; font-weight: 340; color: var(--brass-2); }
.section--light .h2 em, .quote em { color: var(--brass); }

.prose { color: var(--mut); font-size: 17px; line-height: 1.95; }
.prose p { margin: 0 0 1.35em; }
.prose p:first-of-type::first-letter {
  font-family: var(--display);
  font-size: 3.2em; line-height: .8;
  float: left; padding: .1em .14em 0 0;
  color: var(--brass);
}
.prose--narrow { max-width: 62ch; }
.prose--narrow p::first-letter, .prose--post p::first-letter { font: inherit; float: none; padding: 0; color: inherit; }
.prose--post { font-size: 18px; color: var(--fg); }
.prose--post p { color: color-mix(in srgb, var(--fg) 82%, transparent); }

.placeholder {
  color: var(--mut);
  font-style: italic;
  border-left: 2px solid var(--brass);
  padding-left: 18px;
  margin: 0;
}
.placeholder::first-letter { font: inherit; float: none; padding: 0; color: inherit; }

.center { text-align: center; margin-top: 60px; }

/* ---------------------------------------------------------------- 按钮 */

.btn, .btn--line {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 10.5px; font-weight: 500;
  letter-spacing: .28em; text-transform: uppercase;
  padding: 17px 40px;
  border: 1px solid var(--line);
  color: var(--fg);
  transition: background .5s var(--ease), color .5s var(--ease), border-color .5s var(--ease);
}
.btn:hover, .btn--line:hover {
  background: var(--brass); border-color: var(--brass); color: #16120D;
}

/* ---------------------------------------------------------------- 导航 */

.nav {
  position: fixed; inset: 0 0 auto; z-index: 100;
  padding: 26px 0; color: var(--fg);
  transition: background .5s var(--ease), padding .5s var(--ease), box-shadow .5s var(--ease);
}
.nav__inner {
  width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: var(--gut);
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
}
.nav__brand { display: flex; flex-direction: column; line-height: 1.1; }
.nav__name { font-family: var(--display); font-size: 21px; letter-spacing: .01em; }
.nav__role {
  font-size: 8.5px; letter-spacing: .38em; text-transform: uppercase;
  color: var(--brass); margin-top: 5px;
}
.nav__links { display: flex; gap: 36px; }
.nav__links a {
  font-size: 10.5px; font-weight: 400; letter-spacing: .26em; text-transform: uppercase;
  position: relative; padding-block: 4px;
}
.nav__links a::after {
  content: ""; position: absolute; left: 0; bottom: 0; width: 0; height: 1px;
  background: var(--brass); transition: width .45s var(--ease);
}
.nav__links a:hover::after { width: 100%; }

.is-sub .nav,
.nav.is-stuck {
  background: rgba(13, 10, 7, .88);
  backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 var(--line);
}
.nav.is-stuck { padding: 15px 0; }

.nav__toggle { display: none; width: 30px; height: 22px; position: relative; }
.nav__toggle span {
  position: absolute; left: 0; width: 100%; height: 1px; background: currentColor;
  transition: transform .4s var(--ease), opacity .3s;
}
.nav__toggle span:nth-child(1) { top: 5px; }
.nav__toggle span:nth-child(2) { bottom: 5px; }
.nav__toggle[aria-expanded="true"] span:nth-child(1) { top: 11px; transform: rotate(45deg); }
.nav__toggle[aria-expanded="true"] span:nth-child(2) { bottom: 10px; transform: rotate(-45deg); }

/* ---------------------------------------------------------------- HERO 分屏 */

.hero {
  position: relative;
  min-height: 100svh;
  background:
    radial-gradient(1100px 700px at 18% -5%, rgba(200, 155, 87, .09), transparent 62%),
    var(--bg);
}
.hero__inner {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, .92fr);
  min-height: 100svh;
}
.hero__text {
  display: flex; flex-direction: column; justify-content: center;
  position: relative; z-index: 3;
  padding: 170px var(--gut) 130px clamp(20px, 6vw, 100px);
}
.hero__name {
  font-family: var(--display);
  font-weight: 340;
  font-variation-settings: "opsz" 144;
  font-size: clamp(64px, 13.5vw, 205px);
  line-height: .88;
  letter-spacing: -.035em;
  margin: 0 0 36px;
  margin-right: clamp(-240px, -16vw, -40px);   /* 名字压到肖像上 */
}
.hero__name em {
  font-style: italic; font-weight: 320;
  color: var(--brass-2);
  margin-left: clamp(28px, 7vw, 150px);        /* 姓氏错位缩进 */
}
.hero__line {
  max-width: 44ch; font-size: 16.5px; line-height: 1.9;
  color: var(--mut); margin: 0 0 46px;
}
.hero__cta { display: flex; flex-wrap: wrap; gap: 16px; }

.hero__portrait { position: relative; margin: 0; overflow: hidden; }
.hero__portrait img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: center 18%;
  filter: saturate(.94);
}
/* 左缘与底部渐隐，让肖像“从黑暗里浮出来” */
.hero__portrait::before {
  content: ""; position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(90deg, var(--bg) 0%, transparent 32%),
    linear-gradient(0deg, rgba(13, 10, 7, .5) 0%, transparent 36%);
}

.hero__side {
  position: absolute; z-index: 2;
  left: 20px; top: 50%;
  transform: translateY(-50%);
  writing-mode: vertical-rl;
  font-size: 9px; font-weight: 400;
  letter-spacing: .55em; text-transform: uppercase;
  color: rgba(244, 238, 225, .3);
}

.hero__scroll {
  position: absolute; z-index: 3;
  left: clamp(24px, 6vw, 100px); bottom: 40px;
  width: 22px; color: rgba(244, 238, 225, .5);
}
.hero__scrolldot { animation: scrollDot 2.2s var(--ease) infinite; }
@keyframes scrollDot { 0%,100% { transform: translateY(0); opacity: 1; } 50% { transform: translateY(9px); opacity: .3; } }
@media (prefers-reduced-motion: reduce) { .hero__scrolldot { animation: none; } }

/* ---------------------------------------------------------------- 区块 */

.section { padding-block: var(--sec); }
.section__head { margin-bottom: clamp(52px, 6.5vw, 96px); }
.section__head .eyebrow::after {
  content: ""; flex: 1; max-width: 240px; height: 1px;
  background: currentColor; opacity: .35; margin-left: 18px;
}

.section--media, .section--contact { background: var(--bg-2); }

.pagehead {
  padding-block: clamp(160px, 20vw, 240px) clamp(46px, 6vw, 80px);
  border-bottom: 1px solid var(--line);
}
.pagehead--tall { min-height: 70svh; display: flex; align-items: center; }

.grid-2 {
  display: grid; grid-template-columns: .92fr 1.08fr;
  gap: clamp(44px, 7vw, 120px); align-items: center;
}

/* 关于 */
.about__img { position: relative; }
.about__img img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; }
.about__img::before {
  content: ""; position: absolute; inset: -16px auto auto -16px;
  width: 100px; height: 100px; z-index: 1;
  border-top: 1px solid var(--brass); border-left: 1px solid var(--brass);
}
.about__img::after {
  content: ""; position: absolute; inset: auto -16px -16px auto;
  width: 100px; height: 100px;
  border-bottom: 1px solid var(--brass); border-right: 1px solid var(--brass);
}

/* ---------------------------------------------------------------- 画廊：错落网格 */

.filters {
  display: flex; flex-wrap: wrap; gap: 32px;
  margin-bottom: 46px; border-bottom: 1px solid var(--line);
}
.filter {
  font-size: 10.5px; letter-spacing: .26em; text-transform: uppercase;
  padding: 10px 2px 16px; color: var(--mut);
  border-bottom: 1px solid transparent; margin-bottom: -1px;
  transition: color .35s var(--ease), border-color .35s var(--ease);
}
.filter:hover { color: var(--fg); }
.filter.is-active { color: var(--fg); border-color: var(--brass); }

.gallery {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: clamp(12px, 1.6vw, 22px);
  grid-auto-flow: dense;
}
.gallery__item { position: relative; margin: 0; display: flex; grid-column: span 4; }
.gallery__item:nth-child(6n+1) { grid-column: span 5; }
.gallery__item:nth-child(6n+2) { grid-column: span 4; }
.gallery__item:nth-child(6n+3) { grid-column: span 3; }
.gallery__item:nth-child(6n+4) { grid-column: span 3; }
.gallery__item:nth-child(6n+5) { grid-column: span 5; }
.gallery__item:nth-child(6n+6) { grid-column: span 4; }
.gallery__item.is-hidden { display: none; }

.gallery__btn {
  display: block; width: 100%; height: 100%;
  aspect-ratio: 3 / 4;
  position: relative; overflow: hidden;
  background: var(--bg-2);
}
.gallery__btn img {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 1.2s var(--ease), opacity .5s;
}
.gallery__btn:hover img { transform: scale(1.05); opacity: .8; }
.gallery__veil {
  position: absolute; inset: 0; z-index: 2;
  display: grid; place-items: center;
  color: var(--paper); opacity: 0;
  background: rgba(13, 10, 7, .28);
  transition: opacity .45s var(--ease);
}
.gallery__veil svg { width: 26px; }
.gallery__btn:hover .gallery__veil { opacity: 1; }
.gallery__item figcaption {
  position: absolute; z-index: 3; left: 14px; bottom: 12px; right: 14px;
  font-size: 11.5px; letter-spacing: .08em;
  color: var(--paper); text-shadow: 0 1px 8px rgba(0,0,0,.7);
  opacity: 0; transition: opacity .45s var(--ease);
  pointer-events: none;
}
.gallery__item:hover figcaption { opacity: 1; }

/* ---------------------------------------------------------------- 金句（纸色） */

.quote { padding-block: var(--sec); }
.quote .wrap--narrow { position: relative; text-align: center; }
.quote__text {
  position: relative;
  font-family: var(--display); font-style: italic; font-weight: 340;
  font-variation-settings: "opsz" 144;
  font-size: clamp(28px, 4.4vw, 54px);
  line-height: 1.28; letter-spacing: -.015em;
  color: var(--fg); margin: 0;
}
.quote__text::before {
  content: "\201C";
  position: absolute; top: -.52em; left: 50%; transform: translateX(-50%);
  font-family: var(--display); font-style: normal;
  font-size: 2.1em; line-height: 1; color: var(--brass);
  opacity: .5;
}
.quote__attrib {
  margin: 34px 0 0;
  font-size: 10.5px; font-weight: 500;
  letter-spacing: .34em; text-transform: uppercase;
  color: var(--brass);
}

/* ---------------------------------------------------------------- 媒体 */

.media { display: grid; grid-template-columns: repeat(2, 1fr); gap: clamp(36px, 4.5vw, 64px); }
.media__item:first-child { grid-column: 1 / -1; }
.media__frame { position: relative; aspect-ratio: 16 / 9; background: #000; border: 1px solid var(--line); }
.media__frame iframe, .media__frame video { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.media__meta { padding-top: 22px; }
.media__meta h3 {
  font-family: var(--display); font-size: 27px; font-weight: 400;
  letter-spacing: 0; margin: 0 0 8px; color: var(--fg);
}
.media__meta p { margin: 0; font-size: 15px; color: var(--mut); }

/* ---------------------------------------------------------------- 简历：大年份 */

.cv__group { margin-bottom: clamp(48px, 5.5vw, 84px); }
.cv__label {
  font-family: var(--sans); font-size: 10.5px; font-weight: 500;
  letter-spacing: .34em; text-transform: uppercase; color: var(--brass);
  margin: 0 0 8px; padding-bottom: 14px; border-bottom: 1px solid var(--line);
}
.cv__list { margin: 0; }
.cv__row {
  display: grid; grid-template-columns: 1fr clamp(90px, 13vw, 180px);
  gap: 26px; align-items: center;
  padding: 26px 0; border-bottom: 1px solid var(--line);
  transition: background .35s var(--ease);
}
.cv__row:hover { background: rgba(200, 155, 87, .05); }
.cv__row dt {
  grid-column: 2; grid-row: 1;
  font-family: var(--display); font-style: italic; font-weight: 340;
  font-size: clamp(24px, 3.2vw, 42px);
  color: var(--brass); text-align: right; line-height: 1;
}
.cv__row dd { grid-column: 1; grid-row: 1; margin: 0; display: flex; flex-direction: column; gap: 4px; }
.cv__title { font-size: 17.5px; color: var(--fg); }
.cv__org   { font-size: 14px; color: var(--mut); }
.cv__detail{ font-size: 14px; color: var(--mut); font-style: italic; }

/* ---------------------------------------------------------------- 日志 */

.cards { display: grid; gap: clamp(30px, 4vw, 54px); grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }
.card a { display: block; height: 100%; }
.card__img { overflow: hidden; margin-bottom: 24px; }
.card__img img { width: 100%; aspect-ratio: 3 / 2; object-fit: cover; transition: transform 1.1s var(--ease); }
.card a:hover .card__img img { transform: scale(1.05); }
.card time { font-size: 10.5px; letter-spacing: .26em; text-transform: uppercase; color: var(--brass); }
.card h3 {
  font-family: var(--display); font-size: 29px; font-weight: 400;
  margin: 12px 0 12px; line-height: 1.2; color: var(--fg);
}
.card p { margin: 0 0 20px; font-size: 15px; color: var(--mut); }
.card__more {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 10.5px; letter-spacing: .26em; text-transform: uppercase; color: var(--fg);
}
.card__more svg { width: 16px; transition: transform .45s var(--ease); }
.card a:hover .card__more svg { transform: translateX(5px); }

.post__date { display: block; font-size: 10.5px; letter-spacing: .26em; text-transform: uppercase; color: var(--brass); margin-bottom: 42px; }
.post__cover { margin-bottom: 46px; }
.post__cover img { width: 100%; }
.post__back { margin-top: 60px; padding-top: 34px; border-top: 1px solid var(--line); }

/* ---------------------------------------------------------------- 联系：超大排版 */

.contact { display: flex; flex-direction: column; align-items: flex-start; gap: 14px; margin-bottom: 60px; }
.contact__mega {
  font-family: var(--display); font-weight: 340;
  font-variation-settings: "opsz" 144;
  font-size: clamp(28px, 5.6vw, 82px);
  line-height: 1.06; letter-spacing: -.025em;
  color: var(--fg);
  max-width: 100%; overflow-wrap: anywhere;
  background: linear-gradient(currentColor, currentColor) no-repeat left bottom / 0% 1px;
  transition: color .5s var(--ease), background-size .6s var(--ease);
}
.contact__mega:hover { color: var(--brass-2); background-size: 100% 1px; }
.contact__sub {
  font-family: var(--display); font-weight: 340;
  font-size: clamp(20px, 2.6vw, 34px);
  color: var(--mut);
  transition: color .4s var(--ease);
}
.contact__sub:hover { color: var(--fg); }

.social { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }
.social a {
  width: 48px; height: 48px; display: grid; place-items: center;
  border: 1px solid var(--line);
  transition: background .4s var(--ease), color .4s var(--ease), border-color .4s var(--ease);
}
.social svg { width: 19px; }
.social a:hover { background: var(--brass); color: #16120D; border-color: var(--brass); }
.social a.social__pill {
  width: auto; height: 48px; padding: 0 22px;
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 10.5px; font-weight: 500;
  letter-spacing: .26em; text-transform: uppercase;
}
.social__pill svg { width: 15px; }

/* ---------------------------------------------------------------- 页脚：描边大字 */

.foot {
  background: var(--bg);
  border-top: 1px solid var(--line);
  padding: 72px 0 40px;
  overflow: hidden;
}
.foot__mark {
  margin: 0 0 44px;
  font-family: var(--display); font-weight: 340;
  font-variation-settings: "opsz" 144;
  font-size: clamp(64px, 13.5vw, 215px);
  line-height: .8; letter-spacing: -.03em;
  white-space: nowrap;
  color: transparent;
  -webkit-text-stroke: 1px rgba(244, 238, 225, .16);
  user-select: none;
}
.foot__inner {
  display: flex; flex-wrap: wrap; gap: 12px; justify-content: space-between;
  font-size: 12px; letter-spacing: .1em; color: var(--mut);
}

/* ---------------------------------------------------------------- 灯箱 */

.lightbox {
  position: fixed; inset: 0; z-index: 200;
  background: rgba(9, 7, 5, .97);
  display: none; place-items: center;
  padding: clamp(20px, 5vw, 64px);
}
.lightbox.is-open { display: grid; }
.lightbox__fig { margin: 0; max-width: 100%; max-height: 100%; text-align: center; }
.lightbox__fig img { max-height: 82svh; width: auto; margin-inline: auto; }
.lightbox__fig figcaption {
  color: rgba(244, 238, 225, .66); font-size: 13px; letter-spacing: .1em; padding-top: 18px;
}
.lightbox__close, .lightbox__nav {
  position: absolute; color: rgba(244, 238, 225, .72);
  width: 52px; height: 52px; display: grid; place-items: center;
  transition: color .3s, background .3s;
}
.lightbox__close:hover, .lightbox__nav:hover { color: var(--paper); background: rgba(244, 238, 225, .08); }
.lightbox__close svg, .lightbox__nav svg { width: 24px; }
.lightbox__close { top: 18px; right: 18px; }
.lightbox__nav--prev { left: 12px; top: 50%; transform: translateY(-50%); }
.lightbox__nav--next { right: 12px; top: 50%; transform: translateY(-50%); }

/* ---------------------------------------------------------------- 入场动效 */

.reveal { opacity: 0; transform: translateY(28px); transition: opacity 1.05s var(--ease), transform 1.05s var(--ease); }
.reveal.is-in { opacity: 1; transform: none; }
.reveal:nth-child(2) { transition-delay: .07s; }
.reveal:nth-child(3) { transition-delay: .14s; }
.reveal:nth-child(4) { transition-delay: .21s; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* ---------------------------------------------------------------- 响应式 */

@media (max-width: 1100px) {
  .hero__side { display: none; }
}

@media (max-width: 900px) {
  .grid-2 { grid-template-columns: 1fr; }

  .hero__inner { grid-template-columns: 1fr; }
  .hero__portrait { order: -1; height: 46svh; }
  .hero__portrait img { position: absolute; }
  .hero__portrait::before {
    background: linear-gradient(0deg, var(--bg) 0%, transparent 42%);
  }
  .hero__text { padding: 42px var(--gut) 90px; }
  .hero__name { margin-right: 0; }
  .hero__scroll { display: none; }

  .media { grid-template-columns: 1fr; }

  .nav__toggle { display: block; }
  .nav__links {
    position: fixed; inset: 0 0 auto; top: 0;
    flex-direction: column; gap: 6px;
    background: var(--bg); color: var(--fg);
    padding: 110px var(--gut) 46px;
    transform: translateY(-102%);
    transition: transform .55s var(--ease);
    box-shadow: 0 20px 50px rgba(0, 0, 0, .5);
  }
  .nav__links.is-open { transform: none; }
  .nav__links a { font-size: 14px; padding-block: 12px; border-bottom: 1px solid var(--line); }
}

@media (max-width: 620px) {
  .gallery__item,
  .gallery__item:nth-child(6n+1), .gallery__item:nth-child(6n+2),
  .gallery__item:nth-child(6n+3), .gallery__item:nth-child(6n+4),
  .gallery__item:nth-child(6n+5), .gallery__item:nth-child(6n+6) { grid-column: span 6; }

  .cv__row { grid-template-columns: 1fr; gap: 8px; }
  .cv__row dt { grid-column: 1; grid-row: auto; text-align: left; font-size: 22px; }
  .cv__row dd { grid-column: 1; grid-row: auto; }

  .filters { gap: 20px; }
  .lightbox__nav { display: none; }
  .foot__mark { font-size: clamp(48px, 16vw, 90px); }
}

/* ==========================================================================
   v4 新增区块：演出日程 / 曲目单 / 媒体评论列表 / 音频
   ========================================================================== */

/* ---------------------------------------------------------------- 演出日程 */

.section--dates { background: var(--bg-2); }

.dates { display: flex; flex-direction: column; }

.date {
  display: grid;
  grid-template-columns: clamp(84px, 10vw, 128px) 1fr auto;
  gap: clamp(20px, 3vw, 46px); align-items: center;
  padding: clamp(26px, 3vw, 40px) 0;
  border-bottom: 1px solid var(--line);
  transition: background .35s var(--ease);
}
.date:first-child { border-top: 1px solid var(--line); }
.date:hover { background: rgba(200, 155, 87, .05); }

.date__when { text-align: center; line-height: 1; }
.date__day {
  display: block; font-family: var(--display); font-weight: 340;
  font-variation-settings: "opsz" 144;
  font-size: clamp(40px, 5.2vw, 66px); color: var(--brass-2);
}
.date__mon {
  display: block; margin-top: 6px;
  font-size: 10.5px; font-weight: 500; letter-spacing: .28em;
  text-transform: uppercase; color: var(--brass);
}
.date__yr { display: block; margin-top: 4px; font-size: 12px; color: var(--mut); }

.date__what h3 {
  font-family: var(--display); font-size: clamp(21px, 2.4vw, 30px);
  font-weight: 400; line-height: 1.22; margin: 0 0 6px; color: var(--fg);
}
.date__role { margin: 0 0 6px; font-style: italic; font-size: 15.5px; color: var(--brass-2); }
.date__where { margin: 0 0 4px; font-size: 15px; color: var(--fg); opacity: .82; }
.date__prog { margin: 6px 0 0; font-size: 14px; color: var(--mut); }
.date__time { margin: 6px 0 0; font-size: 12px; letter-spacing: .16em; text-transform: uppercase; color: var(--mut); }
.date__cta { white-space: nowrap; }

/* 往期：压缩成一行行的清单，不跟即将上演的抢视线 */
.pastlist { margin-top: clamp(50px, 6vw, 84px); }
.pastlist__label {
  font-family: var(--sans); font-size: 10.5px; font-weight: 500;
  letter-spacing: .34em; text-transform: uppercase; color: var(--brass);
  margin: 0 0 8px; padding-bottom: 14px; border-bottom: 1px solid var(--line);
}
.pastlist ul { list-style: none; margin: 0; padding: 0; }
.pastlist li {
  display: grid; grid-template-columns: 68px 1fr auto; gap: 22px; align-items: baseline;
  padding: 16px 0; border-bottom: 1px solid var(--line); font-size: 15px;
}
.pastlist__yr { font-family: var(--display); font-style: italic; font-size: 19px; color: var(--brass); }
.pastlist__ttl { color: var(--fg); opacity: .86; }
.pastlist__ttl em { font-style: italic; color: var(--brass-2); opacity: 1; }
.pastlist__ven { font-size: 13.5px; color: var(--mut); text-align: right; }

/* ---------------------------------------------------------------- 曲目单 */

.rep { display: grid; grid-template-columns: repeat(auto-fit, minmax(330px, 1fr)); gap: clamp(40px, 5vw, 76px); }
.rep__label {
  font-family: var(--sans); font-size: 10.5px; font-weight: 500;
  letter-spacing: .34em; text-transform: uppercase; color: var(--brass);
  margin: 0 0 8px; padding-bottom: 14px; border-bottom: 1px solid var(--line);
}
.rep__list { list-style: none; margin: 0; padding: 0; }
.rep__list li {
  padding: 17px 0; border-bottom: 1px solid var(--line);
  display: flex; flex-direction: column; gap: 3px;
}
.rep__work { font-family: var(--display); font-size: 19.5px; font-weight: 400; color: var(--fg); }
.rep__comp { font-size: 13.5px; letter-spacing: .04em; color: var(--brass); }
.rep__role { font-size: 14.5px; font-style: italic; color: var(--mut); }
.rep__note { font-size: 13px; color: var(--mut); opacity: .8; }

/* ---------------------------------------------------------------- 评论列表 */

.press {
  margin-top: clamp(56px, 6vw, 92px); padding-top: clamp(40px, 4vw, 60px);
  border-top: 1px solid var(--line);
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: clamp(30px, 4vw, 52px); text-align: left;
}
.press__item { margin: 0; }
.press__item blockquote {
  margin: 0 0 14px; padding-left: 18px; border-left: 2px solid var(--brass);
  font-family: var(--display); font-size: 18px; font-style: italic;
  font-weight: 340; line-height: 1.5; color: var(--fg);
}
.press__item figcaption {
  font-size: 10.5px; font-weight: 500; letter-spacing: .26em;
  text-transform: uppercase; color: var(--brass); padding-left: 20px;
}
.quote__attrib a, .press__item figcaption a { color: inherit; text-decoration: none; border-bottom: 1px solid currentColor; }
.quote__attrib a:hover, .press__item figcaption a:hover { color: var(--fg); }

/* ---------------------------------------------------------------- 音频 */

.tracks {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: clamp(28px, 3.5vw, 48px);
  margin-bottom: clamp(50px, 6vw, 88px);
}
.track { border: 1px solid var(--line); padding: clamp(22px, 2.4vw, 32px); }
.track__meta { margin-bottom: 18px; }
.track__meta h3 {
  font-family: var(--display); font-size: 24px; font-weight: 400;
  margin: 0 0 5px; line-height: 1.24; color: var(--fg);
}
.track__comp { margin: 0; font-size: 13px; letter-spacing: .18em; text-transform: uppercase; color: var(--brass); }
.track__embed { width: 100%; height: 152px; border: 0; display: block; }
.track__audio { width: 100%; display: block; }
.track__desc { margin: 16px 0 0; font-size: 14.5px; color: var(--mut); }

/* ---------------------------------------------------------------- 窄屏 */

@media (max-width: 760px) {
  .date { grid-template-columns: 68px 1fr; gap: 18px; }
  .date__cta { grid-column: 1 / -1; margin-top: 6px; }
  .date__day { font-size: 34px; }
  .pastlist li { grid-template-columns: 52px 1fr; gap: 14px; }
  .pastlist__ven { grid-column: 2; text-align: left; }
  .press { text-align: left; }
}

/* PDF 简历下载按钮 */
.cv__download { margin-top: 22px; }
