/* ============================================================
   史佳琦 · 2026 年中汇报 — Apple-grade single page
   ============================================================ */

:root {
  --bg: #ffffff;
  --bg-gray: #f5f5f7;
  --ink: #1d1d1f;
  --ink-2: #6e6e73;
  --ink-3: #86868b;
  --line: rgba(0, 0, 0, 0.08);
  --dark: #0b0b0f;
  --dark-2: #141419;
  --dark-ink: #f5f5f7;
  --dark-ink-2: #a1a1a6;
  --accent: #2f5cff;
  --radius: 20px;
  --font: "Inter", -apple-system, BlinkMacSystemFont, "SF Pro Display",
    "PingFang SC", "Source Han Sans SC", "Noto Sans SC", "Microsoft YaHei", sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: auto; }
html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
  line-height: 1.6;
}

::selection { background: var(--ink); color: #fff; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 40px; }

/* ---------------- NAV ---------------- */
.nav {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  background: rgba(255, 255, 255, 0.72);
  border-bottom: 1px solid transparent;
  transition: border-color 0.4s, background 0.4s;
}
.nav.scrolled { border-bottom-color: var(--line); }
.nav-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 40px;
  height: 60px; display: flex; align-items: center; justify-content: space-between;
}
.nav-brand { text-decoration: none; color: var(--ink); display: flex; align-items: center; gap: 12px; }
.nav-logo { width: 22px; height: auto; filter: invert(1); opacity: 0.9; }
.nav-name { font-size: 15px; font-weight: 600; letter-spacing: 0.02em; }
.nav-sub { font-size: 12px; color: var(--ink-3); }
.nav-links { display: flex; gap: 34px; }
.nav-links a {
  font-size: 13px; color: var(--ink-2); text-decoration: none;
  transition: color 0.3s; position: relative; padding: 4px 0;
}
.nav-links a:hover { color: var(--ink); }
.nav-links a.active { color: var(--ink); font-weight: 600; }
.nav-links a.active::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -2px;
  height: 2px; background: var(--ink); border-radius: 2px;
}

/* ---------------- HERO ---------------- */
.hero {
  position: relative; min-height: 100vh;
  display: flex; flex-direction: column; justify-content: center;
  overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; pointer-events: none; }
.hero-glow {
  position: absolute; width: 120vmax; height: 120vmax;
  left: 50%; top: -30vmax; transform: translateX(-50%);
  background: radial-gradient(circle at 50% 50%,
    rgba(47, 92, 255, 0.07) 0%, rgba(47, 92, 255, 0.03) 30%, transparent 60%);
}
.hero-grain {
  position: absolute; inset: 0; opacity: 0.5; mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3CfeColorMatrix values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.04 0'/%3E%3C/filter%3E%3Crect width='120' height='120' filter='url(%23n)'/%3E%3C/svg%3E");
}
.hero-inner { position: relative; text-align: center; padding: 120px 24px 80px; }
.hero-eyebrow {
  font-size: 13px; letter-spacing: 0.32em; color: var(--ink-3);
  font-weight: 500; margin-bottom: 36px;
}
.hero-title {
  font-size: clamp(44px, 8.2vw, 108px);
  font-weight: 700; letter-spacing: -0.02em; line-height: 1.08;
}
.hero-title .line { display: block; }
.hero-lede {
  margin-top: 36px; font-size: clamp(16px, 2vw, 21px);
  color: var(--ink-2); font-weight: 400;
}
.hero-meta {
  margin-top: 56px; display: flex; justify-content: center; align-items: center;
  gap: 14px; font-size: 14px; color: var(--ink-3);
}
.hero-meta .dot { width: 3px; height: 3px; border-radius: 50%; background: var(--ink-3); }
.hero-scroll {
  position: absolute; bottom: 40px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 12px;
  font-size: 11px; letter-spacing: 0.2em; color: var(--ink-3);
}
.hero-scroll-line { width: 1px; height: 56px; background: var(--line); position: relative; overflow: hidden; }
.hero-scroll-line::after {
  content: ""; position: absolute; left: 0; top: -50%; width: 100%; height: 50%;
  background: var(--ink); animation: scrollHint 2.2s var(--ease) infinite;
}
@keyframes scrollHint { 0% { top: -50%; } 60%, 100% { top: 110%; } }

