:root {
  --paper: #f7f5f0;
  --white: #ffffff;
  --ink: #171716;
  --muted: #696861;
  --line: #d8d5cd;
  --plum: #51263f;
  --green: #4e7653;
  --blue: #4f78ef;
  --yellow: #e4bd3e;
  --lilac: #8d67a7;
  --pad: clamp(24px, 4vw, 68px);
  --header-h: 72px;
  --content: 1440px;
  --category-accent: var(--plum);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, Arial, "PingFang SC", "Microsoft YaHei", sans-serif;
  font-size: 16px;
  line-height: 1.65;
  letter-spacing: 0;
  -webkit-font-smoothing: antialiased;
}
body, button, a { letter-spacing: 0; }
a { color: inherit; text-decoration: none; }
img { display: block; width: 100%; max-width: 100%; height: auto; }
picture.responsive-picture { width: 100%; display: block; }
.project-media picture.responsive-picture { height: 100%; }
.responsive-picture.is-deferred { background: #efeee9; }
figure, h1, h2, h3, p, dl, dd, ul { margin: 0; }
button { font: inherit; }
.skip-link { position: fixed; top: 10px; left: 10px; z-index: 1000; padding: 10px 14px; color: #fff; background: var(--plum); transform: translateY(-150%); }
.skip-link:focus { transform: translateY(0); }

/* Shared header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-h);
  padding: 0 var(--pad);
  display: grid;
  grid-template-columns: minmax(220px, 1fr) auto;
  align-items: center;
  color: var(--ink);
  background: rgba(247, 245, 240, .96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
}
.wordmark { display: flex; align-items: center; gap: 12px; width: fit-content; line-height: 1; }
.wordmark span { width: 38px; height: 38px; display: grid; place-items: center; color: #fff; background: var(--plum); font-size: 12px; font-weight: 700; }
.wordmark b { font-size: 15px; font-weight: 700; }
.wordmark small { color: var(--muted); font-size: 10px; }
.main-nav, .compact-nav { display: flex; align-items: center; gap: clamp(20px, 2.4vw, 38px); }
.main-nav a, .compact-nav a, .back-link { position: relative; font-size: 13px; font-weight: 600; }
.main-nav a::after, .compact-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 2px;
  background: var(--plum);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .2s ease;
}
.main-nav a:hover::after, .main-nav a.current::after, .compact-nav a:hover::after, .compact-nav a.active::after { transform: scaleX(1); }
.menu-toggle { display: none; }
.inner-header { grid-template-columns: minmax(210px, 1fr) auto minmax(300px, 1fr); }
.inner-header .back-link { justify-self: center; color: var(--muted); }
.inner-header .compact-nav { justify-self: end; }
.inner-header .header-contact { justify-self: end; padding-bottom: 2px; border-bottom: 1px solid currentColor; font-size: 13px; font-weight: 600; }
.work-main-header { grid-template-columns: minmax(210px, 1fr) auto; }
.work-main-header .main-nav { justify-self: end; }

/* Home hero */
.home-hero {
  min-height: min(700px, calc(100vh - var(--header-h)));
  display: grid;
  grid-template-columns: 1.22fr .78fr;
  background: var(--white);
  border-bottom: 1px solid var(--line);
}
.hero-copy {
  min-height: inherit;
  padding: clamp(48px, 5vw, 76px) var(--pad) clamp(30px, 3vw, 46px);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.hero-identity { display: grid; grid-template-columns: auto 1fr; gap: 4px 18px; align-items: baseline; }
.hero-identity span { grid-row: span 2; color: var(--plum); font-size: 18px; font-weight: 700; }
.hero-identity p { color: var(--ink); font-size: 13px; font-weight: 600; }
.hero-identity b { color: var(--muted); font-size: 11px; font-weight: 600; }
.hero-copy h1 { max-width: 760px; margin-top: 30px; font-size: clamp(34px, 2.85vw, 42px); font-weight: 500; line-height: 1.42; }
.hero-heading-mobile { display: none; }
.hero-copy > i { width: 28px; height: 2px; margin-top: 24px; background: var(--plum); }
.hero-summary { max-width: 680px; margin-top: 20px; }
.hero-summary p { color: var(--muted); font-size: 14px; line-height: 1.8; }
.hero-capabilities { margin-top: 18px; display: flex; gap: 0; color: var(--ink); font-size: 11px; font-weight: 700; }
.hero-capabilities span { padding: 0 14px; border-left: 1px solid var(--line); }
.hero-capabilities span:first-child { padding-left: 0; border-left: 0; }
.hero-actions { margin-top: 26px; display: flex; gap: 10px; }
.hero-actions a { min-height: 42px; padding: 0 18px; display: inline-flex; align-items: center; justify-content: center; border: 1px solid var(--plum); font-size: 12px; font-weight: 700; }
.hero-actions .primary-action { color: #fff; background: var(--plum); }
.hero-actions .secondary-action { color: var(--plum); background: transparent; }
.hero-actions a:hover, .hero-actions a:focus-visible { color: #fff; background: var(--ink); border-color: var(--ink); outline: 0; }
.hero-meta { width: 100%; margin-top: auto; padding-top: 18px; display: flex; align-items: center; gap: 10px; border-top: 1px solid var(--line); font-size: 11px; }
.hero-meta > span { color: var(--green); font-size: 9px; }
.hero-meta p { color: var(--muted); }
.hero-meta b { font-weight: 700; }
.hero-meta em { margin-left: auto; color: var(--muted); font-size: 10px; font-style: normal; }
.hero-signature {
  min-height: inherit;
  padding: clamp(36px, 4.5vw, 64px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: var(--plum);
}
.signature-mark { width: min(220px, 56%); aspect-ratio: 1; display: flex; align-items: center; justify-content: center; gap: 8px; border: 1px solid rgba(255,255,255,.5); }
.signature-mark span, .signature-mark i { font-size: clamp(46px, 5vw, 72px); font-style: normal; font-weight: 300; line-height: 1; }
.hero-signature > p { margin-top: 26px; font-size: 12px; font-weight: 700; }
.hero-signature > small { margin-top: 8px; color: #d9bdcb; font-size: 9px; }

/* Shared sections */
.selected-work, .about-section, .experience-section, .project-section, .archive-section, .real-gallery, .case-story, .case-development { padding: clamp(72px, 9vw, 132px) var(--pad); }
.home-page .selected-work { padding-top: 56px; }
.section-heading, .archive-head, .application-head, .story-heading {
  max-width: var(--content);
  margin: 0 auto clamp(42px, 5vw, 72px);
  display: grid;
  grid-template-columns: 1fr minmax(320px, .9fr) auto;
  gap: 32px;
  align-items: end;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line);
}
.section-heading span, .archive-head span, .application-head > span, .story-heading > span, .list-heading > span { color: var(--muted); font-size: 11px; font-weight: 700; }
.section-heading h2, .archive-head h2, .story-heading h2, .list-heading h2 { margin-top: 9px; font-size: clamp(32px, 3vw, 46px); font-weight: 600; line-height: 1.15; }
.section-heading > p, .archive-head > p, .application-head > p, .story-heading > p { color: var(--muted); font-size: 14px; line-height: 1.8; }
.section-heading > a { padding-bottom: 5px; border-bottom: 1px solid currentColor; font-size: 13px; font-weight: 700; white-space: nowrap; }

/* Project cards */
.selected-grid, .work-project-grid, .project-grid { max-width: var(--content); margin: 0 auto; display: grid; }
.home-page .selected-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.home-page .featured-project-card { min-width: 0; display: flex; flex-direction: column; color: var(--ink); background: #fff; border: 1px solid var(--line); }
.home-page .featured-project-card .project-media { min-height: 0; height: auto; aspect-ratio: 4 / 3; }
.home-page .featured-project-card .project-media img { object-fit: cover; }
.home-page .featured-project-info { min-height: 390px; padding: 24px; display: flex; flex-direction: column; }
.home-page .featured-project-info header { display: flex; align-items: center; justify-content: space-between; gap: 18px; }
.home-page .featured-project-info header span { color: var(--plum); font-size: 10px; font-weight: 700; }
.home-page .featured-project-info header i { color: var(--muted); font-size: 10px; font-style: normal; }
.home-page .featured-project-info h3 { margin-top: 24px; font-size: clamp(23px, 2vw, 30px); font-weight: 600; line-height: 1.18; }
.home-page .featured-project-info > small { min-height: 34px; margin-top: 9px; color: var(--muted); font-size: 10px; line-height: 1.6; }
.home-page .featured-project-info > p { margin-top: 14px; color: var(--muted); font-size: 12px; line-height: 1.7; }
.home-page .featured-project-info dl { margin-top: 20px; padding-top: 16px; display: grid; gap: 10px; border-top: 1px solid var(--line); }
.home-page .featured-project-info dl div { display: grid; grid-template-columns: 60px 1fr; gap: 10px; }
.home-page .featured-project-info dt { color: var(--muted); font-size: 9px; }
.home-page .featured-project-info dd { font-size: 10px; line-height: 1.55; }
.home-page .featured-project-info footer { margin-top: auto; padding-top: 18px; display: flex; justify-content: space-between; gap: 18px; border-top: 1px solid var(--line); }
.home-page .featured-project-info footer b { font-size: 10px; white-space: nowrap; }
.home-page .featured-project-info footer span { color: var(--plum); font-size: 14px; }
.home-page .featured-project-card:hover .project-media img { transform: scale(1.018); }
.real-project-card { position: relative; display: grid; color: var(--ink); }
.selected-grid .real-project-card { min-height: 380px; grid-template-columns: minmax(260px, .72fr) minmax(0, 1.55fr); grid-template-areas: "info media"; gap: clamp(26px, 4vw, 64px); align-items: stretch; border-bottom: 1px solid var(--line); }
.selected-grid .real-project-card:nth-child(even) { grid-template-columns: minmax(260px, .72fr) minmax(0, 1.55fr); grid-template-areas: "info media"; }
.project-media { grid-area: media; position: relative; aspect-ratio: 16 / 10; overflow: hidden; background: #e8e5dd; }
.project-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .45s cubic-bezier(.2,.7,.2,1); }
.real-project-card:hover .project-media img { transform: scale(1.018); }
.real-project-info { grid-area: info; align-self: stretch; display: flex; flex-direction: column; justify-content: center; }
.real-project-info > span { color: var(--muted); font-size: 11px; font-weight: 700; }
.real-project-info h2 { margin-top: 16px; font-size: clamp(29px, 3.1vw, 48px); font-weight: 600; line-height: 1.1; }
.real-project-info > b { width: fit-content; margin-top: 24px; padding-bottom: 5px; border-bottom: 1px solid var(--ink); font-size: 11px; }
.real-project-info dl { margin-top: auto; padding-top: 26px; display: grid; gap: 18px; border-top: 1px solid var(--line); }
.real-project-info dl div { display: grid; grid-template-columns: 86px 1fr; gap: 12px; }
.real-project-info dt { color: var(--muted); font-size: 10px; }
.real-project-info dd { font-size: 13px; line-height: 1.65; }
.project-status { position: absolute; top: 14px; right: 14px; z-index: 2; padding: 7px 10px; color: #fff; background: rgba(23,23,22,.78); font-size: 10px; }
.selected-grid .project-status { display: none; }
.selected-grid .real-project-card .project-media { min-height: 0; height: clamp(380px, 40vw, 520px); aspect-ratio: auto; }
.selected-grid .real-project-info { padding: 34px 0; }
.selected-grid .real-project-card:nth-child(1) .real-project-info { color: var(--plum); }
.selected-grid .real-project-card:nth-child(2) .real-project-info { color: var(--green); }
.selected-grid .real-project-card:nth-child(3) .real-project-info { color: #365cc4; }
.selected-grid .real-project-card:nth-child(n) .real-project-info dd { color: var(--ink); }
.selected-grid .real-project-card:nth-child(n) .real-project-info > span,
.selected-grid .real-project-card:nth-child(n) .real-project-info dt { color: var(--muted); }

/* Disciplines */
.discipline-section { padding: clamp(72px, 9vw, 132px) 0 0; color: var(--ink); background: var(--white); border-top: 1px solid var(--line); }
.discipline-section .section-heading { margin-right: var(--pad); margin-left: var(--pad); }
.light-heading span, .light-heading > p { color: var(--muted); }
.discipline-grid { display: grid; grid-template-columns: repeat(5, 1fr); }
.discipline-grid a { min-height: 190px; padding: 24px; display: flex; flex-direction: column; color: #fff; transition: filter .2s ease; }
.discipline-grid a:hover { filter: brightness(1.06); }
.discipline-grid span { font-size: 12px; font-weight: 700; }
.discipline-grid h3 { margin: auto 0 4px; font-size: clamp(20px, 1.8vw, 27px); font-weight: 600; }
.discipline-grid p { min-height: 50px; color: rgba(255,255,255,.78); font-size: 12px; }
.discipline-grid b { margin-top: 28px; font-size: 10px; }
.tone-plum { background: var(--plum); }
.tone-green { background: var(--green); }
.tone-blue { background: var(--blue); }
.tone-yellow { color: var(--ink) !important; background: var(--yellow); }
.tone-yellow p { color: rgba(23,23,22,.72) !important; }
.tone-lilac { background: var(--lilac); }

/* About and experience */
.about-section { background: var(--paper); border-top: 1px solid var(--line); }
.about-profile { max-width: var(--content); margin: 0 auto; display: grid; grid-template-columns: .72fr 1.28fr; gap: clamp(48px, 7vw, 108px); }
.about-copy { font-size: 15px; line-height: 1.9; }
.about-copy p + p { margin-top: 20px; }
.career-list { margin: 0; padding: 0; list-style: none; border-top: 1px solid var(--line); }
.career-list li { padding: 24px 0; display: grid; grid-template-columns: 116px 1fr; gap: 24px; border-bottom: 1px solid var(--line); }
.career-list time { color: var(--plum); font-size: 11px; font-weight: 700; }
.career-list h3 { font-size: 18px; font-weight: 600; line-height: 1.35; }
.career-list b { display: block; margin-top: 5px; color: var(--muted); font-size: 11px; }
.career-list p { margin-top: 12px; color: var(--muted); font-size: 12px; line-height: 1.75; }
.experience-section { background: var(--white); }
.brand-list { max-width: var(--content); margin: 0 auto; padding: 0; display: grid; grid-template-columns: repeat(3, 1fr); list-style: none; border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.brand-list li { min-height: 116px; padding: 22px; display: flex; flex-direction: column; justify-content: flex-end; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.brand-list b { font-size: 21px; font-weight: 600; }
.brand-list small { margin-top: 4px; color: var(--muted); font-size: 10px; }
.experience-note { max-width: var(--content); margin: 15px auto 0; color: var(--muted); font-size: 11px; }

/* Contact */
.contact-section { padding: clamp(70px, 9vw, 128px) var(--pad) 24px; display: grid; grid-template-columns: 1.35fr .65fr; gap: clamp(48px, 8vw, 140px); color: #fff; background: var(--plum); }
.contact-section > div > span { color: #dfb9ca; font-size: 11px; font-weight: 700; }
.contact-section h2 { max-width: 760px; margin-top: 22px; font-size: clamp(36px, 4vw, 58px); font-weight: 500; line-height: 1.2; }
.contact-copy { align-self: end; }
.contact-copy p { max-width: 430px; margin-bottom: 28px; color: rgba(255,255,255,.72); }
.contact-copy a { display: block; width: fit-content; margin-top: 9px; padding-bottom: 3px; border-bottom: 1px solid rgba(255,255,255,.58); }
.contact-section footer { grid-column: 1 / -1; margin-top: 82px; padding-top: 18px; display: grid; grid-template-columns: 1fr auto 1fr; border-top: 1px solid rgba(255,255,255,.25); color: rgba(255,255,255,.68); font-size: 10px; }
.contact-section footer a { justify-self: end; }

/* Work index */
.index-intro { max-width: var(--content); margin: 0 auto; padding: clamp(58px, 6vw, 86px) var(--pad) 48px; }
.index-intro > span { color: var(--muted); font-size: 11px; font-weight: 700; }
.index-intro > div { margin-top: 32px; display: grid; grid-template-columns: 1fr minmax(300px, .72fr); gap: 44px; align-items: end; }
.index-intro h1 { font-size: clamp(46px, 5.2vw, 70px); font-weight: 600; line-height: 1; }
.index-intro p { color: var(--muted); font-size: 15px; line-height: 1.85; }
.work-filter-heading { max-width: var(--content); margin: 0 auto; padding: 0 var(--pad) 14px; display: flex; align-items: baseline; justify-content: space-between; gap: 24px; }
.work-filter-heading span { color: var(--plum); font-size: 10px; font-weight: 700; letter-spacing: .08em; }
.work-filter-heading p { color: var(--muted); font-size: 11px; }
.work-category-nav { max-width: var(--content); margin: 0 auto; padding: 0 var(--pad) 30px; display: flex; flex-wrap: wrap; gap: 8px; border-bottom: 1px solid var(--line); }
.work-category-nav a, .work-category-nav .current { min-height: 46px; padding: 0 17px; display: inline-flex; align-items: center; justify-content: center; border: 1px solid var(--line); font-size: 12px; font-weight: 600; }
.work-category-nav a:hover, .work-category-nav a:focus-visible { color: #fff; background: var(--plum); border-color: var(--plum); outline: 0; }
.work-category-nav .current { color: #fff; background: var(--ink); border-color: var(--ink); }
.work-category-nav b { margin-left: 8px; color: var(--muted); font-size: 10px; }
.work-category-nav .current b { color: rgba(255,255,255,.58); }
.work-category-nav a.current:hover, .work-category-nav a.current:focus-visible { color: #fff; background: var(--ink); border-color: var(--ink); }
.work-category-nav a[data-work-filter="poster"] { margin-left: 0; background: #eeeae2; border-color: #d5cfc4; }
.work-category-nav a[data-work-filter="poster"].current { color: #fff; background: var(--ink); border-color: var(--ink); }
.work-group[hidden], .poster-index-entry[hidden], .work-poster-archive[hidden] { display: none; }
.work-browser { padding: clamp(48px, 5vw, 72px) var(--pad) clamp(72px, 8vw, 112px); }
.work-group + .work-group { margin-top: clamp(78px, 8vw, 118px); }
.work-group-heading { max-width: var(--content); margin: 0 auto 38px; padding-bottom: 22px; display: grid; grid-template-columns: .55fr 1fr 1fr; gap: 28px; align-items: end; border-bottom: 1px solid var(--line); }
.work-group-heading > span { color: var(--muted); font-size: 10px; font-weight: 700; }
.work-group-heading h2 { font-size: clamp(30px, 3vw, 44px); font-weight: 600; line-height: 1.12; }
.work-group-heading p { max-width: 560px; color: var(--muted); font-size: 13px; line-height: 1.8; }
.list-heading { max-width: var(--content); margin: 0 auto 42px; padding-bottom: 20px; display: grid; grid-template-columns: 1fr 1fr auto; gap: 20px; align-items: end; border-bottom: 1px solid var(--line); }
.list-heading p { color: var(--muted); font-size: 13px; }
.work-project-grid, .project-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 58px 24px; }
.work-project-grid .real-project-card, .project-grid .real-project-card { display: flex; flex-direction: column; background: var(--white); border: 1px solid var(--line); }
.work-project-grid .project-media, .project-grid .project-media { aspect-ratio: 16 / 9; }
.work-project-grid .project-media img, .project-grid .project-media img { object-fit: contain; }
.work-project-grid .media-yexu, .project-grid .media-yexu,
.work-project-grid .media-all-media, .project-grid .media-all-media,
.work-project-grid .media-qf-event, .project-grid .media-qf-event { background: #111218; }
.work-project-grid .media-shanting, .project-grid .media-shanting,
.work-project-grid .media-petmeet, .project-grid .media-petmeet,
.work-project-grid .media-fdl, .project-grid .media-fdl,
.work-project-grid .media-changchun-warmth, .project-grid .media-changchun-warmth,
.work-project-grid .media-kongkong, .project-grid .media-kongkong { background: #f1eee7; }
.work-project-grid .real-project-info, .project-grid .real-project-info { min-height: 310px; padding: 22px; display: flex; flex-direction: column; justify-content: flex-start; }
.work-project-grid .real-project-info header, .project-grid .real-project-info header { display: flex; align-items: center; justify-content: space-between; gap: 16px; color: var(--muted); font-size: 10px; }
.work-project-grid .real-project-info header span, .project-grid .real-project-info header span { color: var(--plum); font-weight: 700; }
.work-project-grid .real-project-info header i, .project-grid .real-project-info header i { font-style: normal; }
.work-project-grid .real-project-info h2, .project-grid .real-project-info h2 { margin: 20px 0 0; font-size: clamp(24px, 2.4vw, 34px); }
.work-project-grid .project-capability, .project-grid .project-capability { margin-top: 8px; color: var(--muted); font-size: 11px; }
.work-project-grid .real-project-info dl, .project-grid .real-project-info dl { margin-top: 20px; padding-top: 16px; display: grid; gap: 10px; border-top: 1px solid var(--line); }
.work-project-grid .real-project-info dl div, .project-grid .real-project-info dl div { display: grid; grid-template-columns: 68px 1fr; gap: 12px; }
.work-project-grid .real-project-info dt, .project-grid .real-project-info dt { color: var(--muted); font-size: 9px; }
.work-project-grid .real-project-info dd, .project-grid .real-project-info dd { font-size: 11px; line-height: 1.65; }
.work-project-grid .real-project-info footer, .project-grid .real-project-info footer { margin-top: auto; padding-top: 16px; display: flex; align-items: center; justify-content: space-between; border-top: 1px solid var(--line); }
.work-project-grid .real-project-info footer b, .project-grid .real-project-info footer b { font-size: 11px; }
.work-project-grid .real-project-info footer span, .project-grid .real-project-info footer span { color: var(--plum); }
.poster-index-entry { max-width: var(--content); margin: 100px auto 0; display: grid; grid-template-columns: .72fr 1.28fr; background: #efe9d7; }
.poster-index-entry > div { padding: clamp(30px, 4vw, 62px); display: flex; flex-direction: column; }
.poster-index-entry span { color: var(--muted); font-size: 10px; font-weight: 700; }
.poster-index-entry h2 { max-width: 360px; margin-top: 30px; font-size: clamp(30px, 3.4vw, 48px); line-height: 1.12; }
.poster-index-entry p { max-width: 430px; margin-top: 24px; color: var(--muted); }
.poster-index-entry b { margin-top: auto; font-size: 12px; }
.poster-index-entry figure { min-height: 470px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--line); overflow: hidden; }
.poster-index-entry figure img { height: 100%; object-fit: cover; }
.work-poster-archive { max-width: var(--content); margin: 0 auto; }
.index-contact { padding: 40px var(--pad); display: flex; justify-content: space-between; gap: 24px; color: #fff; background: var(--green); }
.index-contact a { font-weight: 700; }
.inner-footer { padding: 22px var(--pad); display: grid; grid-template-columns: 1fr auto 1fr; gap: 20px; align-items: center; border-top: 1px solid var(--line); font-size: 11px; }
.inner-footer p { color: var(--muted); }
.inner-footer > a:last-child { justify-self: end; }

/* Category */
.category-tabs { padding: 20px var(--pad); display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 8px; background: var(--paper); border-bottom: 1px solid var(--line); }
.category-tabs a { min-height: 44px; padding: 0 12px; display: grid; place-items: center; border: 1px solid var(--line); font-size: 12px; font-weight: 600; text-align: center; }
.category-tabs a:hover, .category-tabs a:focus-visible, .category-tabs a.active { color: #fff; background: var(--category-accent); border-color: var(--category-accent); outline: 0; }
.category-hero { --category-bg: color-mix(in srgb, var(--category-accent) 13%, var(--paper)); min-height: 300px; padding: clamp(44px, 5vw, 64px) var(--pad); display: grid; grid-template-columns: 72px 1.1fr .9fr; gap: clamp(28px, 5vw, 68px); align-items: end; background: var(--category-bg); border-bottom: 6px solid var(--category-accent); }
.category-count { align-self: start; display: flex; align-items: baseline; gap: 6px; color: var(--category-accent); }
.category-count span { font-size: 30px; font-weight: 700; }
.category-count small { font-size: 11px; }
.category-title p { color: var(--category-accent); font-size: 12px; font-weight: 700; }
.category-title h1 { margin-top: 16px; font-size: clamp(42px, 5vw, 66px); font-weight: 600; line-height: 1; }
.category-intro > p { max-width: 540px; font-size: 17px; line-height: 1.8; }
.category-intro dl { margin-top: 34px; padding-top: 20px; display: grid; gap: 11px; border-top: 1px solid rgba(23,23,22,.2); }
.category-intro dl div { display: grid; grid-template-columns: 100px 1fr; gap: 16px; }
.category-intro dt { color: var(--muted); font-size: 10px; }
.category-intro dd { font-size: 12px; }
.project-section { background: var(--paper); }
.project-grid.single-project { grid-template-columns: minmax(0, 820px); }
.empty-projects { grid-column: 1 / -1; padding: 70px 0; color: var(--muted); border-top: 1px solid var(--line); }
.archive-section { background: var(--white); }
.archive-grid { max-width: var(--content); margin: 0 auto; display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 52px 18px; }
.archive-grid figure { min-width: 0; }
.poster-open { position: relative; width: 100%; height: auto; padding: 0; display: block; color: inherit; background: transparent; border: 0; cursor: zoom-in; }
.poster-open picture.responsive-picture { width: 100%; aspect-ratio: 9 / 16; overflow: hidden; background: #f0eee8; }
.poster-open img { width: 100%; height: 100%; aspect-ratio: auto; object-fit: contain; background: #f0eee8; }
.archive-long .poster-open img { object-fit: cover; object-position: top center; }
.poster-open > span { position: absolute; right: 10px; bottom: 10px; padding: 6px 8px; color: #fff; background: rgba(23,23,22,.76); font-size: 9px; opacity: 0; transition: opacity .2s; }
.poster-open:hover > span { opacity: 1; }
.archive-grid figcaption { margin-top: 13px; padding-top: 10px; display: grid; gap: 4px; border-top: 1px solid var(--line); }
.archive-grid figcaption span { color: var(--muted); font-size: 9px; }
.archive-grid figcaption b { font-size: 14px; font-weight: 600; }
.poster-series-archive { display: block; }
.poster-client-nav { margin-bottom: 80px; display: grid; grid-template-columns: repeat(5, 1fr); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.poster-client-nav a { min-height: 62px; padding: 0 14px; display: flex; align-items: center; gap: 12px; border-right: 1px solid var(--line); font-size: 12px; }
.poster-client-nav a:last-child { border-right: 0; }
.poster-client-nav span { color: var(--muted); font-size: 9px; }
.poster-client-nav a:hover, .poster-client-nav a:focus-visible { color: var(--plum); background: #f4f0ec; outline: 0; }
.poster-series { padding: 0 0 104px; scroll-margin-top: calc(var(--header-h) + 20px); }
.poster-series + .poster-series { padding-top: 80px; border-top: 1px solid var(--line); }
.poster-series-head { margin-bottom: 38px; display: grid; grid-template-columns: 1fr 1fr auto; gap: 30px; align-items: end; }
.poster-series-head span { color: var(--muted); font-size: 9px; font-weight: 700; }
.poster-series-head h3 { margin-top: 8px; font-size: clamp(28px, 3vw, 42px); font-weight: 600; line-height: 1.1; }
.poster-series-head small { display: block; margin-top: 7px; color: var(--muted); font-size: 9px; }
.poster-series-head p { color: var(--muted); font-size: 12px; }
.poster-series-head > b { color: var(--muted); font-size: 10px; font-weight: 600; }
.poster-series-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 46px 18px; align-items: start; }
.poster-series-grid figure { min-width: 0; }
.poster-series-grid figcaption { margin-top: 13px; padding-top: 10px; display: grid; grid-template-columns: 34px 1fr; gap: 8px; border-top: 1px solid var(--line); }
.poster-series-grid figcaption span { color: var(--muted); font-size: 9px; }
.poster-series-grid figcaption b { font-size: 13px; font-weight: 600; }
.poster-unified-archive { display: block; }
.poster-unified-meta { margin-bottom: 30px; padding: 16px 0; display: flex; justify-content: space-between; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.poster-unified-meta span, .poster-unified-meta b { color: var(--muted); font-size: 9px; font-weight: 700; letter-spacing: .08em; }
.poster-unified-grid { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 52px 18px; align-items: start; }
.poster-unified-grid figure { min-width: 0; }
.poster-unified-grid .poster-open { background: #efeee9; }
.poster-unified-grid .poster-open picture.responsive-picture { aspect-ratio: 9 / 16; }
.poster-unified-grid .poster-open img { width: 100%; height: 100%; aspect-ratio: auto; object-fit: cover; object-position: center; }
.poster-unified-grid .archive-long .poster-open img { object-position: top center; }
.poster-unified-grid figcaption { margin-top: 13px; padding-top: 11px; display: grid; grid-template-columns: 30px 1fr; gap: 8px; border-top: 1px solid var(--line); }
.poster-unified-grid figcaption > span { color: var(--muted); font-size: 9px; }
.poster-unified-grid figcaption div { min-width: 0; }
.poster-unified-grid figcaption b { display: block; font-size: 12px; font-weight: 600; line-height: 1.45; }
.poster-unified-grid figcaption small { display: block; margin-top: 5px; color: var(--muted); font-size: 9px; }

/* Poster archive: keep the route useful, but let the work lead the page. */
body[data-active-work-filter="poster"] .index-intro {
  padding-top: clamp(30px, 3.2vw, 46px);
  padding-bottom: 22px;
}
body[data-active-work-filter="poster"] .index-intro > div {
  margin-top: 13px;
  display: block;
}
body[data-active-work-filter="poster"] .index-intro h1 {
  font-size: clamp(40px, 4.2vw, 58px);
}
body[data-active-work-filter="poster"] .index-intro p,
body[data-active-work-filter="poster"] .poster-unified-meta {
  display: none;
}
body[data-active-work-filter="poster"] .work-category-nav {
  padding-bottom: 18px;
}
body[data-active-work-filter="poster"] .work-category-nav a,
body[data-active-work-filter="poster"] .work-category-nav .current {
  min-height: 40px;
  padding-right: 14px;
  padding-left: 14px;
}
body[data-active-work-filter="poster"] .work-browser {
  padding-top: 24px;
}
.category-footer { padding: 46px var(--pad); display: flex; justify-content: space-between; align-items: center; color: #fff; background: var(--category-accent); }
.category-footer > span { font-size: 10px; }
.category-footer a { display: flex; align-items: center; gap: 44px; font-size: clamp(22px, 2.5vw, 34px); }

/* Image viewer */
.image-viewer { width: 100vw; max-width: none; height: 100dvh; max-height: none; margin: 0; padding: 0; color: var(--ink); background: var(--paper); border: 0; }
.image-viewer[open] { display: grid; grid-template-rows: 58px minmax(0, 1fr); }
.image-viewer::backdrop { background: rgba(17,17,16,.86); }
.image-viewer header { padding: 0 18px; display: grid; grid-template-columns: 38px 1fr; align-items: center; gap: 16px; border-bottom: 1px solid var(--line); }
.image-viewer header strong { overflow: hidden; font-size: 12px; text-overflow: ellipsis; white-space: nowrap; }
.viewer-close { width: 36px; height: 36px; display: grid; place-items: center; color: var(--ink); background: transparent; border: 1px solid var(--line); font: 400 22px/1 Arial, sans-serif; cursor: pointer; }
.viewer-close:hover, .viewer-close:focus-visible { color: #fff; background: var(--plum); outline: 0; }
.image-viewer figure { min-height: 0; margin: 0; padding: 24px; overflow: auto; }
.image-viewer img { width: min(100%, 900px); height: auto; margin: 0 auto; display: block; object-fit: contain; }
.image-viewer figcaption { margin-top: 12px; text-align: center; font-size: 13px; }

/* Generic case study */
.case-intro { padding: clamp(70px, 8vw, 116px) var(--pad) 52px; display: grid; grid-template-columns: 110px 1.1fr .9fr; gap: clamp(30px, 5vw, 76px); align-items: end; }
.case-kicker { align-self: start; display: grid; gap: 8px; color: var(--muted); font-size: 10px; font-weight: 700; }
.case-title p { color: var(--plum); font-size: 12px; font-weight: 700; }
.case-title h1 { margin-top: 17px; font-size: clamp(44px, 5.5vw, 72px); font-weight: 600; line-height: 1.04; }
.case-summary > p { font-size: 16px; line-height: 1.9; }
.case-summary dl { margin-top: 28px; padding-top: 16px; display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px 22px; border-top: 1px solid var(--line); }
.case-summary dl div { min-width: 0; }
.case-summary dt { color: var(--muted); font-size: 9px; }
.case-summary dd { margin-top: 4px; font-size: 12px; }
.real-case-cover { position: relative; width: calc(100% - 2 * var(--pad)); max-width: var(--content); height: auto; margin: 0 auto; overflow: hidden; background: #e8e5dd; }
.real-case-cover img { width: 100%; height: auto; object-fit: contain; }
.real-case-cover figcaption { position: absolute; right: 18px; bottom: 18px; padding: 8px 10px; color: #fff; background: rgba(23,23,22,.75); font-size: 9px; }
.case-cover-crop img { object-fit: cover; object-position: top center !important; }
.case-story { background: var(--white); }
.story-heading { grid-template-columns: .55fr 1fr 1fr; }
.story-grid { max-width: var(--content); margin: 0 auto; display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); }
.story-grid article { min-height: 280px; padding: clamp(26px, 3.6vw, 52px); background: var(--paper); }
.story-grid article > span { color: var(--muted); font-size: 10px; font-weight: 700; }
.story-grid article > p { margin-top: 34px; font-size: 15px; line-height: 1.9; }
.story-grid .decision-card { grid-column: 1 / -1; min-height: 330px; color: #fff; background: var(--plum); }
.decision-card > span { color: #d8b7c6 !important; }
.decision-card h3 { max-width: 850px; margin-top: 36px; font-size: clamp(28px, 3.6vw, 52px); font-weight: 500; line-height: 1.25; }
.decision-card p { max-width: 850px; color: rgba(255,255,255,.76); }
.keyword-row { max-width: var(--content); margin: 24px auto 0; display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.keyword-row span { min-height: 88px; padding: 18px; display: flex; flex-direction: column; justify-content: space-between; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); font-size: 14px; }
.keyword-row small { color: var(--muted); font-size: 9px; }
.application-head { grid-template-columns: .55fr 1fr 1fr; }
.application-head h2 { white-space: pre-line; font-size: clamp(30px, 3.5vw, 50px); font-weight: 600; line-height: 1.2; }
.real-gallery { background: var(--paper); }
.real-gallery-grid { max-width: var(--content); margin: 0 auto; display: grid; grid-template-columns: repeat(12, 1fr); gap: 62px 20px; }
.gallery-item { grid-column: span 12; min-width: 0; }
.gallery-square { grid-column: span 4; }
.gallery-portrait { grid-column: span 5; }
.gallery-image-frame, .gallery-scroll { position: relative; width: 100%; overflow: hidden; background: #e8e5dd; }
.gallery-image-frame img { width: 100%; height: auto; object-fit: contain; }
.gallery-wide .gallery-image-frame img, .gallery-ip-third .gallery-image-frame img { aspect-ratio: 16 / 9; object-fit: contain; }
.gallery-square .gallery-image-frame img { aspect-ratio: 1 / 1; object-fit: contain; }
.gallery-portrait .gallery-image-frame img, .gallery-poster-series .gallery-image-frame img { width: 100%; max-height: none; height: auto; object-fit: contain; }
.gallery-scroll { height: min(72vh, 760px); overflow-y: auto; border: 1px solid var(--line); }
.gallery-scroll img { width: min(100%, 1180px); height: auto; margin: 0 auto; }
.viewer-bar { position: sticky; top: 0; z-index: 2; padding: 12px 14px; display: flex; align-items: center; gap: 7px; color: #fff; background: #242423; font-size: 9px; }
.viewer-bar i { width: 6px; height: 6px; border-radius: 50%; background: #777; }
.viewer-bar b { margin-left: 6px; font-weight: 500; }
.viewer-bar span { margin-left: auto; color: #aaa; }
.scroll-tools { padding: 12px 0; display: flex; justify-content: space-between; gap: 20px; color: var(--muted); font-size: 10px; }
.scroll-tools a { color: var(--ink); }
.gallery-item figcaption { margin-top: 12px; padding-top: 10px; display: grid; grid-template-columns: 48px 1fr; border-top: 1px solid var(--line); }
.gallery-item figcaption span { color: var(--muted); font-size: 9px; }
.gallery-item figcaption b { font-size: 13px; font-weight: 600; }
body[data-case-id="all-media"] .real-gallery-grid { grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 52px 18px; align-items: start; }
body[data-case-id="all-media"] .gallery-item { grid-column: auto; }
body[data-case-id="all-media"] .gallery-image-frame { aspect-ratio: 9 / 16; background: #f0eee8; }
body[data-case-id="all-media"] .gallery-image-frame img { width: 100%; height: 100%; object-fit: contain; }
body[data-case-id="all-media"] .gallery-item figcaption { grid-template-columns: 30px 1fr; gap: 8px; }
body[data-case-id="all-media"] .gallery-item figcaption b { font-size: 12px; line-height: 1.45; }
body[data-case-id="all-media"] .case-poster-open { cursor: zoom-in; }
body[data-case-id="all-media"] .case-poster-open .gallery-image-frame::after { content: "查看大图 ↗"; position: absolute; right: 10px; bottom: 10px; padding: 6px 8px; color: #fff; background: rgba(23,23,22,.76); font-size: 9px; opacity: 0; transition: opacity .2s; }
body[data-case-id="all-media"] .case-poster-open:hover .gallery-image-frame::after,
body[data-case-id="all-media"] .case-poster-open:focus-visible .gallery-image-frame::after { opacity: 1; }
body[data-case-id="all-media"] .case-poster-open:focus-visible { outline: 2px solid var(--plum); outline-offset: 4px; }
.gallery-subhead { grid-column: 1 / -1; margin: 32px 0 -18px; padding-top: 30px; display: grid; grid-template-columns: .4fr 1fr 1fr; gap: 24px; border-top: 1px solid var(--line); }
.gallery-subhead span { color: var(--muted); font-size: 10px; }
.gallery-subhead h3 { font-size: clamp(24px, 2.8vw, 38px); line-height: 1.25; }
.gallery-subhead p { color: var(--muted); font-size: 13px; line-height: 1.8; }
body[data-case-id="qf-event"] .real-gallery { color: #fff; background: #101216; }
body[data-case-id="qf-event"] .application-head { margin-bottom: 28px; }
body[data-case-id="qf-event"] .application-head > span { color: #ffca28; }
body[data-case-id="qf-event"] .application-head > p { color: rgba(255,255,255,.62); }
body[data-case-id="qf-event"] .qf-chapter-gallery { display: block; }
.qf-gallery-chapter { padding: 72px 0 94px; border-top: 1px solid rgba(255,255,255,.28); }
.qf-gallery-chapter:first-child { padding-top: 44px; }
.qf-chapter-head { margin-bottom: 38px; display: grid; grid-template-columns: .34fr 1fr .8fr; gap: 36px; align-items: end; }
.qf-chapter-head > span { align-self: start; color: #ffca28; font: 700 9px/1 "Courier New", monospace; }
.qf-chapter-head h3 { max-width: 680px; color: #fff; font-size: clamp(30px, 3.2vw, 46px); font-weight: 600; line-height: 1.15; }
.qf-chapter-head p { max-width: 520px; color: rgba(255,255,255,.62); font-size: 13px; line-height: 1.85; }
.qf-segment-grid { display: grid; gap: 42px 16px; align-items: start; }
.qf-gallery-desktop .qf-segment-grid { grid-template-columns: 1fr; }
.qf-gallery-mobile .qf-segment-grid, .qf-gallery-recap .qf-segment-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.qf-segment { min-width: 0; }
.qf-segment > div { padding: 8px; overflow: hidden; background: #07070f; border: 1px solid rgba(255,255,255,.16); }
.qf-gallery-desktop .qf-segment > div { aspect-ratio: 1920 / 1500; }
.qf-gallery-mobile .qf-segment > div, .qf-gallery-recap .qf-segment > div { aspect-ratio: 750 / 1800; }
.qf-segment img { width: 100%; height: 100%; object-fit: cover; background: #14005e; }
.qf-segment figcaption { min-height: 52px; padding-top: 13px; display: grid; grid-template-columns: 52px 1fr; align-items: baseline; }
.qf-segment figcaption span { color: #ffca28; font: 700 8px/1 "Courier New", monospace; }
.qf-segment figcaption b { font-size: 12px; font-weight: 700; }
.qf-original-link { width: 100%; min-height: 64px; margin-top: 40px; padding: 0 18px; display: flex; align-items: center; justify-content: space-between; color: #fff; background: transparent; border: 1px solid rgba(255,255,255,.38); font: inherit; cursor: pointer; transition: color .25s ease, background .25s ease; }
.qf-original-link span { font-size: 12px; font-weight: 700; }
.qf-original-link b { font-size: 20px; }
.qf-original-link:hover, .qf-original-link:focus-visible { color: #101216; background: #ffca28; outline: 0; }
.qf-full-viewer { width: 100vw; max-width: none; height: 100dvh; max-height: none; margin: 0; padding: 0; color: #fff; background: #0d0d12; border: 0; }
.qf-full-viewer[open] { display: grid; grid-template-rows: 60px minmax(0, 1fr); }
.qf-full-viewer::backdrop { background: rgba(0,0,0,.84); }
.qf-full-viewer header { position: sticky; top: 0; z-index: 2; padding: 0 20px; display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 20px; background: #17171d; border-bottom: 1px solid rgba(255,255,255,.2); }
.qf-full-viewer header strong { overflow: hidden; font-size: 12px; font-weight: 700; text-overflow: ellipsis; white-space: nowrap; }
.qf-full-viewer header a { color: rgba(255,255,255,.76); font-size: 11px; }
.qf-viewer-close { width: 38px; height: 38px; display: grid; place-items: center; color: #fff; background: transparent; border: 1px solid rgba(255,255,255,.28); font: 400 22px/1 Arial, sans-serif; cursor: pointer; }
.qf-viewer-close:hover, .qf-viewer-close:focus-visible { color: #101216; background: #ffca28; outline: 0; }
.qf-viewer-canvas { min-height: 0; overflow: auto; padding: 24px; }
.qf-viewer-canvas img { width: min(100%, 1180px); height: auto; margin: 0 auto; display: block; }

/* Qianfeng / Xiaoshi launch event — a dedicated case narrative. */
.qf-event-case[hidden] { display: none; }
body[data-case-id="qf-event"] .case-page > .case-intro,
body[data-case-id="qf-event"] .case-page > .real-case-cover,
body[data-case-id="qf-event"] .case-page > .case-story,
body[data-case-id="qf-event"] .case-page > .real-gallery,
body[data-case-id="qf-event"] .case-page > .case-result { display: none; }
.qf-event-case { --qf-ink: #100b24; --qf-purple: #24104f; --qf-pink: #f448a1; --qf-blue: #00bde9; background: #f2efe9; }
.qf-event-case section { scroll-margin-top: calc(var(--header-h) + 42px); }
.qf-event-hero { color: #fff; background: #0f092a; }
.qf-event-hero figure { position: relative; margin: 0; background: #180d4d; }
.qf-event-hero figure img { width: 100%; height: auto; display: block; }
.qf-event-hero figure figcaption { position: absolute; right: var(--pad); bottom: 18px; padding: 7px 9px; background: rgba(10,6,32,.72); font-size: 8px; letter-spacing: .1em; }
.qf-event-hero-copy { max-width: var(--content); margin: 0 auto; padding: clamp(42px, 5.5vw, 82px) var(--pad); display: grid; grid-template-columns: 1.12fr .88fr; column-gap: clamp(44px, 7vw, 104px); align-items: end; }
.qf-event-hero-copy > span { grid-column: 1 / -1; margin-bottom: 34px; color: #7fe7ff; font-size: 9px; font-weight: 700; letter-spacing: .11em; }
.qf-event-hero-copy h1 { font-size: clamp(45px, 5.7vw, 78px); font-weight: 600; line-height: 1.05; }
.qf-event-hero-copy p { max-width: 560px; color: rgba(255,255,255,.72); font-size: 16px; line-height: 1.9; }
.qf-event-meaning, .qf-event-digital { padding: clamp(78px, 9vw, 132px) var(--pad); }
.qf-event-meaning > header, .qf-event-visual > header, .qf-event-live > header, .qf-event-digital > header { max-width: var(--content); margin: 0 auto clamp(42px, 5vw, 72px); display: grid; grid-template-columns: .42fr 1.05fr .65fr; gap: clamp(28px, 4.5vw, 68px); align-items: end; }
.qf-event-meaning > header span, .qf-event-digital > header span { align-self: start; color: #7953bd; font-size: 9px; font-weight: 700; letter-spacing: .08em; }
.qf-event-meaning > header h2, .qf-event-digital > header h2 { grid-column: 2 / -1; max-width: 980px; font-size: clamp(36px, 4.6vw, 64px); font-weight: 500; line-height: 1.18; }
.qf-event-facts { max-width: var(--content); margin: 0 auto; display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid #c9c4bb; border-left: 1px solid #c9c4bb; }
.qf-event-facts article { min-height: 164px; padding: 22px; display: flex; flex-direction: column; border-right: 1px solid #c9c4bb; border-bottom: 1px solid #c9c4bb; }
.qf-event-facts small { color: #7953bd; font-size: 8px; font-weight: 700; letter-spacing: .08em; }
.qf-event-facts b { margin-top: auto; font-size: 18px; }
.qf-event-facts p { margin-top: 6px; color: var(--muted); font-size: 11px; line-height: 1.55; }
.qf-event-brief { max-width: var(--content); margin: 28px auto 0; display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; background: #c9c4bb; border: 1px solid #c9c4bb; }
.qf-event-brief article { min-height: 230px; padding: clamp(28px, 3.5vw, 50px); background: #fff; }
.qf-event-brief span { color: #7953bd; font-size: 9px; font-weight: 700; }
.qf-event-brief p { margin-top: 36px; font-size: 15px; line-height: 1.9; }
.qf-event-visual { padding: clamp(82px, 9vw, 136px) var(--pad); color: #fff; background: var(--qf-purple); }
.qf-event-visual > header span, .qf-event-live > header span { align-self: start; color: #7fe7ff; font-size: 9px; font-weight: 700; letter-spacing: .08em; }
.qf-event-visual > header, .qf-event-live > header { grid-template-columns: .3fr 1.15fr .65fr; }
.qf-event-visual > header h2, .qf-event-live > header h2 { color: #fff; font-size: clamp(36px, 4.4vw, 62px); font-weight: 500; line-height: 1.17; }
.qf-event-live > header h2 { font-size: clamp(36px, 4.1vw, 56px); }
.qf-event-visual > header p, .qf-event-live > header p { color: rgba(255,255,255,.68); font-size: 13px; line-height: 1.85; }
.qf-event-visual-grid { max-width: var(--content); margin: 0 auto; display: grid; grid-template-columns: minmax(300px, .72fr) 1.28fr; gap: clamp(42px, 7vw, 108px); align-items: center; }
.qf-event-visual-grid figure { min-width: 0; margin: 0; padding: 16px; background: #140a36; border: 1px solid rgba(255,255,255,.16); }
.qf-event-visual-grid figure img { width: 100%; height: auto; display: block; }
.qf-event-visual-grid figcaption { padding-top: 14px; color: rgba(255,255,255,.6); font-size: 9px; }
.qf-event-highlights > span { color: #7fe7ff; font-size: 9px; font-weight: 700; letter-spacing: .08em; }
.qf-event-highlights ol { margin-top: 24px; padding: 0; list-style: none; border-top: 1px solid rgba(255,255,255,.24); }
.qf-event-highlights li { min-height: 126px; padding: 23px 0; display: grid; grid-template-columns: 72px 1fr; gap: 18px; align-items: center; border-bottom: 1px solid rgba(255,255,255,.24); }
.qf-event-highlights li > b { color: var(--qf-pink); font-size: 12px; }
.qf-event-highlights h3 { font-size: clamp(22px, 2.5vw, 34px); font-weight: 500; }
.qf-event-highlights p { margin-top: 7px; color: rgba(255,255,255,.58); font-size: 12px; }
.qf-event-live { padding: clamp(82px, 9vw, 136px) var(--pad); color: #fff; background: #0c0918; }
.qf-live-lead, .qf-live-grid { max-width: var(--content); margin-right: auto; margin-left: auto; }
.qf-live-lead img { width: 100%; aspect-ratio: 3 / 2; object-fit: cover; display: block; }
.qf-live-lead figcaption, .qf-live-grid figcaption { padding-top: 13px; display: grid; grid-template-columns: 42px 1fr; gap: 12px; color: rgba(255,255,255,.72); border-top: 1px solid rgba(255,255,255,.2); font-size: 11px; }
.qf-live-lead figcaption span, .qf-live-grid figcaption span { color: #7fe7ff; font-size: 9px; }
.qf-live-grid { margin-top: 70px; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 64px 20px; }
.qf-live-grid figure { min-width: 0; margin: 0; }
.qf-live-grid img { width: 100%; aspect-ratio: 3 / 2; object-fit: cover; display: block; }
.qf-event-digital > header p { color: var(--muted); font-size: 13px; line-height: 1.85; }
.qf-event-digital-grid { max-width: var(--content); margin: 0 auto; display: grid; grid-template-columns: 1.45fr .775fr .775fr; gap: 18px; align-items: stretch; }
.qf-event-digital-grid article { min-width: 0; padding: 16px; display: flex; flex-direction: column; background: #fff; border: 1px solid #d8d3c9; }
.qf-event-digital-grid article > div { overflow: hidden; background: #170b46; }
.qf-event-digital-grid article > div img { width: 100%; height: 100%; object-fit: cover; object-position: top center; display: block; }
.qf-digital-desktop > div { aspect-ratio: 1920 / 1500; }
.qf-event-digital-grid article:not(.qf-digital-desktop) > div { aspect-ratio: 750 / 1800; }
.qf-event-digital-grid article > span { margin-top: 17px; color: #7953bd; font-size: 9px; font-weight: 700; }
.qf-event-digital-grid h3 { margin-top: 8px; font-size: 16px; line-height: 1.45; }
.qf-event-digital-grid a { margin-top: auto; padding-top: 22px; color: #7953bd; font-size: 10px; font-weight: 700; }
.qf-event-value { padding: clamp(82px, 9vw, 136px) var(--pad); color: #fff; background: #24104f; }
.qf-event-value > span, .qf-event-value > h2, .qf-event-value > p, .qf-event-value > div { width: min(100%, var(--content)); margin-right: auto; margin-left: auto; }
.qf-event-value > span { display: block; color: #7fe7ff; font-size: 9px; font-weight: 700; letter-spacing: .08em; }
.qf-event-value > h2 { max-width: 1050px; margin-top: 34px; font-size: clamp(38px, 5vw, 70px); font-weight: 500; line-height: 1.16; }
.qf-event-value > p { max-width: 820px; margin-top: 34px; margin-left: max(var(--pad), calc((100% - var(--content)) / 2)); color: rgba(255,255,255,.68); font-size: 15px; line-height: 1.9; }
.qf-event-value > div { margin-top: 58px; display: grid; grid-template-columns: repeat(5, 1fr); border-top: 1px solid rgba(255,255,255,.22); border-left: 1px solid rgba(255,255,255,.22); }
.qf-event-value > div span { min-height: 112px; padding: 18px; display: flex; flex-direction: column; justify-content: space-between; border-right: 1px solid rgba(255,255,255,.22); border-bottom: 1px solid rgba(255,255,255,.22); font-size: 12px; }
.qf-event-value > div small { color: #7fe7ff; font-size: 8px; }
.case-result { padding: clamp(72px, 8vw, 118px) var(--pad); color: #fff; background: var(--green); }
.case-result > * { max-width: 900px; }
.case-result > span { font-size: 10px; }
.case-result h2 { margin-top: 32px; font-size: clamp(34px, 4.5vw, 62px); font-weight: 500; line-height: 1.2; }
.case-result p { margin-top: 28px; color: rgba(255,255,255,.76); font-size: 16px; line-height: 1.9; }
.next-case { padding: 42px var(--pad); display: flex; justify-content: space-between; align-items: center; background: var(--yellow); }
.next-case > span { font-size: 10px; }
.next-case a { display: flex; align-items: center; gap: 52px; font-size: clamp(24px, 3vw, 42px); font-weight: 600; }

/* Unsupported generic development is kept readable if future projects use it. */
.case-development[hidden] { display: none; }
.case-development { background: #eef1ee; }
.development-head { max-width: var(--content); margin: 0 auto 46px; display: grid; grid-template-columns: .5fr 1fr 1fr; gap: 24px; }
.development-head span { color: var(--muted); font-size: 10px; }
.development-head h2 { font-size: clamp(28px, 3.4vw, 46px); line-height: 1.2; }
.development-head p { color: var(--muted); font-size: 13px; line-height: 1.8; }
.development-stages, .development-system, .brand-guidelines, .season-head, .season-grid { max-width: var(--content); margin-right: auto; margin-left: auto; }

/* Responsive */
@media (max-width: 980px) {
  .inner-header { grid-template-columns: minmax(0, 1fr) auto auto; gap: 18px; }
  .inner-header .back-link { justify-self: auto; }
  .hero-copy { width: auto; }
  .section-heading, .archive-head, .application-head, .story-heading { grid-template-columns: 1fr 1fr; }
  .section-heading > a { grid-column: 2; }
  .discipline-grid { grid-template-columns: repeat(2, 1fr); }
  .discipline-grid a:last-child { grid-column: span 2; }
  .home-page .featured-project-info { min-height: 410px; padding: 20px; }
  .category-hero, .case-intro { grid-template-columns: 80px 1fr; }
  .category-intro, .case-summary { grid-column: 2; }
  .archive-grid, .poster-series-grid { grid-template-columns: repeat(3, 1fr); }
  .poster-unified-grid { grid-template-columns: repeat(4, 1fr); }
  body[data-case-id="all-media"] .real-gallery-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .gallery-square { grid-column: span 6; }
  .qf-chapter-head { grid-template-columns: .35fr 1.2fr .8fr; gap: 28px; }
  .qf-event-facts { grid-template-columns: repeat(2, 1fr); }
  .qf-event-digital-grid { grid-template-columns: 1.2fr .8fr; }
  .qf-event-digital-grid article:last-child { grid-column: 2; }
  .qf-event-value > div { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 720px) {
  .site-header.work-main-header { grid-template-columns: minmax(0, 1fr) auto; }
  :root { --header-h: 64px; --pad: 20px; }
  body { font-size: 15px; }
  .site-header { grid-template-columns: 1fr auto; }
  .site-header.inner-header { grid-template-columns: minmax(0, 1fr) auto auto; gap: 12px; }
  .inner-header .back-link, .inner-header .header-contact { font-size: 11px; white-space: nowrap; }
  .wordmark small { display: none; }
  .menu-toggle { width: 42px; height: 42px; padding: 11px; display: grid; align-content: center; gap: 6px; color: var(--ink); background: transparent; border: 0; }
  .menu-toggle span { display: block; height: 1px; background: currentColor; }
  .menu-toggle i { position: absolute; width: 1px; height: 1px; overflow: hidden; }
  .main-nav { position: fixed; top: var(--header-h); right: 0; left: 0; padding: 18px var(--pad) 24px; display: none; flex-direction: column; align-items: stretch; gap: 0; background: var(--paper); border-bottom: 1px solid var(--line); }
  .main-nav.is-open { display: flex; }
  .main-nav a { padding: 12px 0; border-bottom: 1px solid var(--line); }
  .home-hero { min-height: 0; grid-template-columns: 1fr; }
  .hero-copy { min-height: auto; width: 100%; padding: 28px var(--pad) 22px; }
  .hero-identity { grid-template-columns: 1fr; gap: 3px; }
  .hero-identity span { grid-row: auto; font-size: 17px; }
  .hero-identity p { margin-top: 5px; font-size: 12px; }
  .hero-copy h1 { margin-top: 20px; font-size: 29px; line-height: 1.42; }
  .hero-heading-desktop { display: none; }
  .hero-heading-mobile { display: inline; }
  .hero-copy > i { margin-top: 16px; }
  .hero-summary { margin-top: 14px; }
  .hero-summary p { font-size: 12px; line-height: 1.7; }
  .hero-capabilities { margin-top: 14px; }
  .hero-actions { width: 100%; margin-top: 18px; }
  .hero-actions a { flex: 1; padding: 0 10px; }
  .hero-meta { margin-top: 20px; padding-top: 12px; align-items: center; flex-wrap: wrap; }
  .hero-meta em { width: 100%; margin-left: 19px; }
  .hero-signature { min-height: 200px; padding: 18px 24px; }
  .signature-mark { width: 108px; }
  .signature-mark span, .signature-mark i { font-size: 42px; }
  .hero-signature > p { margin-top: 10px; }
  .hero-signature > small { margin-top: 4px; }
  .selected-work, .about-section, .experience-section, .project-section, .archive-section, .real-gallery, .case-story, .case-development { padding-top: 70px; padding-bottom: 70px; }
  .home-page .selected-work { padding-top: 38px; }
  .section-heading, .archive-head, .application-head, .story-heading { grid-template-columns: 1fr; gap: 16px; }
  .section-heading > a { grid-column: auto; width: fit-content; }
  .home-page .selected-grid { grid-template-columns: 1fr; gap: 18px; }
  .home-page .featured-project-info { min-height: 0; }
  .about-profile { grid-template-columns: 1fr; gap: 42px; }
  .about-copy { font-size: 14px; }
  .career-list li { grid-template-columns: 92px 1fr; gap: 14px; }
  .real-project-info h2 { font-size: 30px; }
  .real-project-info dl { margin-top: 24px; }
  .discipline-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .discipline-grid a, .discipline-grid a:last-child { grid-column: auto; min-height: 128px; padding: 15px; }
  .discipline-grid a:last-child { grid-column: span 2; }
  .discipline-grid h3 { margin-top: auto; font-size: 18px; line-height: 1.2; }
  .discipline-grid p { min-height: 0; margin-top: 5px; display: -webkit-box; overflow: hidden; font-size: 11px; line-height: 1.45; -webkit-box-orient: vertical; -webkit-line-clamp: 2; }
  .discipline-grid b { margin-top: 12px; font-size: 9px; }
  .brand-list { grid-template-columns: repeat(2, 1fr); }
  .brand-list li { min-height: 96px; }
  .contact-section { grid-template-columns: 1fr; }
  .contact-section h2 { font-size: 36px; }
  .contact-section footer { margin-top: 48px; grid-template-columns: 1fr auto; row-gap: 8px; }
  .contact-section footer span:nth-child(2) { display: none; }
  .index-intro > div { grid-template-columns: 1fr; }
  .index-intro h1 { font-size: 52px; }
  .list-heading { grid-template-columns: 1fr; }
  [data-work-page] .index-intro { padding-top: 30px; padding-bottom: 28px; }
  [data-work-page] .index-intro > div { margin-top: 16px; gap: 16px; }
  .work-filter-heading { padding-bottom: 10px; display: block; }
  .work-filter-heading p { margin-top: 6px; line-height: 1.55; }
  .work-category-nav {
    padding-bottom: 12px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
    overflow: visible;
  }
  .work-category-nav a, .work-category-nav .current { min-width: 0; min-height: 44px; padding: 0 8px; justify-content: center; font-size: 10px; text-align: center; white-space: normal; }
  .work-category-nav a[data-work-filter="poster"] { margin-left: 0; }
  .work-category-nav .current { grid-column: auto; }
  [data-work-page] .work-browser { padding-top: 28px; }
  body[data-active-work-filter="poster"] .index-intro { padding-top: 24px; padding-bottom: 18px; }
  body[data-active-work-filter="poster"] .index-intro > div { margin-top: 10px; }
  body[data-active-work-filter="poster"] .index-intro h1 { font-size: 42px; }
  body[data-active-work-filter="poster"] .work-category-nav { padding-bottom: 10px; }
  body[data-active-work-filter="poster"] .work-browser { padding-top: 20px; }
  .work-group-heading { margin-bottom: 24px; padding-bottom: 16px; grid-template-columns: 1fr; gap: 6px; }
  .work-group-heading p { margin-top: 0; line-height: 1.65; }
  .work-project-grid, .project-grid { grid-template-columns: 1fr; gap: 56px; }
  .work-project-grid .real-project-info, .project-grid .real-project-info { min-height: 300px; }
  .poster-index-entry { grid-template-columns: 1fr; margin-top: 72px; }
  .poster-index-entry > div { min-height: 360px; }
  .poster-index-entry figure { min-height: 360px; }
  .index-contact { flex-direction: column; }
  .inner-footer { grid-template-columns: 1fr auto; }
  .inner-footer p { display: none; }
  .category-hero, .case-intro { min-height: 0; grid-template-columns: 1fr; gap: 26px; }
  .category-tabs { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 7px; }
  .category-tabs a:last-child { grid-column: span 2; }
  .category-count, .case-kicker { align-self: auto; }
  .category-title h1, .case-title h1 { font-size: 48px; }
  .category-intro, .case-summary { grid-column: auto; }
  .archive-grid, .poster-series-grid, .poster-unified-grid { grid-template-columns: repeat(2, 1fr); gap: 42px 12px; }
  .poster-client-nav { margin-bottom: 56px; grid-template-columns: repeat(2, 1fr); }
  .poster-client-nav a { border-bottom: 1px solid var(--line); }
  .poster-client-nav a:nth-child(even) { border-right: 0; }
  .poster-client-nav a:last-child { grid-column: span 2; border-bottom: 0; }
  .poster-series { padding-bottom: 72px; }
  .poster-series + .poster-series { padding-top: 56px; }
  .poster-series-head { grid-template-columns: 1fr auto; gap: 16px; }
  .poster-series-head p { grid-column: 1 / -1; grid-row: 2; }
  .image-viewer figure { padding: 10px; }
  .category-footer { align-items: flex-start; }
  .category-footer a { gap: 18px; font-size: 22px; }
  .real-case-cover { width: 100%; height: auto; }
  .story-grid { grid-template-columns: 1fr; }
  .story-grid .decision-card { grid-column: auto; }
  .keyword-row { grid-template-columns: repeat(2, 1fr); }
  .real-gallery-grid { display: block; }
  .gallery-item { margin-top: 48px; }
  body[data-case-id="all-media"] .real-gallery-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 42px 12px; }
  body[data-case-id="all-media"] .gallery-item { margin-top: 0; }
  body[data-case-id="all-media"] .case-poster-open .gallery-image-frame::after { opacity: 1; }
  .gallery-subhead { margin: 70px 0 22px; grid-template-columns: 1fr; }
  .gallery-scroll { height: 64vh; }
  .scroll-tools { flex-direction: column; gap: 5px; }
  .qf-gallery-chapter { padding: 64px 0 78px; }
  .qf-gallery-chapter:first-child { padding-top: 30px; }
  .qf-chapter-head { margin-bottom: 30px; display: block; }
  .qf-chapter-head > span { display: block; margin-bottom: 18px; }
  .qf-chapter-head h3 { font-size: 30px; line-height: 1.12; }
  .qf-chapter-head p { margin-top: 18px; font-size: 12px; }
  .qf-gallery-mobile .qf-segment-grid, .qf-gallery-recap .qf-segment-grid { grid-template-columns: 1fr; }
  .qf-segment-grid { gap: 34px; }
  .qf-segment > div { padding: 5px; }
  .qf-segment figcaption { min-height: 46px; grid-template-columns: 48px 1fr; }
  .qf-original-link { margin-top: 24px; }
  .qf-full-viewer[open] { grid-template-rows: 56px minmax(0, 1fr); }
  .qf-full-viewer header { padding: 0 10px; gap: 10px; }
  .qf-full-viewer header strong { font-size: 11px; }
  .qf-full-viewer header a { font-size: 10px; }
  .qf-viewer-canvas { padding: 8px; }
  .case-result h2 { font-size: 38px; }
  .qf-event-hero figure figcaption { display: none; }
  .qf-event-hero-copy { padding-top: 34px; padding-bottom: 42px; grid-template-columns: 1fr; }
  .qf-event-hero-copy > span { margin-bottom: 20px; }
  .qf-event-hero-copy h1 { font-size: 40px; }
  .qf-event-hero-copy p { margin-top: 22px; font-size: 13px; }
  .qf-event-meaning, .qf-event-visual, .qf-event-live, .qf-event-digital, .qf-event-value { padding-top: 70px; padding-bottom: 70px; }
  .qf-event-meaning > header, .qf-event-visual > header, .qf-event-live > header, .qf-event-digital > header { margin-bottom: 34px; grid-template-columns: 1fr; gap: 16px; }
  .qf-event-meaning > header h2, .qf-event-digital > header h2 { grid-column: auto; font-size: 34px; }
  .qf-event-visual > header h2, .qf-event-live > header h2 { font-size: 34px; }
  .qf-event-facts, .qf-event-brief, .qf-event-visual-grid, .qf-live-grid, .qf-event-digital-grid { grid-template-columns: 1fr; }
  .qf-event-facts article { min-height: 132px; }
  .qf-event-brief article { min-height: 0; }
  .qf-event-visual-grid { gap: 42px; }
  .qf-event-visual-grid figure { padding: 10px; }
  .qf-event-highlights li { min-height: 104px; grid-template-columns: 48px 1fr; }
  .qf-live-grid { margin-top: 44px; gap: 42px; }
  .qf-live-lead img, .qf-live-grid img { aspect-ratio: 16 / 10; }
  .qf-event-digital-grid article:last-child { grid-column: auto; }
  .qf-event-digital-grid article:not(.qf-digital-desktop) > div { aspect-ratio: 750 / 1500; }
  .qf-event-value > h2 { font-size: 40px; }
  .qf-event-value > p { margin-left: auto; font-size: 13px; }
  .qf-event-value > div { margin-top: 40px; grid-template-columns: repeat(2, 1fr); }
  .next-case { align-items: flex-start; }
  .next-case a { gap: 16px; font-size: 22px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: .01ms !important; animation-duration: .01ms !important; }
}

/* Home / ML gallery direction */
.home-page {
  --home-black: #090909;
  --home-charcoal: #121110;
  --home-warm-white: #f3efe8;
  --home-warm-gray: #aaa29a;
  --home-copper: #c4774c;
  --home-wine: #672b3a;
  --home-sand: #d5c7b4;
  color: var(--home-warm-white);
  background: var(--home-black);
}
.home-page .site-header {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  z-index: 110;
  color: var(--home-warm-white);
  background: rgba(9, 9, 9, .18);
  border-bottom-color: rgba(255,255,255,.12);
  backdrop-filter: blur(8px);
}
.home-page .wordmark { gap: 11px; }
.home-page .wordmark span {
  width: auto;
  height: auto;
  padding-right: 12px;
  color: var(--home-warm-white);
  background: transparent;
  border-right: 1px solid rgba(255,255,255,.34);
  font-size: 13px;
  font-weight: 600;
}
.home-page .wordmark b { font-size: 15px; font-weight: 600; }
.home-page .wordmark small { color: rgba(255,255,255,.62); }
.home-page .main-nav a { color: var(--home-warm-white); font-weight: 500; }
.home-page .main-nav a::after { background: var(--home-copper); }

.home-page .home-hero {
  position: relative;
  min-height: 100svh;
  display: block;
  overflow: hidden;
  color: var(--home-warm-white);
  background: var(--home-black);
  border-bottom: 0;
}
.home-page .home-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(90deg, rgba(5,5,5,.93) 0%, rgba(5,5,5,.75) 32%, rgba(5,5,5,.16) 68%, rgba(5,5,5,.12) 100%);
}
.home-page .hero-backdrop,
.home-page .hero-backdrop img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.home-page .hero-backdrop img { object-fit: cover; object-position: center 48%; }
.home-page .hero-copy {
  position: relative;
  z-index: 2;
  min-height: 100svh;
  width: min(52%, 760px);
  padding: clamp(142px, 17vh, 190px) var(--pad) clamp(46px, 7vh, 74px);
  justify-content: flex-end;
}
.home-page .hero-identity { display: flex; flex-direction: column; align-items: flex-start; gap: 3px; }
.home-page .hero-identity span {
  color: var(--home-warm-white);
  font-size: clamp(54px, 5.6vw, 82px);
  font-weight: 500;
  line-height: 1.02;
}
.home-page .hero-identity p {
  margin-top: 14px;
  color: rgba(255,255,255,.88);
  font-size: clamp(18px, 1.6vw, 25px);
  font-weight: 400;
}
.home-page .hero-identity b {
  margin-top: 7px;
  color: rgba(255,255,255,.55);
  font-size: 12px;
  font-weight: 500;
}
.home-page .hero-copy h1 {
  max-width: 610px;
  margin-top: 31px;
  color: var(--home-warm-white);
  font-size: clamp(20px, 1.7vw, 27px);
  font-weight: 400;
  line-height: 1.55;
}
.home-page .hero-copy > i { width: 34px; height: 2px; margin-top: 24px; background: var(--home-copper); }
.home-page .hero-summary { max-width: 560px; margin-top: 20px; }
.home-page .hero-summary p { color: rgba(255,255,255,.55); font-size: 13px; line-height: 1.85; }
.home-page .hero-capabilities { margin-top: 18px; color: rgba(255,255,255,.82); font-size: 10px; font-weight: 500; }
.home-page .hero-capabilities span { border-left-color: rgba(255,255,255,.22); }
.home-page .hero-actions { margin-top: 27px; gap: 22px; }
.home-page .hero-actions a {
  min-height: 40px;
  padding: 0 0 4px;
  border: 0;
  border-bottom: 1px solid rgba(255,255,255,.58);
  font-size: 12px;
  font-weight: 600;
}
.home-page .hero-actions .primary-action,
.home-page .hero-actions .secondary-action { color: var(--home-warm-white); background: transparent; }
.home-page .hero-actions .primary-action::after { content: "↓"; margin-left: 10px; color: var(--home-copper); font-size: 17px; }
.home-page .hero-actions a:hover,
.home-page .hero-actions a:focus-visible { color: var(--home-copper); background: transparent; border-color: var(--home-copper); }
.home-page .hero-meta {
  margin-top: 28px;
  padding-top: 14px;
  border-top-color: rgba(255,255,255,.18);
  color: rgba(255,255,255,.58);
}
.home-page .hero-meta > span { color: var(--home-copper); }
.home-page .hero-meta p,
.home-page .hero-meta em { color: rgba(255,255,255,.58); }
.home-page .hero-signature { display: none; }

.home-page .selected-work {
  padding-top: clamp(88px, 9vw, 132px);
  color: var(--home-warm-white);
  background: var(--home-black);
}
.home-page .selected-work .section-heading,
.home-page .about-section .section-heading,
.home-page .discipline-section .section-heading {
  border-bottom-color: rgba(255,255,255,.18);
}
.home-page .selected-work .section-heading span,
.home-page .about-section .section-heading span,
.home-page .discipline-section .section-heading span { color: var(--home-copper); }
.home-page .selected-work .section-heading p,
.home-page .about-section .section-heading p,
.home-page .discipline-section .section-heading p { color: var(--home-warm-gray); }
.home-page .selected-work .section-heading > a,
.home-page .about-section .section-heading > a { color: var(--home-warm-white); }
.home-page .selected-grid {
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 24px;
  align-items: stretch;
}
.home-page .featured-project-card {
  overflow: hidden;
  color: var(--home-warm-white);
  background: var(--home-charcoal);
  border-color: rgba(255,255,255,.14);
}
.home-page .featured-project-card:nth-child(1) { grid-column: span 8; }
.home-page .featured-project-card:nth-child(2) { grid-column: span 4; }
.home-page .featured-project-card:nth-child(3) {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(340px, .55fr);
}
.home-page .featured-project-card .project-media { aspect-ratio: 16 / 10; background: #171513; }
.home-page .featured-project-card:nth-child(2) .project-media { aspect-ratio: 4 / 5; }
.home-page .featured-project-card:nth-child(3) .project-media {
  grid-area: auto;
  grid-column: 1;
  grid-row: 1;
  min-height: 560px;
  aspect-ratio: auto;
}
.home-page .featured-project-info { min-height: 350px; padding: clamp(24px, 3vw, 42px); }
.home-page .featured-project-card:nth-child(2) .featured-project-info { min-height: 430px; }
.home-page .featured-project-card:nth-child(3) .featured-project-info {
  grid-column: 2;
  grid-row: 1;
  min-height: 560px;
}
.home-page .featured-project-info header span { color: var(--home-copper); }
.home-page .featured-project-info header i,
.home-page .featured-project-info > small,
.home-page .featured-project-info > p,
.home-page .featured-project-info dt { color: var(--home-warm-gray); }
.home-page .featured-project-info h3 { font-weight: 500; }
.home-page .featured-project-info dl,
.home-page .featured-project-info footer { border-color: rgba(255,255,255,.16); }
.home-page .featured-project-info footer span { color: var(--home-copper); }

.home-page .about-section {
  color: var(--home-warm-white);
  background: #161311;
  border-top-color: rgba(255,255,255,.12);
}
.home-page .about-copy { color: rgba(255,255,255,.76); }
.home-page .career-list { border-top-color: rgba(255,255,255,.18); }
.home-page .career-list li { border-bottom-color: rgba(255,255,255,.18); }
.home-page .career-list time { color: var(--home-copper); }
.home-page .career-list b,
.home-page .career-list p { color: var(--home-warm-gray); }

.home-page .experience-section {
  padding-top: clamp(52px, 5vw, 74px);
  padding-bottom: clamp(52px, 5vw, 74px);
  color: #201b17;
  background: var(--home-sand);
}
.home-page .experience-section .section-heading { border-bottom-color: rgba(32,27,23,.26); }
.home-page .experience-section .section-heading span { color: var(--home-wine); }
.home-page .experience-section .section-heading p { color: rgba(32,27,23,.67); }
.home-page .experience-section { overflow: hidden; }
.home-page .experience-section .section-heading {
  margin-bottom: clamp(24px, 3vw, 38px);
  grid-template-columns: .72fr minmax(360px, 1.15fr) auto;
}
.home-page .experience-section .section-heading h2 { font-size: clamp(34px, 3.2vw, 48px); }
.home-page .brand-ledger {
  max-width: var(--content);
  margin: 0 auto;
  display: grid;
  grid-template-columns: clamp(168px, 15vw, 218px) minmax(0, 1fr);
  overflow: hidden;
  border-top: 1px solid rgba(32,27,23,.3);
  border-bottom: 1px solid rgba(32,27,23,.3);
}
.home-page .brand-ledger-index {
  min-height: 358px;
  padding: 24px 22px;
  display: flex;
  flex-direction: column;
  color: var(--home-warm-white);
  background: #2b1818;
}
.home-page .brand-ledger-index > span { color: var(--home-copper); font-size: 9px; font-weight: 700; }
.home-page .brand-ledger-index > div { margin-top: auto; display: flex; align-items: end; gap: 9px; }
.home-page .brand-ledger-index b { font: 300 clamp(54px, 5vw, 74px)/.82 Georgia, serif; }
.home-page .brand-ledger-index small { padding-bottom: 3px; color: rgba(255,255,255,.52); font-size: 8px; }
.home-page .brand-ledger-index p { margin-top: 18px; color: rgba(255,255,255,.62); font-size: 10px; line-height: 1.7; }
.home-page .brand-tracks { min-width: 0; }
.home-page .brand-track {
  min-height: 119px;
  padding: 18px clamp(20px, 2.6vw, 38px);
  display: grid;
  grid-template-columns: minmax(150px, .58fr) minmax(0, 1.42fr);
  gap: clamp(24px, 4vw, 70px);
  align-items: center;
  border-bottom: 1px solid rgba(32,27,23,.18);
}
.home-page .brand-track:last-child { border-bottom: 0; }
.home-page .brand-track header { display: grid; grid-template-columns: 22px 1fr; gap: 12px; align-items: start; }
.home-page .brand-track header > span { padding-top: 3px; color: var(--home-wine); font-size: 9px; font-weight: 700; }
.home-page .brand-track h3 { font-size: 14px; font-weight: 600; line-height: 1.3; }
.home-page .brand-track header p { margin-top: 6px; color: rgba(32,27,23,.5); font-size: 9px; line-height: 1.5; }
.home-page .brand-track ul {
  min-width: 0;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  list-style: none;
}
.home-page .brand-track li {
  min-width: 0;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: .9;
  transition: opacity .2s ease, transform .2s ease;
}
.home-page .brand-track li:hover { opacity: 1; transform: translateY(0); }
.home-page .brand-track img {
  width: auto;
  height: auto;
  max-width: min(84%, 124px);
  max-height: 44px;
  object-fit: contain;
}
.home-page .brand-logo-guoxin img { max-width: min(96%, 178px); max-height: 23px; }
.home-page .brand-logo-cscec img { max-height: 54px; }
.home-page .brand-logo-cofco img { max-height: 46px; }
.home-page .brand-logo-cp img { max-height: 56px; }
.home-page .brand-logo-luhua img { max-height: 48px; }
.home-page .brand-logo-ctg img,
.home-page .brand-logo-country img { max-height: 52px; }
.home-page .experience-note { margin-top: 14px; color: rgba(32,27,23,.56); }

.home-page .discipline-section {
  padding-top: clamp(86px, 9vw, 126px);
  color: var(--home-warm-white);
  background: #0d0c0c;
  border-top-color: rgba(255,255,255,.12);
}
.home-page .capability-composition {
  max-width: var(--content);
  margin: 0 auto;
  padding: 0 var(--pad) clamp(48px, 5vw, 72px);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(12px, 1.4vw, 20px);
}
.home-page .capability-method-note {
  max-width: var(--content);
  margin: 0 auto clamp(88px, 9vw, 130px);
  padding: 0 var(--pad);
  border-top: 1px solid rgba(255,255,255,.2);
  border-bottom: 1px solid rgba(255,255,255,.2);
}
.home-page .method-heading {
  padding: clamp(26px, 3.2vw, 42px) 0 clamp(30px, 3.5vw, 48px);
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: clamp(40px, 8vw, 120px);
  align-items: end;
}
.home-page .method-heading span { color: var(--home-copper); font-size: 10px; font-weight: 700; letter-spacing: .1em; }
.home-page .method-heading h3 { max-width: 640px; margin-top: 16px; font-size: clamp(27px, 3vw, 44px); font-weight: 400; line-height: 1.25; letter-spacing: -.025em; }
.home-page .method-heading > p { max-width: 520px; color: rgba(255,255,255,.56); font-size: 13px; line-height: 1.8; }
.home-page .method-flow { position: relative; display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 10px; }
.home-page .method-step { position: relative; z-index: 1; min-width: 0; min-height: 350px; padding: 18px clamp(16px, 1.6vw, 24px) 24px; overflow: visible; background: linear-gradient(145deg, rgba(255,255,255,.035), rgba(255,255,255,.012)); border: 1px solid rgba(255,255,255,.16); opacity: 0; transform: translateY(12px); transition: opacity .5s ease calc(.22s + var(--step) * .12s), transform .5s ease calc(.22s + var(--step) * .12s), border-color .25s ease, background-color .25s ease; }
.home-page .method-step:hover { background: linear-gradient(145deg, rgba(196,119,76,.09), rgba(255,255,255,.015)); border-color: rgba(196,119,76,.4); }
.home-page .method-step:not(:last-child)::after { content: "→"; position: absolute; z-index: 4; top: 132px; right: -16px; width: 22px; height: 22px; display: grid; place-items: center; color: var(--home-copper); background: #0d0c0c; border: 1px solid rgba(196,119,76,.38); border-radius: 50%; font-size: 11px; }
.home-page .capability-method-note.is-visible .method-step { opacity: 1; transform: none; }
.home-page .method-step-top { min-height: 34px; display: flex; align-items: flex-start; justify-content: space-between; gap: 12px; }
.home-page .method-step-top > span { color: var(--home-copper); font-size: 8px; font-weight: 700; letter-spacing: .1em; }
.home-page .method-step-top > b { color: rgba(255,255,255,.38); font-size: 8px; font-weight: 500; letter-spacing: .08em; white-space: nowrap; }
.home-page .method-visual { height: 112px; margin: 5px -5px 0; padding: 8px; display: grid; place-items: center; overflow: hidden; background-color: rgba(0,0,0,.16); background-image: linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px); background-size: 16px 16px; border: 1px solid rgba(255,255,255,.08); }
.home-page .method-diagram { width: 100%; height: 100%; overflow: visible; }
.home-page .method-diagram * { vector-effect: non-scaling-stroke; }
.home-page .method-line { fill: none; stroke: rgba(196,119,76,.8); stroke-width: 1.2; }
.home-page .method-line-soft { stroke: rgba(255,255,255,.24); }
.home-page .method-node { fill: #0d0c0c; stroke: rgba(255,255,255,.4); stroke-width: 1; }
.home-page .method-node-end, .home-page .method-accent { fill: var(--home-copper); stroke: #0d0c0c; stroke-width: 2; }
.home-page .method-ring { fill: rgba(196,119,76,.035); stroke: rgba(196,119,76,.76); stroke-width: 1.2; }
.home-page .method-ring-inner { stroke: rgba(255,255,255,.26); }
.home-page .method-box { fill: rgba(255,255,255,.018); stroke: rgba(255,255,255,.3); stroke-width: 1; }
.home-page .method-box-selected { fill: rgba(196,119,76,.14); stroke: rgba(196,119,76,.8); }
.home-page .method-master { fill: rgba(196,119,76,.05); stroke: rgba(196,119,76,.54); }
.home-page .method-accent-shape { fill: rgba(196,119,76,.72); stroke: var(--home-copper); stroke-width: 1; }
.home-page .method-check { fill: none; stroke: var(--home-copper); stroke-width: 1.4; stroke-linecap: round; stroke-linejoin: round; }
.home-page .method-step h4 { margin-top: 20px; font-size: clamp(20px, 1.65vw, 25px); font-weight: 500; }
.home-page .method-step > p { min-height: 58px; margin-top: 9px; color: rgba(255,255,255,.54); font-size: 11px; line-height: 1.68; }
.home-page .method-step ul { margin-top: 14px; padding: 13px 0 0; display: flex; flex-wrap: wrap; gap: 8px; border-top: 1px solid rgba(255,255,255,.1); list-style: none; }
.home-page .method-step li { padding: 0; color: rgba(255,255,255,.62); border: 0; font-size: 9px; }
.home-page .method-step li + li::before { content: "·"; margin-right: 8px; color: var(--home-copper); }
.home-page .method-project-link { min-height: 62px; padding: 0 2px; display: flex; align-items: center; justify-content: space-between; color: rgba(255,255,255,.62); font-size: 11px; font-weight: 600; }
.home-page .method-project-link i { color: var(--home-copper); font-size: 18px; font-style: normal; }
.home-page .method-project-link:hover { color: var(--home-warm-white); }
.home-page .capability-entry {
  position: relative;
  min-width: 0;
  min-height: clamp(300px, 25vw, 360px);
  display: block;
  overflow: hidden;
  color: var(--home-warm-white);
  background: #12110f;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 2px;
  transition: transform .24s ease, border-color .24s ease, background-color .24s ease;
}
.home-page .capability-entry::before {
  content: "";
  position: absolute;
  left: clamp(22px, 2.4vw, 32px);
  right: clamp(22px, 2.4vw, 32px);
  top: 52px;
  height: 1px;
  background: rgba(255,255,255,.13);
  transition: background-color .24s ease, transform .24s ease;
}
.home-page .capability-entry:hover,
.home-page .capability-entry:focus-visible {
  transform: translateY(-4px);
  border-color: rgba(196,119,76,.78);
  background: #191613;
  outline: 0;
}
.home-page .capability-entry:hover::before,
.home-page .capability-entry:focus-visible::before {
  background: rgba(196,119,76,.7);
  transform: scaleX(.94);
}
.home-page .capability-copy {
  height: 100%;
  min-height: inherit;
  padding: clamp(22px, 2.4vw, 32px);
  display: flex;
  flex-direction: column;
}
.home-page .capability-copy > span { color: var(--home-copper); font-size: 10px; font-weight: 700; letter-spacing: .06em; }
.home-page .capability-entry h3 { margin-top: clamp(64px, 6vw, 84px); font-size: clamp(28px, 2.5vw, 40px); font-weight: 500; line-height: 1.12; letter-spacing: -.035em; }
.home-page .capability-entry p { max-width: 430px; margin-top: 14px; color: rgba(255,255,255,.56); font-size: 12px; line-height: 1.7; }
.home-page .capability-copy > b { margin-top: auto; padding-top: 22px; display: flex; align-items: center; justify-content: space-between; color: rgba(255,255,255,.68); border-top: 1px solid rgba(255,255,255,.1); font-size: 10px; font-weight: 500; }
.home-page .capability-copy > b i { margin-left: 8px; color: var(--home-copper); font-size: 15px; transition: transform .24s ease; }
.home-page .capability-entry:hover .capability-copy > b i,
.home-page .capability-entry:focus-visible .capability-copy > b i { transform: translate(3px, -3px); }

/* Capability specimens: one visual grammar, different design disciplines. */
.home-page .brand-glyph { position: absolute; left: 10%; top: 18%; width: 43%; aspect-ratio: 1; display: grid; place-items: center; border: 1px solid rgba(229,221,210,.42); }
.home-page .brand-glyph::before,
.home-page .brand-glyph::after { content: ""; position: absolute; background: rgba(229,221,210,.26); }
.home-page .brand-glyph::before { width: 1px; height: 122%; }
.home-page .brand-glyph::after { width: 122%; height: 1px; }
.home-page .brand-glyph strong { color: #e5ddd2; font-size: clamp(38px, 4.3vw, 68px); font-weight: 500; letter-spacing: -.08em; }
.home-page .brand-glyph i { position: absolute; width: 9px; height: 9px; border: 1px solid var(--home-copper); border-radius: 50%; }
.home-page .brand-glyph i:nth-child(2) { left: -5px; top: -5px; }
.home-page .brand-glyph i:nth-child(3) { right: -5px; bottom: -5px; }
.home-page .brand-lockup { position: absolute; right: 8%; top: 21%; width: 31%; }
.home-page .brand-lockup b { display: block; padding: 0 0 11px; color: #e5ddd2; border-bottom: 1px solid rgba(229,221,210,.3); font-size: 10px; letter-spacing: .12em; }
.home-page .brand-lockup span { display: block; margin-top: 12px; color: rgba(229,221,210,.5); font-size: 8px; line-height: 1.8; }
.home-page .brand-swatches { position: absolute; right: 8%; bottom: 18%; display: flex; gap: 6px; }
.home-page .brand-swatches i { width: 18px; height: 18px; background: #e5ddd2; }
.home-page .brand-swatches i:nth-child(2) { background: #6d2935; }
.home-page .brand-swatches i:nth-child(3) { background: #c4774c; }
.home-page .brand-swatches i:nth-child(4) { background: #3d4640; }

.home-page .specimen-campaign { background: #261518; }
.home-page .campaign-date { position: absolute; left: 9%; top: 18%; display: flex; align-items: flex-end; gap: 8px; color: #eee5da; }
.home-page .campaign-date span { font-size: 18px; line-height: 1; }
.home-page .campaign-date b { padding: 0; color: #eee5da; font-size: clamp(64px, 6vw, 92px); font-weight: 400; line-height: .78; }
.home-page .campaign-orbit { position: absolute; right: -9%; top: 3%; width: 66%; aspect-ratio: 1; border: 1px solid rgba(196,119,76,.55); border-radius: 50%; }
.home-page .campaign-orbit::before,
.home-page .campaign-orbit::after { content: ""; position: absolute; border: 1px solid rgba(196,119,76,.28); border-radius: 50%; }
.home-page .campaign-orbit::before { inset: 15%; }
.home-page .campaign-orbit::after { inset: 31%; }
.home-page .campaign-orbit i { position: absolute; width: 8px; height: 8px; background: var(--home-copper); border-radius: 50%; }
.home-page .campaign-orbit i:nth-child(1) { left: 10%; top: 26%; }
.home-page .campaign-orbit i:nth-child(2) { left: 43%; bottom: 0; }
.home-page .campaign-orbit i:nth-child(3) { right: 22%; top: 23%; }
.home-page .campaign-stage { position: absolute; left: 9%; right: 9%; bottom: 16%; display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid rgba(238,229,218,.28); }
.home-page .campaign-stage span { padding-top: 12px; color: rgba(238,229,218,.58); font-size: 8px; letter-spacing: .09em; }
.home-page .campaign-stage span:nth-child(2) { color: var(--home-copper); text-align: center; }
.home-page .campaign-stage span:last-child { text-align: right; }

.home-page .specimen-digital { background: #17201d; }
.home-page .digital-browser { position: absolute; left: 8%; right: 8%; top: 14%; height: 70%; border: 1px solid rgba(221,228,221,.42); }
.home-page .digital-browser::after { content: ""; position: absolute; left: 0; right: 0; top: 24px; height: 1px; background: rgba(221,228,221,.25); }
.home-page .digital-browser i { position: relative; z-index: 1; float: left; width: 5px; height: 5px; margin: 10px 0 0 6px; border-radius: 50%; background: rgba(221,228,221,.5); }
.home-page .digital-browser span { position: absolute; right: 9px; top: 8px; width: 28%; height: 7px; border: 1px solid rgba(221,228,221,.3); }
.home-page .digital-layout { position: absolute; left: 13%; right: 13%; top: 33%; bottom: 24%; display: grid; grid-template-columns: 1.3fr .7fr; grid-template-rows: 1fr 1fr; gap: 7px; }
.home-page .digital-layout span { border: 1px solid rgba(221,228,221,.32); }
.home-page .digital-layout span:first-child { grid-row: 1 / -1; background: rgba(196,119,76,.14); border-color: rgba(196,119,76,.58); }
.home-page .digital-breakpoints { position: absolute; left: 13%; right: 13%; bottom: 9%; display: flex; justify-content: space-between; }
.home-page .digital-breakpoints b { padding: 0; color: rgba(221,228,221,.55); font-size: 8px; font-weight: 500; }

.home-page .specimen-poster { background: #d8d0c5; }
.home-page .poster-sheet { position: absolute; left: 17%; top: 10%; width: 49%; height: 80%; padding: 18px; color: #161311; background: #eee8df; box-shadow: 18px 18px 0 #6d2935; }
.home-page .poster-sheet span { display: block; font-size: clamp(48px, 5vw, 72px); line-height: 1; }
.home-page .poster-sheet b { position: absolute; left: 18px; bottom: 22px; padding: 0; color: #161311; font-size: 10px; line-height: 1.25; letter-spacing: .07em; }
.home-page .poster-sheet i { position: absolute; right: 16px; top: 17px; color: #6d2935; font-size: 8px; font-style: normal; writing-mode: vertical-rl; }
.home-page .poster-grid { position: absolute; right: 8%; top: 14%; width: 23%; height: 72%; display: grid; grid-template-columns: repeat(2, 1fr); grid-template-rows: repeat(3, 1fr); border: 1px solid rgba(22,19,17,.24); }
.home-page .poster-grid i { border-right: 1px solid rgba(22,19,17,.18); border-bottom: 1px solid rgba(22,19,17,.18); }
.home-page .poster-crop { position: absolute; width: 18px; height: 18px; border-color: #161311; }
.home-page .crop-a { left: 11%; top: 7%; border-left: 1px solid; border-top: 1px solid; }
.home-page .crop-b { right: 5%; bottom: 7%; border-right: 1px solid; border-bottom: 1px solid; }

.home-page .specimen-creative { background: #1c1720; }
.home-page .creative-nodes { position: absolute; inset: 0; }
.home-page .creative-nodes::before,
.home-page .creative-nodes::after { content: ""; position: absolute; height: 1px; background: rgba(196,119,76,.45); transform-origin: left center; }
.home-page .creative-nodes::before { left: 19%; top: 38%; width: 62%; transform: rotate(15deg); }
.home-page .creative-nodes::after { left: 22%; top: 67%; width: 56%; transform: rotate(-19deg); }
.home-page .creative-nodes i { position: absolute; width: 11px; height: 11px; background: #d8d0c5; border: 3px solid #1c1720; box-shadow: 0 0 0 1px rgba(216,208,197,.45); border-radius: 50%; }
.home-page .creative-nodes i:nth-child(1) { left: 17%; top: 35%; }
.home-page .creative-nodes i:nth-child(2) { left: 47%; top: 46%; background: var(--home-copper); }
.home-page .creative-nodes i:nth-child(3) { right: 16%; top: 54%; }
.home-page .creative-nodes i:nth-child(4) { left: 20%; bottom: 25%; }
.home-page .creative-nodes i:nth-child(5) { right: 18%; bottom: 29%; background: #6d2935; }
.home-page .creative-outputs { position: absolute; left: 10%; right: 10%; top: 13%; display: flex; justify-content: space-between; }
.home-page .creative-outputs span { width: 24%; aspect-ratio: 1.35; display: grid; place-items: center; color: rgba(238,232,223,.72); border: 1px solid rgba(238,232,223,.24); font-size: 9px; }
.home-page .creative-token { position: absolute; left: 10%; right: 10%; bottom: 9%; display: flex; justify-content: space-between; align-items: center; }
.home-page .creative-token b { padding: 0; color: var(--home-copper); font-size: 8px; }
.home-page .creative-token span { color: rgba(238,232,223,.42); font-size: 7px; letter-spacing: .08em; }

.home-page .specimen-method { background: #211b17; }
.home-page .specimen-method ol { position: absolute; left: 9%; right: 9%; top: 19%; bottom: 19%; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(4, 1fr); list-style: none; }
.home-page .specimen-method li { position: relative; display: flex; flex-direction: column; justify-content: space-between; border-left: 1px solid rgba(231,221,207,.22); }
.home-page .specimen-method li:last-child { border-right: 1px solid rgba(231,221,207,.22); }
.home-page .specimen-method li b { padding: 0 0 0 10px; color: var(--home-copper); font-size: 9px; }
.home-page .specimen-method li span { padding-left: 10px; color: #e7ddcf; font-size: 12px; writing-mode: vertical-rl; }
.home-page .method-line { position: absolute; left: 9%; right: 9%; top: 50%; height: 1px; background: rgba(196,119,76,.5); }

.home-page .contact-section {
  color: var(--home-warm-white);
  background: #281417;
  border-top: 1px solid rgba(196,119,76,.46);
}
.home-page .contact-section > div > span { color: var(--home-copper); }
.home-page .contact-section h2 { font-weight: 400; }
.home-page .contact-copy p { color: rgba(255,255,255,.62); }
.home-page .contact-copy a { border-bottom-color: rgba(196,119,76,.65); }
.home-page .contact-copy a:hover,
.home-page .contact-copy a:focus-visible { color: var(--home-copper); }

@media (max-width: 1100px) {
  .home-page .hero-copy { width: 62%; }
  .home-page .featured-project-card:nth-child(1) { grid-column: span 7; }
  .home-page .featured-project-card:nth-child(2) { grid-column: span 5; }
  .home-page .featured-project-card:nth-child(3) { grid-template-columns: minmax(0, 1.2fr) minmax(320px, .8fr); }
  .home-page .capability-composition { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 720px) {
  .home-page .site-header { position: absolute; height: 64px; background: rgba(8,8,8,.48); }
  .home-page .wordmark { gap: 8px; }
  .home-page .wordmark span { padding-right: 9px; font-size: 11px; }
  .home-page .wordmark b { font-size: 13px; }
  .home-page .menu-toggle { color: var(--home-warm-white); }
  .home-page .main-nav {
    top: 64px;
    color: var(--home-warm-white);
    background: rgba(12,11,11,.98);
    border-bottom-color: rgba(255,255,255,.18);
  }
  .home-page .main-nav a { border-bottom-color: rgba(255,255,255,.16); }
  .home-page .home-hero { min-height: 100svh; }
  .home-page .home-hero::after {
    background: linear-gradient(180deg, rgba(5,5,5,.22) 0%, rgba(5,5,5,.18) 30%, rgba(5,5,5,.92) 72%, rgba(5,5,5,.98) 100%);
  }
  .home-page .hero-backdrop img { object-position: 62% center; }
  .home-page .hero-copy {
    min-height: 100svh;
    width: 100%;
    padding: 112px var(--pad) 30px;
    justify-content: flex-end;
  }
  .home-page .hero-identity span { font-size: 48px; }
  .home-page .hero-identity p { margin-top: 10px; font-size: 16px; line-height: 1.5; }
  .home-page .hero-identity b { font-size: 10px; }
  .home-page .hero-copy h1 { margin-top: 22px; font-size: 21px; line-height: 1.5; }
  .home-page .hero-copy > i { margin-top: 18px; }
  .home-page .hero-summary { margin-top: 14px; }
  .home-page .hero-summary p { font-size: 11px; line-height: 1.7; }
  .home-page .hero-capabilities { margin-top: 12px; flex-wrap: wrap; row-gap: 7px; }
  .home-page .hero-capabilities span { padding: 0 9px; }
  .home-page .hero-actions { width: auto; margin-top: 17px; gap: 18px; }
  .home-page .hero-actions a { flex: none; min-height: 36px; font-size: 11px; }
  .home-page .hero-meta { margin-top: 18px; padding-top: 10px; font-size: 10px; }
  .home-page .hero-meta em { display: none; }
  .home-page .selected-work { padding-top: 68px; }
  .home-page .selected-grid { grid-template-columns: 1fr; gap: 22px; }
  .home-page .featured-project-card:nth-child(n) { grid-column: auto; display: flex; }
  .home-page .featured-project-card:nth-child(n) .project-media { aspect-ratio: 4 / 3; }
  .home-page .featured-project-card:nth-child(3) .project-media,
  .home-page .featured-project-card:nth-child(3) .featured-project-info { min-height: 0; }
  .home-page .featured-project-info,
  .home-page .featured-project-card:nth-child(2) .featured-project-info { min-height: 0; padding: 22px; }
  .home-page .about-profile { gap: 46px; }
  .home-page .experience-section .section-heading { grid-template-columns: 1fr; }
  .home-page .brand-ledger { grid-template-columns: 1fr; }
  .home-page .brand-ledger-index {
    min-height: 94px;
    padding: 15px 17px;
    display: grid;
    grid-template-columns: 1fr auto;
    grid-template-rows: auto 1fr;
    gap: 5px 12px;
  }
  .home-page .brand-ledger-index > div { grid-column: 2; grid-row: 1 / -1; margin-top: 0; align-self: center; }
  .home-page .brand-ledger-index b { font-size: 44px; }
  .home-page .brand-ledger-index p { margin-top: 0; font-size: 9px; }
  .home-page .brand-track {
    min-height: 142px;
    padding: 14px 12px 16px;
    grid-template-columns: 1fr;
    gap: 9px;
  }
  .home-page .brand-track header { grid-template-columns: 18px 1fr; gap: 8px; }
  .home-page .brand-track h3 { font-size: 12px; }
  .home-page .brand-track header p { display: none; }
  .home-page .brand-track ul {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    transform: none;
  }
  .home-page .brand-track li,
  .home-page .brand-track li:nth-child(n) {
    height: 42px;
    transform: none;
  }
  .home-page .brand-track img {
    max-width: min(78%, 116px);
    max-height: 40px;
  }
  .home-page .brand-logo-guoxin { grid-column: 1 / -1; }
  .home-page .brand-logo-guoxin img { max-width: 178px; max-height: 23px; }
  .home-page .discipline-section { padding-top: 68px; }
  .home-page .capability-composition {
    grid-template-columns: minmax(0, 1fr);
    gap: 10px;
    padding: 0 var(--pad) 36px;
  }
  .home-page .capability-method-note {
    width: calc(100% - (var(--pad) * 2));
    margin: 0 auto 72px;
    padding: 0;
  }
  .home-page .method-heading { padding: 24px 0 28px; grid-template-columns: 1fr; gap: 14px; border-top: 0; }
  .home-page .method-heading h3 { margin-top: 12px; font-size: 27px; }
  .home-page .method-heading > p { font-size: 11px; line-height: 1.7; }
  .home-page .method-flow { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 8px; }
  .home-page .method-step { min-height: 294px; padding: 14px 12px 17px; }
  .home-page .method-step::after { display: none !important; }
  .home-page .method-step-top { min-height: 31px; gap: 7px; }
  .home-page .method-step-top > span, .home-page .method-step-top > b { font-size: 7px; }
  .home-page .method-step-top > b { display: none; }
  .home-page .method-visual { height: 82px; margin-top: 3px; padding: 5px; background-size: 12px 12px; }
  .home-page .method-step h4 { margin-top: 13px; font-size: 19px; }
  .home-page .method-step > p { min-height: 76px; margin-top: 7px; font-size: 10px; line-height: 1.62; }
  .home-page .method-step ul { margin-top: 10px; padding-top: 10px; gap: 5px; }
  .home-page .method-step li { font-size: 8px; }
  .home-page .method-step li + li::before { margin-right: 5px; }
  .home-page .method-project-link { min-height: 56px; font-size: 10px; }
  .home-page .capability-entry,
  .home-page .capability-brand,
  .home-page .capability-campaign,
  .home-page .capability-digital,
  .home-page .capability-poster,
  .home-page .capability-creative,
  .home-page .capability-method { grid-column: auto; margin-top: 0; }
  .home-page .capability-entry { min-height: 250px; }
  .home-page .capability-entry::before { left: 18px; right: 18px; top: 44px; }
  .home-page .capability-copy { min-height: inherit; padding: 18px; }
  .home-page .capability-entry h3 { margin-top: 54px; font-size: 26px; line-height: 1.2; }
  .home-page .capability-entry p { margin-top: 9px; font-size: 11px; line-height: 1.6; }
  .home-page .capability-copy > b { padding-top: 15px; font-size: 9px; }
  .home-page .poster-sheet { left: 23%; width: 43%; padding: 14px; box-shadow: 14px 14px 0 #6d2935; }
  .home-page .poster-sheet b { left: 14px; bottom: 16px; }
  .home-page .specimen-method ol { left: 12%; right: 12%; }
  .home-page .contact-section { padding-top: 72px; }
}

@media (max-width: 360px) {
  .work-category-nav { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
