:root {
  --ink: #191815;
  --ink-soft: #3c352d;
  --paper: #f6efe3;
  --paper-strong: #fff9ee;
  --line: rgba(78, 59, 38, 0.16);
  --orange: #cf7230;
  --orange-bright: #ef9b4a;
  --cream: #f9dcc0;
  --muted: #786f63;
  --shadow: 0 20px 55px rgba(39, 25, 12, 0.13);
  --radius: 8px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Microsoft YaHei", "PingFang SC", "Noto Sans CJK SC", Arial, sans-serif;
  line-height: 1.6;
  letter-spacing: 0;
}

body.nav-open {
  overflow: hidden;
}

main > section {
  scroll-margin-top: 88px;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.container {
  width: min(100% - 48px, var(--max));
  margin: 0 auto;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  background: linear-gradient(180deg, rgba(10, 10, 9, 0.88), rgba(10, 10, 9, 0.32), rgba(10, 10, 9, 0));
  transition: background 0.25s ease, box-shadow 0.25s ease;
}

.site-header.is-solid,
body.nav-open .site-header {
  background: rgba(13, 13, 12, 0.94);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.2);
}

.header-inner {
  width: min(100% - 72px, var(--max));
  min-height: 78px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  min-width: 170px;
}

.brand-logo {
  width: 168px;
  height: auto;
  object-fit: contain;
}

.brand-text {
  display: none;
  line-height: 1.08;
}

.brand-text strong {
  font-size: 24px;
  font-weight: 700;
}

.brand-text small {
  font-size: 10px;
  color: rgba(255, 255, 255, 0.72);
  font-weight: 700;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(20px, 3vw, 44px);
  color: rgba(255, 255, 255, 0.86);
  font-size: 15px;
  font-weight: 600;
  white-space: nowrap;
}

.site-nav a {
  position: relative;
  padding: 28px 0 24px;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 17px;
  width: 0;
  height: 2px;
  background: var(--orange-bright);
  transform: translateX(-50%);
  transition: width 0.2s ease;
}

.site-nav a:hover,
.site-nav a.active {
  color: #fff;
}

.site-nav a:hover::after,
.site-nav a.active::after {
  width: 28px;
}

.nav-toggle {
  display: none;
  width: 38px;
  height: 38px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 50%;
  background: rgba(15, 15, 14, 0.46);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 4px;
  cursor: pointer;
}

.nav-toggle span {
  width: 15px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

body.nav-open .nav-toggle span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

body.nav-open .nav-toggle span:nth-child(2) {
  opacity: 0;
}

body.nav-open .nav-toggle span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.hero {
  position: relative;
  min-height: 550px;
  display: grid;
  align-items: center;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.78) 0%, rgba(0, 0, 0, 0.42) 38%, rgba(0, 0, 0, 0.05) 72%),
    url("美术资源/网页压缩图/hero-1393.jpg") center / cover no-repeat;
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 150px;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.34), rgba(0, 0, 0, 0));
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(100% - 96px, var(--max));
  margin: 74px auto 0;
  color: #fff;
}

.eyebrow {
  margin: 0 0 12px;
  color: #f7e2cf;
  font-size: 20px;
  font-weight: 500;
}

.hero h1 {
  margin: 0 0 26px;
  font-family: "STSong", "SimSun", serif;
  font-size: clamp(52px, 5.4vw, 72px);
  font-weight: 500;
  line-height: 1.13;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 20px;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 700;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.btn::after {
  content: ">";
  margin-left: 12px;
  font-family: Arial, sans-serif;
  font-size: 15px;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  color: #fff;
  background: var(--orange);
  box-shadow: 0 8px 24px rgba(183, 92, 34, 0.34);
}

.btn-outline {
  color: var(--orange);
  border: 1px solid rgba(207, 114, 48, 0.5);
  background: rgba(255, 255, 255, 0.42);
}

.btn-dark {
  color: #f6d6b7;
  border: 1px solid rgba(239, 155, 74, 0.5);
  background: rgba(0, 0, 0, 0.22);
}

.btn-light {
  color: #8a4a21;
  background: #fff8ed;
}

.btn-footer {
  color: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(255, 255, 255, 0.34);
}

.hero-dots {
  position: absolute;
  left: 50%;
  bottom: 22px;
  z-index: 2;
  display: flex;
  gap: 8px;
  transform: translateX(-50%);
}

.hero-dots span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.55);
}

.hero-dots .is-current {
  width: 9px;
  height: 9px;
  background: #fff;
}

.about-section,
.categories-section,
.info-section {
  background:
    linear-gradient(90deg, rgba(72, 45, 20, 0.08) 1px, transparent 1px),
    linear-gradient(0deg, rgba(72, 45, 20, 0.06) 1px, transparent 1px),
    var(--paper);
  background-size: 52px 52px;
}

.about-section {
  padding: 22px 0 18px;
}

.about-card {
  display: grid;
  grid-template-columns: 0.72fr 1fr;
  align-items: center;
  gap: 56px;
}

.section-copy {
  max-width: 430px;
}

.section-label {
  position: relative;
  margin: 0 0 12px;
  color: var(--ink);
  font-size: 23px;
  font-family: "STSong", "SimSun", serif;
  font-weight: 700;
  line-height: 1.2;
}

.section-label::after {
  content: "";
  display: block;
  width: 23px;
  height: 2px;
  margin-top: 10px;
  background: var(--orange);
}

h2,
h3,
p {
  margin-top: 0;
}

.section-copy h2,
.space-copy h2,
.join-copy h2 {
  margin-bottom: 22px;
  color: #6c3b21;
  font-family: "STSong", "SimSun", serif;
  font-size: clamp(32px, 3.1vw, 43px);
  font-weight: 500;
  line-height: 1.18;
}

.section-copy p {
  margin-bottom: 10px;
  color: var(--ink-soft);
  font-size: 15px;
}

.value-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 20px 0 24px;
}

.value-tags span {
  min-width: 48px;
  padding: 5px 12px;
  border-radius: 999px;
  color: var(--orange);
  background: #fff4e7;
  border: 1px solid #f2d4b9;
  font-size: 13px;
  font-weight: 700;
  text-align: center;
}

.about-media {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  box-shadow: var(--shadow);
}