/* ---------------- SECTIONS ---------------- */
.section { padding: 160px 0; position: relative; }
.section-gray { background: var(--bg-gray); }
.section-dark-zone { background: var(--dark); color: var(--dark-ink); padding-bottom: 0; }

.section-head { margin-bottom: 96px; max-width: 760px; }
.section-index {
  display: block; font-size: 14px; font-weight: 600; letter-spacing: 0.28em;
  color: var(--ink-3); margin-bottom: 20px;
}
.section-dark-zone .section-index { color: var(--dark-ink-2); }
.section-title {
  font-size: clamp(40px, 5.6vw, 72px); font-weight: 700;
  letter-spacing: -0.02em; line-height: 1.1;
}
.section-desc { margin-top: 24px; font-size: 18px; color: var(--ink-2); }
.section-dark-zone .section-desc { color: var(--dark-ink-2); }
.works-brand { width: 130px; height: auto; margin-top: 40px; opacity: 0.85; }

/* ---------------- STATS ---------------- */
.stats-hero {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 40px; padding: 64px 0; border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.stat-big { text-align: left; }
.stat-num {
  display: block; font-size: clamp(52px, 6.4vw, 88px); font-weight: 700;
  letter-spacing: -0.03em; line-height: 1; font-variant-numeric: tabular-nums;
}
.stat-label { display: block; margin-top: 14px; font-size: 14px; color: var(--ink-2); }

.stats-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1px; background: var(--line); margin-top: 80px;
  border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden;
}
.stat-item { background: var(--bg); padding: 40px 32px; transition: background 0.4s; }
.stat-item:hover { background: var(--bg-gray); }
.stat-item-num {
  display: block; font-size: 36px; font-weight: 700; letter-spacing: -0.02em;
  font-variant-numeric: tabular-nums;
}
.stat-item-label { display: block; margin-top: 8px; font-size: 13px; color: var(--ink-2); }

/* ---------------- VALUES ---------------- */
.values { margin-top: 120px; }
.value-row {
  display: grid; grid-template-columns: 80px 1fr 1.2fr; gap: 40px;
  align-items: baseline; padding: 48px 0; border-top: 1px solid var(--line);
}
.value-row:last-child { border-bottom: 1px solid var(--line); }
.value-index { font-size: 14px; font-weight: 600; color: var(--ink-3); letter-spacing: 0.2em; }
.value-row h3 { font-size: clamp(24px, 3vw, 36px); font-weight: 700; letter-spacing: -0.01em; }
.value-row p { font-size: 16px; color: var(--ink-2); }

/* ---------------- WORKS ---------------- */
.work { padding: 120px 0 140px; border-top: 1px solid rgba(255, 255, 255, 0.08); }
.work:first-of-type { border-top: none; padding-top: 0; }
.work-head { margin-bottom: 64px; }
.work-index {
  display: block; font-size: 14px; font-weight: 600; letter-spacing: 0.28em;
  color: var(--dark-ink-2); margin-bottom: 20px;
}
.work-title { font-size: clamp(36px, 5vw, 64px); font-weight: 700; letter-spacing: -0.02em; }
.work-tagline { margin-top: 18px; font-size: 17px; color: var(--dark-ink-2); }