.about-media img {
  width: 100%;
  aspect-ratio: 1.58;
  object-fit: cover;
}

.media-controls {
  position: absolute;
  left: 20px;
  bottom: 16px;
  display: flex;
  gap: 8px;
}

.media-controls button {
  position: relative;
  width: 26px;
  height: 26px;
  border: 1px solid rgba(255, 255, 255, 0.48);
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.12);
  cursor: pointer;
}

.media-controls button::before {
  content: "";
  position: absolute;
  inset: 8px 9px 8px 7px;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  transform: rotate(-135deg);
}

.media-controls button:last-child::before {
  inset: 8px 7px 8px 9px;
  transform: rotate(45deg);
}

.categories-section {
  padding: 22px 0 26px;
}

.section-heading {
  border-top: 1px solid var(--line);
  padding-top: 22px;
  margin-bottom: 16px;
}

.section-heading h2,
.promise-panel h2,
.news-panel h2,
.site-footer h2 {
  margin: 0;
  font-family: "STSong", "SimSun", serif;
  font-size: 25px;
  font-weight: 700;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(8, minmax(0, 1fr));
  gap: 9px;
}

.category-card {
  position: relative;
  overflow: hidden;
  min-width: 0;
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.8);
  box-shadow: 0 8px 18px rgba(55, 40, 24, 0.12);
  text-align: center;
}

.category-card img {
  width: 100%;
  aspect-ratio: 1.33;
  object-fit: cover;
}

.category-icon {
  position: absolute;
  left: 50%;
  top: calc(100% - 64px);
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: rgba(15, 15, 14, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.48);
  transform: translate(-50%, -50%);
  font-size: 12px;
  font-weight: 700;
}

.category-card h3 {
  margin: 22px 8px 2px;
  font-size: 15px;
  line-height: 1.25;
}

.category-card p {
  display: none;
  margin: 0 8px 12px;
  color: var(--muted);
  font-size: 11px;
}

.space-section {
  padding: 20px 0;
  color: #fff;
  background:
    radial-gradient(circle at 12% 20%, rgba(207, 114, 48, 0.16), transparent 28%),
    linear-gradient(90deg, #191917, #24231f 58%, #11110f);
}

.space-layout {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 28px;
  align-items: center;
}

.space-copy .section-label,
.space-copy .section-label::after {
  color: #fff;
}

.space-copy h2 {
  color: #e8d5bd;
  font-size: 26px;
}

.space-gallery {
  min-width: 0;
}

.space-main {
  display: none;
}

.space-thumbs {
  display: grid;
  grid-template-columns: 1.15fr 1fr 1fr 1fr;
  gap: 8px;
}

.space-thumbs button {
  overflow: hidden;
  padding: 0;
  border: 0;
  border-radius: 4px;
  background: none;
  cursor: pointer;
}

.space-thumbs img {
  width: 100%;
  aspect-ratio: 1.5;
  object-fit: cover;
  filter: saturate(0.92);
  transition: transform 0.22s ease, filter 0.22s ease;
}

.space-thumbs button:hover img,
.space-thumbs button.is-active img {
  transform: scale(1.03);
  filter: saturate(1.08);
}

.history-section {
  position: relative;
  overflow: hidden;
  padding: 58px 0 70px;
  background:
    linear-gradient(90deg, rgba(72, 45, 20, 0.07) 1px, transparent 1px),
    linear-gradient(0deg, rgba(72, 45, 20, 0.05) 1px, transparent 1px),
    linear-gradient(180deg, #fff8eb 0%, #f3e4d0 100%);
  background-size: 52px 52px, 52px 52px, auto;
}

.history-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 12% 18%, rgba(207, 114, 48, 0.16), transparent 28%),
    radial-gradient(circle at 88% 72%, rgba(42, 37, 28, 0.11), transparent 30%);
  pointer-events: none;
}

.history-head {
  position: relative;
  z-index: 1;
  width: min(560px, 100%);
  margin-bottom: 30px;
}

.history-head h2,
.jobs-section-head h2,
.openings-copy h2,
.apply-card h2 {
  margin: 0 0 14px;
  color: #6c3b21;
  font-family: "STSong", "SimSun", serif;
  font-size: clamp(32px, 3.3vw, 44px);
  font-weight: 500;
  line-height: 1.18;
}

.history-head p:last-child,
.openings-copy p,
.apply-card p,
.jobs-hero-copy p {
  color: var(--ink-soft);
}

.history-timeline {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  min-height: 360px;
  align-items: center;
  isolation: isolate;
}

.history-timeline::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  height: 104px;
  background: linear-gradient(90deg, #9f4b1c, #d5762b 42%, #f0a34f);
  clip-path: polygon(0 0, calc(100% - 38px) 0, 100% 50%, calc(100% - 38px) 100%, 0 100%, 28px 50%);
  box-shadow: 0 20px 36px rgba(140, 72, 28, 0.22);
  transform: translateY(-50%);
  z-index: -1;
}

.history-timeline::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  height: 104px;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.12) 1px, transparent 1px);
  background-size: 18px 18px;
  clip-path: polygon(0 0, calc(100% - 38px) 0, 100% 50%, calc(100% - 38px) 100%, 0 100%, 28px 50%);
  transform: translateY(-50%);
  pointer-events: none;
  z-index: -1;
}

.history-item {
  min-width: 0;
  display: grid;
  gap: 18px;
  align-items: center;
}

.history-item.is-top {
  align-self: start;
}

.history-item.is-bottom {
  align-self: end;
}

.history-item > strong {
  display: block;
  color: #fff;
  font-family: Arial, sans-serif;
  font-size: clamp(44px, 5vw, 78px);
  font-weight: 900;
  line-height: 1;
  text-shadow: 0 10px 22px rgba(94, 46, 15, 0.18);
}

.history-card {
  width: min(220px, calc(100% - 12px));
  padding: 16px 16px 18px;
  border: 1px solid rgba(137, 83, 36, 0.14);
  border-radius: 8px;
  background: rgba(255, 253, 246, 0.9);
  box-shadow: 0 16px 34px rgba(76, 46, 20, 0.1);
}

.history-card span {
  color: var(--orange);
  font-size: 12px;
  font-weight: 900;
}

.history-card h3 {
  margin: 4px 0 8px;
  color: #7c421f;
  font-size: 24px;
  line-height: 1;
}

.history-card p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.65;
}

.info-section {
  position: relative;
  overflow: hidden;
  padding: 36px 0 28px;
  background:
    linear-gradient(90deg, rgba(86, 61, 34, 0.06) 1px, transparent 1px),
    linear-gradient(0deg, rgba(86, 61, 34, 0.05) 1px, transparent 1px),
    linear-gradient(180deg, #f9efe0 0%, #f3dfc2 55%, #f8eee0 100%);
  background-size: 52px 52px, 52px 52px, auto;
}

.info-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.5), transparent 42%),
    radial-gradient(circle at 80% 8%, rgba(207, 114, 48, 0.12), transparent 28%);
  pointer-events: none;
}

.info-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 0.78fr 1.7fr 1.35fr;
  gap: 16px;
  align-items: stretch;
}

.promise-panel,
.news-panel,
.join-panel {
  border: 1px solid rgba(139, 87, 38, 0.13);
  border-radius: 8px;
  background: rgba(255, 252, 246, 0.9);
  box-shadow: 0 18px 44px rgba(91, 55, 23, 0.1);
  backdrop-filter: blur(8px);
}

.promise-panel,
.news-panel {
  padding: 24px;
}

.promise-panel .section-label,
.news-panel .section-label {
  margin-bottom: 8px;
  font-size: 23px;
}

.promise-list {
  display: grid;
  gap: 14px;
  padding: 0;
  margin: 18px 0 0;
  list-style: none;
}

.promise-list li {
  display: grid;
  grid-template-columns: 28px 1fr auto;
  gap: 10px;
  align-items: center;
  font-size: 15px;
}

.promise-list span {
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--orange);
  border: 1px solid var(--orange);
  font-size: 13px;
  font-weight: 700;
}

.promise-list em {
  color: var(--muted);
  font-style: normal;
  font-size: 13px;
}

.panel-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 16px;
}

.panel-heading a {
  color: #8c7a67;
  font-size: 13px;
  white-space: nowrap;
}

.panel-heading a::after {
  content: ">";
  margin-left: 10px;
}

.news-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.news-card {
  overflow: hidden;
  border: 1px solid rgba(139, 87, 38, 0.12);
  border-radius: 8px;
  background: #fffdf8;
  box-shadow: 0 10px 24px rgba(87, 54, 22, 0.06);
}

.news-card img {
  width: 100%;
  aspect-ratio: 1.68;
  object-fit: cover;
}

.news-card div {
  padding: 13px 14px 16px;
}

.news-card time {
  color: #a49a90;
  font-size: 12px;
}

.news-card h3 {
  margin: 5px 0 0;
  font-size: 15px;
  line-height: 1.45;
}

.join-panel {
  position: relative;
  overflow: hidden;
  min-height: 218px;
  color: #fff;
  box-shadow: 0 20px 48px rgba(92, 49, 19, 0.18);
}

.join-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(111, 54, 20, 0.97), rgba(164, 85, 31, 0.68) 48%, rgba(0, 0, 0, 0.04)),
    radial-gradient(circle at 20% 20%, rgba(255, 214, 162, 0.22), transparent 34%);
}

.join-panel img {
  width: 100%;
  height: 100%;
  min-height: 218px;
  object-fit: cover;
}

.join-copy {
  position: absolute;
  inset: 24px auto 24px 28px;
  z-index: 1;
  width: min(66%, 310px);
}

.join-copy .section-label {
  color: #fff;
  font-size: 18px;
}

.join-copy .section-label::after {
  background: rgba(255, 255, 255, 0.86);
}

.join-copy h2 {
  color: #fff8ed;
  font-size: 31px;
}

.site-footer {
  color: rgba(255, 255, 255, 0.8);
  background: linear-gradient(180deg, #21211f, #141412);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.15fr 1.1fr 1.32fr 1fr;
  gap: 34px;
  padding: 34px 0 30px;
}

.site-footer h2 {
  margin-bottom: 14px;
  color: #fff;
}

.site-footer p {
  margin-bottom: 18px;
  font-size: 14px;
}

.contact-list {
  display: grid;
  gap: 8px;
  padding: 0;
  margin: 0;
  list-style: none;
  font-size: 14px;
}

.footer-store img {
  width: 100%;
  height: 150px;
  border-radius: 4px;
  object-fit: cover;
}

.follow-box {
  display: grid;
  grid-template-columns: 96px 1fr;
  column-gap: 18px;
  align-items: start;
}

.follow-box h2 {
  grid-column: 1 / -1;
}

.follow-box p {
  margin: 0;
}

.qr-placeholder {
  width: 96px;
  height: 96px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 4px;
  padding: 8px;
  border-radius: 3px;
  background: #fff;
}

.qr-placeholder span {
  background: #1d1d1b;
}

.qr-placeholder span:nth-child(2n),
.qr-placeholder span:nth-child(7),
.qr-placeholder span:nth-child(13),
.qr-placeholder span:nth-child(19),
.qr-placeholder span:nth-child(23) {
  background: transparent;
}

.footer-bottom {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px 20px;
  padding: 12px 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.48);
  font-size: 12px;
}

.footer-bottom span + span::before {
  content: "|";
  margin-right: 18px;
  color: rgba(255, 255, 255, 0.24);
}

.reveal-on-scroll {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.reveal-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.jobs-page {
  background: #f8efe3;
}

.jobs-hero {
  min-height: 650px;
  padding: 136px 0 70px;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(15, 13, 11, 0.9), rgba(35, 24, 17, 0.72) 48%, rgba(35, 24, 17, 0.24)),
    url("美术资源/网页压缩图/photo-1394.jpg") center / cover no-repeat;
}

.jobs-hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 0.65fr);
  gap: 64px;
  align-items: center;
}

.jobs-hero-copy h1 {
  margin: 0 0 20px;
  font-family: "STSong", "SimSun", serif;
  font-size: clamp(48px, 5vw, 72px);
  font-weight: 500;
  line-height: 1.12;
}

.jobs-hero-copy p {
  width: min(520px, 100%);
  color: rgba(255, 244, 229, 0.86);
}

.jobs-hero-panel {
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1fr;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(255, 250, 241, 0.12);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(10px);
}