.work-media { margin-bottom: 72px; }
.video-frame {
  position: relative; width: 100%; aspect-ratio: 16 / 9;
  border: none; cursor: pointer; border-radius: var(--radius); overflow: hidden;
  background:
    radial-gradient(120% 140% at 20% 0%, #2a2d3a 0%, transparent 55%),
    radial-gradient(120% 160% at 85% 100%, #1c2740 0%, transparent 55%),
    linear-gradient(160deg, #17181d 0%, #0d0e12 100%);
  display: flex; align-items: center; justify-content: center;
  transition: transform 0.8s var(--ease);
}
.video-frame:hover { transform: scale(0.99); }
.video-frame img, .video-frame video {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
}
.video-hint {
  position: absolute; top: 24px; left: 28px; font-size: 12px;
  letter-spacing: 0.18em; color: rgba(255, 255, 255, 0.45);
}
.play-btn {
  position: relative; z-index: 2; width: 84px; height: 84px; border-radius: 50%;
  background: rgba(255, 255, 255, 0.1); backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.22);
  display: flex; align-items: center; justify-content: center; color: #fff;
  transition: transform 0.5s var(--ease), background 0.4s;
}
.video-frame:hover .play-btn { transform: scale(1.08); background: rgba(255, 255, 255, 0.18); }

.work-grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 56px 64px; margin-bottom: 56px;
}
.work-block h4 {
  font-size: 13px; font-weight: 600; letter-spacing: 0.22em;
  color: var(--dark-ink-2); margin-bottom: 16px;
}
.work-block p { font-size: 16px; color: var(--dark-ink); line-height: 1.75; }
.work-points { list-style: none; }
.work-points li {
  position: relative; font-size: 15px; color: var(--dark-ink);
  line-height: 1.7; padding: 10px 0 10px 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.work-points li:first-child { border-top: none; padding-top: 0; }
.work-points li::before {
  content: ""; position: absolute; left: 0; top: 19px;
  width: 6px; height: 6px; border-radius: 50%; background: var(--accent);
}
.work-points li:first-child::before { top: 9px; }
.placeholder-text { color: var(--dark-ink-2) !important; font-style: italic; opacity: 0.7; }

.work-caps { display: flex; flex-wrap: wrap; gap: 12px; }
.work-caps span {
  font-size: 13px; color: var(--dark-ink-2);
  border: 1px solid rgba(255, 255, 255, 0.16); border-radius: 999px;
  padding: 8px 18px;
}

/* ---------------- CAPABILITY MAP ---------------- */
.cap-map { border-top: 1px solid var(--line); }
.cap-row {
  display: grid; grid-template-columns: 1.1fr 1.4fr 1fr; gap: 40px;
  align-items: center; padding: 40px 0; border-bottom: 1px solid var(--line);
  transition: background 0.4s;
}
.cap-row:hover { background: var(--bg-gray); }
.cap-dir { display: flex; align-items: baseline; gap: 18px; }
.cap-num { font-size: 13px; font-weight: 600; color: var(--ink-3); letter-spacing: 0.14em; }
.cap-dir h3 { font-size: clamp(20px, 2.4vw, 28px); font-weight: 700; letter-spacing: -0.01em; }
.cap-out { display: flex; flex-wrap: wrap; gap: 10px; }
.cap-out span {
  font-size: 13px; color: var(--ink-2); background: var(--bg-gray);
  border-radius: 999px; padding: 6px 16px;
}
.cap-row:hover .cap-out span { background: #fff; }
.cap-bar { height: 3px; background: var(--line); border-radius: 3px; overflow: hidden; }
.cap-bar i {
  display: block; height: 100%; width: 0; background: var(--ink);
  border-radius: 3px; transition: width 1.4s var(--ease);
}
.cap-row.in-view .cap-bar i { width: var(--w); }

/* ---------------- PRINCIPLES ---------------- */
.principles { margin-top: 140px; }
.principles-lede {
  font-size: clamp(24px, 3.4vw, 40px); font-weight: 700; letter-spacing: -0.015em;
  max-width: 720px; margin-bottom: 80px; line-height: 1.3;
}
.principle {
  display: grid; grid-template-columns: 120px 1fr; gap: 40px;
  padding: 44px 0; border-top: 1px solid var(--line); align-items: start;
}
.principle:last-child { border-bottom: 1px solid var(--line); }
.principle-num {
  font-size: clamp(36px, 4vw, 56px); font-weight: 700; color: var(--accent);
  letter-spacing: -0.02em; line-height: 1;
}
.principle h3 { font-size: clamp(20px, 2.4vw, 28px); font-weight: 700; margin-bottom: 12px; }
.principle p { font-size: 16px; color: var(--ink-2); max-width: 640px; }

/* ---------------- TEAM ---------------- */
.team-cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: 56px; }
.team-block-title {
  font-size: 13px; font-weight: 600; letter-spacing: 0.22em;
  color: var(--ink-3); margin-bottom: 28px; text-transform: uppercase;
}
.team-list { list-style: none; }
.team-list li {
  padding: 18px 0; border-top: 1px solid var(--line); font-size: 17px; font-weight: 500;
  transition: padding-left 0.4s var(--ease);
}
.team-list li:hover { padding-left: 10px; }
.team-list.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 0 24px; }

.accordion { border-top: 1px solid var(--line); }
.acc-item { border-bottom: 1px solid var(--line); }
.acc-item summary {
  list-style: none; cursor: pointer; padding: 20px 0;
  font-size: 17px; font-weight: 500;
  display: flex; justify-content: space-between; align-items: center;
  transition: color 0.3s;
}
.acc-item summary::-webkit-details-marker { display: none; }
.acc-item summary:hover { color: var(--accent); }
.acc-item summary i {
  width: 12px; height: 12px; position: relative; flex: none;
  transition: transform 0.4s var(--ease);
}
.acc-item summary i::before, .acc-item summary i::after {
  content: ""; position: absolute; background: currentColor; border-radius: 2px;
}
.acc-item summary i::before { left: 0; top: 5px; width: 12px; height: 2px; }
.acc-item summary i::after { left: 5px; top: 0; width: 2px; height: 12px; transition: transform 0.4s var(--ease); }
.acc-item[open] summary i::after { transform: scaleY(0); }
.acc-body { padding: 0 0 22px; font-size: 15px; color: var(--ink-2); line-height: 1.7; }

.team-building { margin-top: 96px; }
.tb-strip {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
}
.tb-item {
  background: var(--bg); border-radius: var(--radius); padding: 28px 24px;
  border: 1px solid var(--line); transition: transform 0.5s var(--ease), box-shadow 0.5s;
}
.tb-item:hover { transform: translateY(-6px); box-shadow: 0 18px 40px rgba(0, 0, 0, 0.07); }
.tb-season {
  display: inline-block; font-size: 11px; letter-spacing: 0.2em; color: var(--ink-3);
  border: 1px solid var(--line); border-radius: 999px; padding: 4px 12px; margin-bottom: 16px;
}
.tb-item h4 { font-size: 16px; font-weight: 600; }

/* 有照片时自动切换为照片卡（:has 检测，无照片保持文字卡） */
.tb-item:has(.tb-photo) {
  position: relative; padding: 0; border: none;
  aspect-ratio: 4 / 3; overflow: hidden;
}
.tb-photo {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; transition: transform 0.8s var(--ease);
}
.tb-item:has(.tb-photo):hover .tb-photo { transform: scale(1.05); }
.tb-item:has(.tb-photo) .tb-content {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 56px 20px 18px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent);
}
.tb-item:has(.tb-photo) .tb-season {
  color: rgba(255, 255, 255, 0.9); border-color: rgba(255, 255, 255, 0.4);
}
.tb-item:has(.tb-photo) h4 { color: #fff; }

/* ---------------- ROADMAP ---------------- */
.roadmap { position: relative; display: grid; grid-template-columns: repeat(3, 1fr); gap: 56px; padding-top: 48px; }
.road-line {
  position: absolute; top: 0; left: 0; right: 0; height: 2px; background: var(--line);
}
.road-line i { display: block; height: 100%; width: 0; background: var(--ink); transition: width 1.6s var(--ease); }
.roadmap.in-view .road-line i { width: 100%; }
.road-track { padding-top: 32px; position: relative; }
.road-track::before {
  content: ""; position: absolute; top: -53px; left: 0; width: 10px; height: 10px;
  border-radius: 50%; background: var(--ink);
}
.road-tag {
  font-size: 12px; font-weight: 600; letter-spacing: 0.24em; color: var(--accent);
  text-transform: uppercase;
}
.road-track h3 { font-size: 28px; font-weight: 700; margin: 12px 0 24px; }
.road-track ul { list-style: none; }
.road-track li {
  padding: 14px 0; border-top: 1px solid var(--line);
  font-size: 15px; color: var(--ink-2);
}

/* ---------------- FOOTER ---------------- */
.footer { background: var(--dark); color: var(--dark-ink); padding: 140px 0 80px; }
.footer-big {
  font-size: clamp(32px, 5vw, 64px); font-weight: 700; letter-spacing: -0.02em;
  line-height: 1.2; text-align: center; margin-bottom: 100px;
}
.footer-meta {
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 16px;
  padding-top: 32px; border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 13px; color: var(--dark-ink-2);
}

/* ---------------- MODALS ---------------- */
.video-modal, .lightbox {
  position: fixed; inset: 0; z-index: 200; display: none;
  align-items: center; justify-content: center;
}
.video-modal.open, .lightbox.open { display: flex; }
.video-modal-backdrop, .lightbox-backdrop {
  position: absolute; inset: 0; background: rgba(0, 0, 0, 0.82);
  backdrop-filter: blur(10px);
}
.video-modal-box {
  position: relative; width: min(1100px, 92vw); z-index: 2;
  border-radius: var(--radius); overflow: hidden; background: #000;
}
.video-modal-box video { width: 100%; display: block; aspect-ratio: 16/9; }
.video-modal-empty {
  position: absolute; inset: 0; display: none; align-items: center; justify-content: center;
  color: rgba(255, 255, 255, 0.6); font-size: 15px; letter-spacing: 0.06em;
  background: linear-gradient(160deg, #17181d, #0d0e12);
}
.video-modal-empty.show { display: flex; }
.video-modal-close, .lightbox-close {
  position: absolute; top: 14px; right: 16px; z-index: 3;
  width: 40px; height: 40px; border-radius: 50%; border: none; cursor: pointer;
  background: rgba(255, 255, 255, 0.12); color: #fff; font-size: 22px; line-height: 1;
  transition: background 0.3s;
}
.video-modal-close:hover, .lightbox-close:hover { background: rgba(255, 255, 255, 0.25); }
.lightbox img {
  position: relative; z-index: 2; max-width: 92vw; max-height: 88vh;
  border-radius: 12px;
}

/* ---------------- REVEAL ---------------- */
[data-reveal] { opacity: 0; transform: translateY(36px); }
.no-js [data-reveal], [data-reveal].revealed { opacity: 1; transform: none; }

/* ---------------- RESPONSIVE ---------------- */
@media (max-width: 1024px) {
  .container { padding: 0 28px; }
  .stats-hero { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .cap-row { grid-template-columns: 1fr; gap: 18px; }
  .cap-bar { display: none; }
  .team-cols { grid-template-columns: 1fr; gap: 64px; }
  .tb-strip { grid-template-columns: repeat(2, 1fr); }
  .roadmap { grid-template-columns: 1fr; gap: 48px; }
  .road-line, .road-track::before { display: none; }
  .road-track { border-top: 2px solid var(--ink); padding-top: 28px; }
  .value-row { grid-template-columns: 48px 1fr; }
  .value-row p { grid-column: 2; }
}
@media (max-width: 640px) {
  .section { padding: 100px 0; }
  .nav-links { gap: 18px; }
  .nav-sub { display: none; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .stat-item { padding: 28px 20px; }
  .work { padding: 80px 0 100px; }
  .work-grid { grid-template-columns: 1fr; gap: 40px; }
  .tb-strip { grid-template-columns: 1fr 1fr; }
  .principle { grid-template-columns: 1fr; gap: 12px; }
  .team-list.two-col { grid-template-columns: 1fr; }
  .footer-meta { flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  [data-reveal] { opacity: 1; transform: none; }
}

/* ---------------- SERIES MATRIX ---------------- */
.series { margin-top: 72px; }
.series-title {
  font-size: 13px; font-weight: 600; letter-spacing: 0.22em;
  color: var(--dark-ink-2); margin-bottom: 24px;
}
.series-strip {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
}
.mini-card { aspect-ratio: 16 / 9; border-radius: 14px; }
.mini-card .play-btn.small {
  width: 48px; height: 48px;
}
.mini-label {
  position: absolute; left: 16px; bottom: 14px; z-index: 2;
  font-size: 12px; letter-spacing: 0.08em; color: rgba(255, 255, 255, 0.9);
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.6);
}
.mini-card::after {
  content: ""; position: absolute; inset: auto 0 0 0; height: 50%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.45), transparent);
  pointer-events: none;
}

/* ---------------- WORK GALLERY ---------------- */
.work-gallery {
  margin-top: 64px; display: grid; gap: 24px;
}
.work-gallery:has(.wide) { grid-template-columns: 1fr 1fr; }
.work-gallery:has(.tall) { grid-template-columns: 1fr 1fr; max-width: 760px; }
.gallery-item { position: relative; border-radius: var(--radius); overflow: hidden; }
.gallery-item img {
  width: 100%; display: block; cursor: zoom-in;
  transition: transform 0.8s var(--ease);
}
.gallery-item:hover img { transform: scale(1.03); }
.gallery-item.wide img { aspect-ratio: 4 / 3; object-fit: cover; }
.gallery-item.tall img { aspect-ratio: 9 / 16; object-fit: cover; object-position: top; max-height: 560px; }
.gallery-item figcaption {
  position: absolute; left: 0; right: 0; bottom: 0; padding: 40px 20px 16px;
  font-size: 12px; letter-spacing: 0.08em; color: rgba(255, 255, 255, 0.85);
  background: linear-gradient(to top, rgba(0, 0, 0, 0.55), transparent);
  pointer-events: none;
}

/* ---------------- EXTRAS ---------------- */
.extras-grid {
  display: grid; grid-template-columns: 1.2fr 1fr; gap: 24px; align-items: stretch;
}
.extras-video { height: 100%; }
.extras-figure img { height: 100%; object-fit: cover; }

/* ---------------- FOOTER EXTRAS ---------------- */
.footer-logo { width: 120px; height: auto; margin: 0 auto 48px; display: block; opacity: 0.9; }
.footer-person {
  display: flex; align-items: center; justify-content: center; gap: 18px;
  margin-bottom: 80px;
}
.footer-portrait {
  width: 64px; height: 64px; border-radius: 50%; object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.2);
}
.footer-person-text { display: flex; flex-direction: column; gap: 2px; text-align: left; }
.footer-person-text strong { font-size: 16px; font-weight: 600; }
.footer-person-text span { font-size: 13px; color: var(--dark-ink-2); }

/* ---------------- RESPONSIVE (media additions) ---------------- */
@media (max-width: 1024px) {
  .series-strip { grid-template-columns: 1fr 1fr; }
  .extras-grid { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .series-strip { grid-template-columns: 1fr; }
  .work-gallery:has(.wide), .work-gallery:has(.tall) { grid-template-columns: 1fr; max-width: none; }
  .gallery-item.tall img { max-height: 480px; }
}