.jobs-hero-panel img {
  grid-column: 1 / -1;
  width: 100%;
  aspect-ratio: 1.66;
  object-fit: cover;
}

.jobs-hero-panel div {
  padding: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.jobs-hero-panel div + div {
  border-left: 1px solid rgba(255, 255, 255, 0.16);
}

.jobs-hero-panel strong,
.jobs-hero-panel span {
  display: block;
}

.jobs-hero-panel strong {
  font-size: 22px;
}

.jobs-hero-panel span {
  margin-top: 4px;
  color: rgba(255, 244, 229, 0.76);
  font-size: 13px;
}

.jobs-benefits,
.openings-section,
.apply-section {
  background:
    linear-gradient(90deg, rgba(72, 45, 20, 0.07) 1px, transparent 1px),
    linear-gradient(0deg, rgba(72, 45, 20, 0.05) 1px, transparent 1px),
    #f8efe3;
  background-size: 52px 52px;
}

.jobs-benefits {
  padding: 54px 0 34px;
}

.jobs-section-head {
  margin-bottom: 18px;
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.benefit-card,
.opening-card,
.apply-card {
  border: 1px solid rgba(139, 87, 38, 0.14);
  border-radius: 8px;
  background: rgba(255, 252, 246, 0.9);
  box-shadow: 0 18px 44px rgba(91, 55, 23, 0.1);
}

.benefit-card {
  padding: 24px;
}

.benefit-card span {
  color: var(--orange);
  font-size: 13px;
  font-weight: 900;
}

.benefit-card h3 {
  margin: 10px 0 8px;
  font-size: 22px;
}

.benefit-card p,
.opening-card p,
.opening-card li,
.apply-card li {
  color: var(--muted);
}

.openings-section {
  padding: 28px 0 54px;
}

.openings-layout {
  display: grid;
  grid-template-columns: 290px minmax(0, 1fr);
  gap: 32px;
  align-items: start;
}

.openings-copy {
  position: sticky;
  top: 96px;
}

.opening-list {
  display: grid;
  gap: 14px;
}

.opening-card {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(220px, 0.8fr) auto;
  gap: 22px;
  align-items: center;
  padding: 22px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.opening-card:hover,
.benefit-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 52px rgba(91, 55, 23, 0.14);
}

.opening-card span {
  color: var(--orange);
  font-size: 12px;
  font-weight: 900;
}

.opening-card h3 {
  margin: 6px 0 8px;
  font-size: 24px;
}

.opening-card p {
  margin-bottom: 0;
}

.opening-card ul,
.apply-card ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

.opening-card a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  padding: 0 18px;
  border-radius: 999px;
  color: #fff;
  background: var(--orange);
  font-size: 13px;
  font-weight: 800;
  white-space: nowrap;
}

.apply-section {
  padding: 0 0 54px;
}

.apply-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.7fr);
  gap: 28px;
  align-items: center;
  padding: 30px;
}

.apply-card ul {
  display: grid;
  gap: 10px;
  padding: 18px;
  border-radius: 8px;
  background: #fff8e8;
}

@media (max-width: 1080px) {
  .site-nav {
    gap: 18px;
    font-size: 14px;
  }

  .about-card {
    gap: 34px;
  }

  .category-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .history-timeline {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    row-gap: 28px;
  }

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

  .join-panel {
    grid-column: 1 / -1;
  }

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

  .jobs-hero-inner,
  .openings-layout,
  .apply-card {
    grid-template-columns: 1fr;
  }

  .openings-copy {
    position: static;
  }

  .opening-card {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  :root {
    --shadow: 0 14px 32px rgba(39, 25, 12, 0.14);
  }

  main > section {
    scroll-margin-top: 76px;
  }

  .container {
    width: min(100% - 28px, var(--max));
  }

  .header-inner {
    width: min(100% - 28px, var(--max));
    min-height: 62px;
  }

  .brand {
    min-width: 0;
  }

  .brand-logo {
    width: 112px;
  }

  .brand-text strong {
    font-size: 18px;
  }

  .brand-text small {
    font-size: 8px;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .site-nav {
    position: fixed;
    inset: 62px 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    padding: 10px 14px 18px;
    color: #fff;
    background: rgba(13, 13, 12, 0.97);
    box-shadow: 0 18px 36px rgba(0, 0, 0, 0.24);
    transform: translateY(-125%);
    transition: transform 0.22s ease;
  }

  body.nav-open .site-nav {
    transform: translateY(0);
  }

  .site-nav a {
    padding: 12px 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .site-nav a::after {
    display: none;
  }

  .hero {
    min-height: 420px;
    align-items: start;
    background-position: center top;
  }

  .hero-content {
    width: min(100% - 28px, var(--max));
    margin-top: 118px;
  }

  .eyebrow {
    margin-bottom: 7px;
    font-size: 15px;
  }

  .hero h1 {
    margin-bottom: 16px;
    font-size: 40px;
    line-height: 1.08;
  }

  .btn {
    min-height: 34px;
    padding: 0 16px;
    border-radius: 999px;
    font-size: 12px;
  }

  .hero-dots {
    bottom: 42px;
  }

  .about-section {
    padding: 0 0 22px;
  }

  .about-card {
    position: relative;
    z-index: 2;
    grid-template-columns: 1fr;
    gap: 18px;
    margin-top: -34px;
    padding: 22px 14px 16px;
    border-radius: 18px;
    background: #fff7ea;
    box-shadow: var(--shadow);
  }

  .section-copy {
    max-width: none;
  }

  .section-label {
    margin-bottom: 10px;
    font-size: 20px;
  }

  .section-copy h2,
  .space-copy h2,
  .join-copy h2 {
    margin-bottom: 14px;
    font-size: 31px;
  }

  .section-copy p {
    font-size: 13px;
  }

  .value-tags {
    margin: 16px 0 18px;
  }

  .value-tags span {
    min-width: auto;
    padding: 4px 10px;
    font-size: 12px;
  }

  .about-media {
    order: 2;
    border-radius: 8px;
  }

  .about-media img {
    aspect-ratio: 1.48;
  }

  .media-controls {
    left: 10px;
    bottom: 10px;
  }

  .categories-section {
    padding: 0 0 24px;
  }

  .section-heading {
    padding-top: 0;
    border-top: 0;
  }

  .section-heading h2,
  .promise-panel h2,
  .news-panel h2,
  .site-footer h2 {
    font-size: 21px;
  }

  .category-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .category-card {
    border-radius: 8px;
    box-shadow: 0 8px 20px rgba(43, 29, 15, 0.13);
  }

  .category-card img {
    aspect-ratio: 1.38;
  }

  .category-icon {
    left: 14px;
    top: auto;
    bottom: 42px;
    transform: none;
  }

  .category-card h3 {
    margin: 13px 8px 0;
    font-size: 14px;
  }

  .category-card p {
    display: block;
  }

  .space-section {
    padding: 28px 0 22px;
  }

  .space-layout {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .space-copy h2 {
    font-size: 24px;
  }

  .space-main {
    display: block;
    width: 100%;
    aspect-ratio: 1.62;
    border-radius: 8px;
    object-fit: cover;
    margin-bottom: 10px;
  }

  .space-thumbs {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
  }

  .space-thumbs button:nth-child(4) {
    display: none;
  }

  .space-thumbs img {
    aspect-ratio: 1.55;
    border-radius: 5px;
  }

  .history-section {
    padding: 34px 0 40px;
  }

  .history-head {
    margin-bottom: 24px;
  }

  .history-head h2,
  .jobs-section-head h2,
  .openings-copy h2,
  .apply-card h2 {
    font-size: 30px;
  }

  .history-timeline {
    display: grid;
    grid-template-columns: 1fr;
    min-height: auto;
    gap: 14px;
    padding-left: 20px;
  }

  .history-timeline::before {
    left: 4px;
    right: auto;
    top: 0;
    bottom: 0;
    width: 5px;
    height: auto;
    clip-path: none;
    border-radius: 999px;
    transform: none;
  }

  .history-timeline::after {
    display: none;
  }

  .history-item,
  .history-item.is-top,
  .history-item.is-bottom {
    position: relative;
    align-self: auto;
    grid-template-columns: 74px minmax(0, 1fr);
    gap: 12px;
  }

  .history-item::before {
    content: "";
    position: absolute;
    left: -22px;
    top: 18px;
    width: 13px;
    height: 13px;
    border: 3px solid #fff7ea;
    border-radius: 50%;
    background: var(--orange);
    box-shadow: 0 0 0 4px rgba(207, 114, 48, 0.15);
  }

  .history-item.is-top .history-card,
  .history-item.is-bottom .history-card {
    order: 2;
  }

  .history-item.is-top > strong,
  .history-item.is-bottom > strong {
    order: 1;
  }

  .history-item > strong {
    color: var(--orange);
    font-size: 26px;
    text-shadow: none;
  }

  .history-card {
    width: 100%;
    padding: 14px;
  }

  .history-card h3 {
    display: none;
  }

  .info-section {
    padding: 24px 0 24px;
  }

  .info-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .promise-panel,
  .news-panel {
    padding: 20px 16px;
    border-radius: 14px;
  }

  .promise-list {
    gap: 11px;
  }

  .promise-list li {
    grid-template-columns: 24px minmax(112px, 1fr) auto;
    gap: 8px;
    font-size: 13px;
  }

  .promise-list span {
    width: 20px;
    height: 20px;
    font-size: 11px;
  }

  .promise-list em {
    font-size: 12px;
  }

  .panel-heading {
    align-items: end;
  }

  .news-list {
    grid-template-columns: 1fr;
    gap: 11px;
  }

  .news-card {
    display: grid;
    grid-template-columns: 112px 1fr;
    border-radius: 8px;
  }

  .news-card img {
    height: 100%;
    min-height: 84px;
    aspect-ratio: auto;
  }

  .news-card div {
    padding: 10px 28px 10px 12px;
    position: relative;
  }

  .news-card div::after {
    content: ">";
    position: absolute;
    right: 12px;
    top: 50%;
    color: var(--orange);
    transform: translateY(-50%);
  }

  .news-card h3 {
    font-size: 13px;
  }

  .join-panel {
    min-height: 214px;
    border-radius: 8px;
  }

  .join-panel img {
    min-height: 214px;
  }

  .join-panel::after {
    background: linear-gradient(90deg, rgba(138, 65, 18, 0.92), rgba(138, 65, 18, 0.6) 45%, rgba(0, 0, 0, 0.08));
  }

  .join-copy {
    inset: 18px auto 18px 18px;
    width: min(74%, 260px);
  }

  .join-copy h2 {
    font-size: 27px;
  }

  .jobs-hero {
    min-height: auto;
    padding: 104px 0 34px;
  }

  .jobs-hero-inner {
    gap: 24px;
  }

  .jobs-hero-copy h1 {
    font-size: 40px;
  }

  .jobs-hero-panel {
    grid-template-columns: 1fr;
  }

  .jobs-hero-panel div + div {
    border-left: 0;
  }

  .jobs-benefits {
    padding: 30px 0 18px;
  }

  .benefit-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .openings-section {
    padding: 20px 0 32px;
  }

  .openings-layout {
    gap: 18px;
  }

  .opening-card {
    padding: 18px;
  }

  .opening-card h3 {
    font-size: 21px;
  }

  .apply-section {
    padding-bottom: 34px;
  }

  .apply-card {
    padding: 20px 16px;
  }

  .site-footer {
    padding-bottom: 0;
  }

  .footer-grid {
    grid-template-columns: 1fr 112px;
    gap: 20px;
    padding: 26px 0 24px;
  }

  .footer-grid section:first-child {
    grid-column: 1;
  }

  .footer-grid section:nth-child(2) {
    grid-column: 1 / -1;
  }

  .footer-store {
    display: none;
  }

  .follow-box {
    grid-column: 2;
    grid-row: 1 / span 2;
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .follow-box h2 {
    display: none;
  }

  .qr-placeholder {
    width: 96px;
    height: 96px;
    justify-self: end;
  }

  .follow-box p {
    text-align: center;
    font-size: 12px;
  }

  .footer-bottom {
    display: none;
  }
}

@media (max-width: 380px) {
  .promise-list li {
    grid-template-columns: 24px 1fr;
  }

  .promise-list em {
    grid-column: 2;
  }

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

.follow-box {
    grid-column: 1;
    grid-row: auto;
    justify-self: start;
  }
}

/* Refined history and recruitment visuals. Keep these overrides last. */
.history-section {
  padding: 72px 0 82px;
  background:
    linear-gradient(90deg, rgba(58, 39, 22, 0.06) 1px, transparent 1px),
    linear-gradient(0deg, rgba(58, 39, 22, 0.05) 1px, transparent 1px),
    linear-gradient(180deg, #fff9ed 0%, #f2dfc5 100%);
  background-size: 52px 52px, 52px 52px, auto;
}

.history-section::before {
  background:
    radial-gradient(circle at 8% 22%, rgba(207, 114, 48, 0.16), transparent 25%),
    radial-gradient(circle at 92% 74%, rgba(31, 28, 23, 0.12), transparent 26%);
}

.history-head {
  width: min(760px, 100%);
  margin-bottom: 38px;
}

.history-head .section-label {
  font-size: 26px;
}

.history-head h2 {
  color: #4b2b18;
  font-size: clamp(36px, 3.8vw, 54px);
}

.history-head p:last-child {
  width: min(720px, 100%);
  color: #5f5245;
  font-size: 16px;
}

.history-timeline {
  min-height: 470px;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0;
  align-items: stretch;
}

.history-timeline::before,
.history-timeline::after {
  top: 50%;
  height: 122px;
  transform: translateY(-50%);
  clip-path: polygon(0 0, calc(100% - 42px) 0, 100% 50%, calc(100% - 42px) 100%, 0 100%, 34px 50%);
}

.history-timeline::before {
  background:
    linear-gradient(rgba(255, 255, 255, 0.1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.14) 1px, transparent 1px),
    linear-gradient(90deg, #8b3f18 0%, #c46222 38%, #ee9a43 100%);
  background-size: 20px 20px, 20px 20px, auto;
  box-shadow: 0 28px 52px rgba(132, 68, 24, 0.26);
}

.history-timeline::after {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.16), transparent 18%, transparent 82%, rgba(255, 255, 255, 0.18)),
    linear-gradient(180deg, rgba(255, 255, 255, 0.18), transparent 48%, rgba(0, 0, 0, 0.1));
}

.history-item {
  min-height: 470px;
  display: grid;
  grid-template-rows: minmax(0, 1fr) 122px minmax(0, 1fr);
  justify-items: center;
  gap: 0;
}

.history-item.is-top,
.history-item.is-bottom {
  align-self: stretch;
}

.history-item.is-top .history-card {
  grid-row: 1;
  align-self: end;
  margin-bottom: 24px;
}

.history-item.is-top > strong {
  grid-row: 2;
}

.history-item.is-bottom > strong {
  grid-row: 2;
}

.history-item.is-bottom .history-card {
  grid-row: 3;
  align-self: start;
  margin-top: 24px;
}

.history-item > strong {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  color: #fff;
  font-size: clamp(48px, 5.4vw, 84px);
  letter-spacing: 0;
  text-shadow: 0 12px 24px rgba(82, 39, 12, 0.28);
}

.history-item > strong::before {
  content: ">";
  margin-right: 8px;
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.7em;
}

.history-card {
  width: min(230px, calc(100% - 18px));
  min-height: 176px;
  padding: 0 16px 16px;
  overflow: hidden;
  border: 1px solid rgba(122, 74, 34, 0.13);
  border-radius: 8px;
  background: rgba(255, 253, 247, 0.96);
  box-shadow: 0 20px 45px rgba(70, 43, 19, 0.13);
}

.history-card::before {
  content: "";
  display: block;
  height: 78px;
  margin: 0 -16px 14px;
  background: url("美术资源/网页压缩图/thumb-1392.jpg") center / cover no-repeat;
  filter: saturate(0.95);
}

.history-item:nth-child(2) .history-card::before {
  background-image: url("美术资源/网页压缩图/thumb-1395.jpg");
}

.history-item:nth-child(3) .history-card::before {
  background-image: url("美术资源/网页压缩图/thumb-1396.jpg");
}

.history-item:nth-child(4) .history-card::before {
  background-image: url("美术资源/网页压缩图/thumb-1400.jpg");
}

.history-item:nth-child(5) .history-card::before {
  background-image: url("美术资源/网页压缩图/thumb-1410.jpg");
}

.history-card span {
  color: #d16f29;
  font-size: 13px;
  font-weight: 900;
}

.history-card h3 {
  margin: 6px 0 8px;
  color: #2f241c;
  font-size: 22px;
}

.history-card p {
  color: #675a4d;
  font-size: 12px;
}

.info-section {
  padding-top: 44px;
}

.jobs-page {
  color: #1e1a15;
  background: #f8efe3;
}

.jobs-page .site-header {
  background: rgba(17, 17, 15, 0.9);
}

.site-header.is-solid,
body.nav-open .site-header,
.jobs-page .site-header {
  background: #11110f;
}

.jobs-hero {
  position: relative;
  min-height: 680px;
  padding: 132px 0 76px;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(11, 10, 8, 0.88) 0%, rgba(34, 23, 15, 0.72) 45%, rgba(34, 23, 15, 0.18) 100%),
    url("美术资源/网页压缩图/photo-1408.jpg") center / cover no-repeat;
  overflow: hidden;
}

.jobs-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.12), rgba(0, 0, 0, 0.58)),
    radial-gradient(circle at 24% 34%, rgba(218, 126, 49, 0.2), transparent 32%);
  pointer-events: none;
}

.jobs-hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(340px, 0.56fr);
  gap: 56px;
  align-items: end;
}

.jobs-hero-copy {
  width: min(620px, 100%);
  padding-bottom: 18px;
}

.jobs-hero-copy .eyebrow {
  color: #f7d8b6;
  font-size: 16px;
  font-weight: 800;
}

.jobs-hero-copy h1 {
  margin-bottom: 22px;
  color: #fff;
  text-shadow: 0 16px 34px rgba(0, 0, 0, 0.28);
}

.jobs-hero-copy p {
  width: min(560px, 100%);
  color: rgba(255, 246, 234, 0.88);
  font-size: 16px;
}

.jobs-hero-panel {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(21, 18, 14, 0.48);
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.34);
  backdrop-filter: blur(12px);
}

.jobs-hero-panel img {
  grid-column: 1 / -1;
  width: 100%;
  height: 260px;
  object-fit: cover;
}

.jobs-hero-panel div {
  padding: 22px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
}

.jobs-hero-panel div + div {
  border-left: 1px solid rgba(255, 255, 255, 0.14);
}

.jobs-hero-panel strong {
  color: #fff;
  font-size: 24px;
}

.jobs-hero-panel span {
  color: rgba(255, 244, 229, 0.76);
}

.jobs-benefits,
.openings-section,
.apply-section {
  background:
    linear-gradient(90deg, rgba(72, 45, 20, 0.07) 1px, transparent 1px),
    linear-gradient(0deg, rgba(72, 45, 20, 0.05) 1px, transparent 1px),
    linear-gradient(180deg, #fff8eb, #f5e6d1);
  background-size: 52px 52px, 52px 52px, auto;
}

.jobs-benefits {
  padding: 62px 0 36px;
}

.jobs-section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 22px;
}

.benefit-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.benefit-card,
.opening-card,
.apply-card {
  border-radius: 8px;
  background: rgba(255, 253, 247, 0.95);
  box-shadow: 0 20px 48px rgba(83, 51, 22, 0.11);
}

.benefit-card {
  position: relative;
  min-height: 188px;
  padding: 26px;
  overflow: hidden;
}

.benefit-card::after {
  content: "";
  position: absolute;
  right: 18px;
  bottom: 16px;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(207, 114, 48, 0.26);
  border-radius: 50%;
}

.benefit-card span {
  color: #d16f29;
}

.benefit-card h3 {
  color: #2f241c;
  font-size: 24px;
}

.openings-section {
  padding: 34px 0 64px;
}

.openings-layout {
  grid-template-columns: 320px minmax(0, 1fr);
  gap: 36px;
}

.openings-copy {
  padding: 22px 0;
}

.opening-list {
  gap: 16px;
}

.opening-card {
  grid-template-columns: minmax(0, 1.1fr) minmax(220px, 0.78fr) auto;
  padding: 24px;
  border-left: 5px solid #d16f29;
}

.opening-card span {
  color: #d16f29;
  font-weight: 900;
}

.opening-card h3 {
  color: #2f241c;
}

.opening-card a {
  background: #cf7230;
  box-shadow: 0 10px 24px rgba(207, 114, 48, 0.22);
}

.apply-section {
  padding-bottom: 66px;
}

.apply-card {
  border: 1px solid rgba(139, 87, 38, 0.14);
}

.reveal-on-scroll {
  opacity: 1;
  transform: none;
}

.js-reveal .reveal-on-scroll {
  opacity: 1;
  transform: none;
}

.js-reveal .reveal-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1080px) {
  .history-timeline {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-left: 26px;
  }

  .history-timeline::before {
    left: 4px;
    right: auto;
    top: 0;
    bottom: 0;
    width: 6px;
    height: auto;
    clip-path: none;
    border-radius: 999px;
    transform: none;
  }

  .history-timeline::after {
    display: none;
  }

  .history-item,
  .history-item.is-top,
  .history-item.is-bottom {
    position: relative;
    min-height: auto;
    grid-template-rows: none;
    grid-template-columns: 88px minmax(0, 1fr);
    gap: 16px;
    justify-items: stretch;
    margin-bottom: 16px;
  }

  .history-item::before {
    content: "";
    position: absolute;
    left: -29px;
    top: 26px;
    width: 14px;
    height: 14px;
    border: 3px solid #fff8eb;
    border-radius: 50%;
    background: #cf7230;
    box-shadow: 0 0 0 5px rgba(207, 114, 48, 0.16);
  }

  .history-item > strong,
  .history-item.is-top > strong,
  .history-item.is-bottom > strong {
    grid-column: 1;
    grid-row: 1;
    align-self: start;
    justify-content: flex-start;
    color: #cf7230;
    font-size: 30px;
    text-shadow: none;
  }

  .history-item > strong::before {
    content: "";
    display: none;
  }

  .history-card,
  .history-item.is-top .history-card,
  .history-item.is-bottom .history-card {
    grid-column: 2;
    grid-row: 1;
    width: 100%;
    margin: 0;
  }

  .jobs-hero-inner,
  .openings-layout,
  .apply-card {
    grid-template-columns: 1fr;
  }

  .opening-card {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .history-section {
    padding: 38px 0 42px;
  }

  .history-head h2 {
    font-size: 31px;
  }

  .history-card::before {
    height: 70px;
  }

  .jobs-hero {
    min-height: auto;
    padding: 104px 0 36px;
  }

  .jobs-hero-copy h1 {
    font-size: 39px;
  }

  .jobs-hero-panel {
    grid-template-columns: 1fr;
  }

  .jobs-hero-panel img {
    height: 190px;
  }

  .jobs-hero-panel div + div {
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.14);
  }

  .jobs-section-head {
    display: block;
  }

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

/* Final navigation and full-width history timeline correction. */
.site-header,
.site-header.is-solid,
body.nav-open .site-header,
.jobs-page .site-header {
  background: #10100f;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.22);
}

.header-inner {
  width: min(100% - 56px, 1320px);
  min-height: 78px;
  display: grid;
  grid-template-columns: 170px minmax(0, 1fr);
  align-items: center;
  gap: 30px;
}

.site-nav {
  min-width: 0;
  width: 100%;
  justify-content: space-between;
  gap: clamp(10px, 1.1vw, 18px);
  font-size: 14px;
}

.site-nav a {
  padding: 27px 0 23px;
}

.site-nav a::after {
  bottom: 18px;
}

.history-section {
  padding: 72px 0 78px;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(74, 49, 25, 0.055) 1px, transparent 1px),
    linear-gradient(0deg, rgba(74, 49, 25, 0.045) 1px, transparent 1px),
    linear-gradient(180deg, #fff8ec 0%, #f4e3ca 100%);
  background-size: 52px 52px, 52px 52px, auto;
}

.history-section::before {
  background:
    radial-gradient(circle at 10% 20%, rgba(207, 114, 48, 0.12), transparent 24%),
    radial-gradient(circle at 88% 76%, rgba(70, 43, 20, 0.1), transparent 28%);
}

.history-head {
  width: min(640px, 100%);
  margin-bottom: 30px;
}

.history-head .section-label {
  font-size: 22px;
}

.history-head h2 {
  color: #4b2b18;
  font-size: clamp(32px, 3.1vw, 46px);
  line-height: 1.22;
}

.history-head p:last-child {
  width: min(680px, 100%);
  color: #5f5245;
  font-size: 15px;
}

.history-timeline {
  width: 100vw;
  min-height: 430px;
  margin: 28px 0 0 calc(50% - 50vw);
  padding: 0 clamp(26px, 4.4vw, 78px);
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0;
  align-items: stretch;
  position: relative;
  isolation: isolate;
}

.history-timeline::before,
.history-timeline::after {
  left: 0;
  right: 0;
  top: 146px;
  height: 116px;
  transform: none;
  clip-path: polygon(0 0, calc(100% - 48px) 0, 100% 50%, calc(100% - 48px) 100%, 0 100%);
  z-index: -1;
}

.history-timeline::before {
  background:
    linear-gradient(rgba(255, 255, 255, 0.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.14) 1px, transparent 1px),
    linear-gradient(90deg, #7d3816 0%, #b6571f 38%, #dc7b2c 70%, #f0a24b 100%);
  background-size: 20px 20px, 20px 20px, auto;
  box-shadow: 0 24px 45px rgba(132, 68, 24, 0.22);
}

.history-timeline::after {
  display: block;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.2), transparent 16%, transparent 84%, rgba(255, 255, 255, 0.16)),
    linear-gradient(180deg, rgba(255, 255, 255, 0.18), transparent 48%, rgba(0, 0, 0, 0.12));
}

.history-item,
.history-item.is-top,
.history-item.is-bottom {
  min-height: 430px;
  display: grid;
  grid-template-rows: 146px 116px 168px;
  justify-items: center;
  align-self: stretch;
  gap: 0;
  padding: 0 clamp(6px, 0.9vw, 16px);
  position: relative;
}

.history-item::after {
  content: "";
  position: absolute;
  display: none;
  top: 198px;
  left: 50%;
  width: 9px;
  height: 9px;
  border: 3px solid rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  background: #8c3e18;
  transform: translateX(-50%);
  box-shadow: 0 0 0 6px rgba(255, 255, 255, 0.14);
}

.history-item.is-top .history-card {
  grid-row: 1;
  align-self: end;
  margin: 0 0 16px;
}

.history-item.is-bottom .history-card {
  grid-row: 3;
  align-self: start;
  margin: 16px 0 0;
}

.history-item.is-top > strong,
.history-item.is-bottom > strong {
  grid-row: 2;
}

.history-item > strong {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-width: 0;
  color: #fff;
  font-family: Arial, "Microsoft YaHei", sans-serif;
  font-size: clamp(44px, 4.2vw, 66px);
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0;
  text-shadow: 0 10px 22px rgba(76, 36, 11, 0.26);
  white-space: nowrap;
}

.history-item > strong::before {
  content: ">";
  margin-right: 7px;
  color: rgba(255, 255, 255, 0.94);
  font-size: 0.7em;
  line-height: 1;
}

.history-card {
  width: min(214px, 100%);
  min-height: 0;
  padding: 0 14px 12px;
  overflow: hidden;
  border: 1px solid rgba(122, 74, 34, 0.12);
  border-radius: 7px;
  background: rgba(255, 253, 247, 0.96);
  box-shadow: 0 14px 30px rgba(70, 43, 19, 0.1);
}

.history-card::before {
  height: 58px;
  margin: 0 -14px 11px;
}

.history-card span {
  display: block;
  color: #d16f29;
  font-size: 12px;
  font-weight: 900;
  line-height: 1.35;
}

.history-card h3 {
  display: none;
}

.history-card p {
  margin-top: 6px;
  color: #675a4d;
  font-size: 12px;
  line-height: 1.55;
}

@media (max-width: 1180px) and (min-width: 901px) {
  .header-inner {
    width: min(100% - 36px, 1180px);
  }

  .site-nav {
    gap: 18px;
    font-size: 14px;
  }

  .history-timeline {
    padding: 0 28px;
  }

  .history-item > strong {
    font-size: clamp(38px, 4vw, 50px);
  }

  .history-card {
    width: min(190px, 100%);
  }
}

@media (max-width: 900px) {
  .history-timeline {
    width: auto;
    min-height: auto;
    margin: 20px 0 0;
    padding: 0 0 0 26px;
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .history-timeline::before {
    left: 4px;
    right: auto;
    top: 0;
    bottom: 0;
    width: 6px;
    height: auto;
    clip-path: none;
    border-radius: 999px;
    transform: none;
  }

  .history-timeline::after {
    display: none;
  }

  .history-item,
  .history-item.is-top,
  .history-item.is-bottom {
    min-height: auto;
    grid-template-rows: none;
    grid-template-columns: 84px minmax(0, 1fr);
    justify-items: stretch;
    gap: 14px;
    padding: 0;
    margin: 0;
  }

  .history-item::after {
    top: 26px;
    left: -21px;
    display: block;
    width: 13px;
    height: 13px;
    border: 3px solid #fff8eb;
    background: #cf7230;
    transform: none;
    box-shadow: 0 0 0 5px rgba(207, 114, 48, 0.15);
  }

  .history-item > strong,
  .history-item.is-top > strong,
  .history-item.is-bottom > strong {
    grid-column: 1;
    grid-row: 1;
    align-self: start;
    justify-content: flex-start;
    color: #cf7230;
    font-size: 29px;
    text-shadow: none;
  }

  .history-item > strong::before {
    display: none;
  }

  .history-card,
  .history-item.is-top .history-card,
  .history-item.is-bottom .history-card {
    grid-column: 2;
    grid-row: 1;
    width: 100%;
    margin: 0;
  }
}

@media (max-width: 760px) {
  .header-inner {
    width: min(100% - 28px, 1180px);
    min-height: 62px;
  }

  .site-nav {
    inset: 62px 0 auto;
  }

  .site-nav a {
    padding: 12px 10px;
  }

  .history-section {
    padding: 40px 0 44px;
  }

  .history-head {
    margin-bottom: 20px;
  }

  .history-head .section-label {
    font-size: 20px;
  }

  .history-head h2 {
    font-size: 30px;
  }

  .history-card::before {
    height: 66px;
  }
}
