/* Homepage visual system. Kept separate so the recruitment page remains isolated. */
.home-page {
  --home-ink: #1c211d;
  --home-muted: #667068;
  --home-paper: #f7f7f3;
  --home-white: #ffffff;
  --home-green: #1c2b22;
  --home-green-soft: #e9eee8;
  --home-orange: #d66b27;
  --home-orange-dark: #a84418;
  --home-line: rgba(28, 43, 34, 0.12);
  --home-shadow: 0 22px 58px rgba(27, 34, 29, 0.12);
  --max: 1240px;
  color: var(--home-ink);
  background: var(--home-paper);
  letter-spacing: 0;
}

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

.home-page main > section {
  scroll-margin-top: 84px;
}

.home-page #service,
.home-page #news,
.home-page #join {
  scroll-margin-top: 96px;
}

.home-page .site-header,
.home-page .site-header.is-solid,
.home-page.nav-open .site-header {
  background: rgba(17, 19, 16, 0.97);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: none;
  backdrop-filter: blur(14px);
}

.home-page .site-header.is-solid {
  box-shadow: 0 10px 32px rgba(0, 0, 0, 0.16);
}

.home-page .header-inner {
  width: min(100% - 64px, 1320px);
  min-height: 74px;
  grid-template-columns: 176px minmax(0, 1fr);
  gap: 48px;
}

.home-page .brand,
.home-page .brand-logo {
  width: 166px;
  min-width: 0;
}

.home-page .site-nav {
  justify-content: flex-end;
  gap: 38px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 14px;
  font-weight: 600;
}

.home-page .site-nav a {
  padding: 27px 0 23px;
  transition: color 0.2s ease;
}

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

.home-page .site-nav a::after {
  bottom: 16px;
  width: 0;
  height: 2px;
  border-radius: 0;
  background: var(--home-orange);
  transform: translateX(-50%);
  transition: width 0.2s ease;
}

.home-page .site-nav a:hover::after,
.home-page .site-nav a.active::after {
  width: 24px;
}

.home-page .hero {
  min-height: 680px;
  align-items: center;
  background:
    linear-gradient(90deg, rgba(7, 10, 8, 0.82) 0%, rgba(7, 10, 8, 0.55) 43%, rgba(7, 10, 8, 0.12) 76%),
    url("美术资源/网页压缩图/hero-1393.jpg") center 45% / cover no-repeat;
}

.home-page .hero::after {
  inset: 0;
  height: auto;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.12) 58%, rgba(0, 0, 0, 0.54) 100%);
}

.home-page .hero-content {
  width: min(100% - 64px, var(--max));
  margin: 54px auto 0;
}

.home-page .eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  color: rgba(255, 247, 236, 0.88);
  font-size: 17px;
  font-weight: 600;
}

.home-page .eyebrow::before {
  content: "";
  width: 34px;
  height: 2px;
  background: var(--home-orange);
}

.home-page .hero h1 {
  max-width: 650px;
  margin-bottom: 30px;
  font-size: 68px;
  line-height: 1.14;
  text-shadow: 0 16px 42px rgba(0, 0, 0, 0.32);
}

.home-page .btn {
  min-height: 44px;
  padding: 0 22px;
  border-radius: 4px;
  font-size: 14px;
  transition: transform 0.2s ease, background-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.home-page .btn::after {
  content: "→";
  margin-left: 12px;
}

.home-page .btn:hover {
  transform: translateY(-2px);
}

.home-page .btn-primary {
  background: var(--home-orange);
  box-shadow: 0 14px 30px rgba(214, 107, 39, 0.28);
}

.home-page .btn-primary:hover {
  background: #e27935;
  box-shadow: 0 18px 38px rgba(214, 107, 39, 0.34);
}

.home-page .hero-facts {
  position: absolute;
  right: max(32px, calc((100% - var(--max)) / 2));
  bottom: 34px;
  z-index: 2;
  width: min(590px, calc(100% - 64px));
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid rgba(255, 255, 255, 0.32);
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(13, 18, 14, 0.46);
  backdrop-filter: blur(10px);
}

.home-page .hero-facts div {
  min-width: 0;
  padding: 15px 20px 16px;
}

.home-page .hero-facts div + div {
  border-left: 1px solid rgba(255, 255, 255, 0.18);
}

.home-page .hero-facts span,
.home-page .hero-facts strong {
  display: block;
}

.home-page .hero-facts span {
  margin-bottom: 3px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 11px;
}

.home-page .hero-facts strong {
  overflow: hidden;
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.home-page .hero-dots {
  display: none;
}

.home-page .about-section {
  padding: 102px 0;
  background: var(--home-white);
}

.home-page .about-card {
  grid-template-columns: minmax(0, 0.86fr) minmax(520px, 1.14fr);
  gap: 84px;
}

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

.home-page .section-label {
  margin-bottom: 17px;
  color: var(--home-orange-dark);
  font-family: "Microsoft YaHei", "PingFang SC", sans-serif;
  font-size: 14px;
  font-weight: 800;
}

.home-page .section-label::after {
  width: 30px;
  height: 2px;
  margin-top: 10px;
  background: var(--home-orange);
}

.home-page .section-copy h2,
.home-page .history-head h2,
.home-page .info-intro h2,
.home-page .join-copy h2 {
  color: var(--home-ink);
  font-size: 46px;
  font-weight: 500;
  line-height: 1.2;
}

.home-page .section-copy p {
  margin-bottom: 12px;
  color: #4f5951;
  font-size: 15px;
  line-height: 1.85;
}

.home-page .about-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 26px 0 20px;
  padding: 18px 0;
  border-top: 1px solid var(--home-line);
  border-bottom: 1px solid var(--home-line);
}

.home-page .about-facts div + div {
  padding-left: 18px;
  border-left: 1px solid var(--home-line);
}

.home-page .about-facts strong,
.home-page .about-facts span {
  display: block;
}

.home-page .about-facts strong {
  color: var(--home-green);
  font-family: Arial, sans-serif;
  font-size: 27px;
  line-height: 1.15;
}

.home-page .about-facts span {
  margin-top: 5px;
  color: var(--home-muted);
  font-size: 11px;
}

.home-page .value-tags {
  gap: 8px;
  margin: 0 0 24px;
}

.home-page .value-tags span {
  min-width: 56px;
  padding: 5px 11px;
  border: 1px solid #dce5dc;
  border-radius: 3px;
  color: #3d5a45;
  background: #f0f4ef;
  font-size: 12px;
}

.home-page .btn-outline {
  color: var(--home-ink);
  border-color: rgba(28, 43, 34, 0.3);
  background: transparent;
}

.home-page .btn-outline:hover {
  color: #fff;
  border-color: var(--home-green);
  background: var(--home-green);
}

.home-page .about-media {
  overflow: hidden;
  border-radius: 8px;
  background: #dfe5df;
  box-shadow: var(--home-shadow);
}

.home-page .about-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 66%, rgba(10, 14, 11, 0.56));
  pointer-events: none;
}

.home-page .about-media img {
  width: 100%;
  aspect-ratio: 1.28;
  object-fit: cover;
  transition: opacity 0.25s ease, transform 0.6s ease;
}

.home-page .about-media:hover img {
  transform: scale(1.015);
}

.home-page .about-media.is-changing img {
  opacity: 0.42;
}

.home-page .about-media-caption {
  position: absolute;
  left: 24px;
  bottom: 20px;
  z-index: 2;
}

.home-page .about-media-caption span,
.home-page .about-media-caption strong {
  display: block;
  color: #fff;
}

.home-page .about-media-caption span {
  margin-bottom: 2px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 10px;
}

.home-page .about-media-caption strong {
  font-size: 18px;
}

.home-page .media-controls {
  left: auto;
  right: 20px;
  bottom: 18px;
  z-index: 3;
}

.home-page .media-controls button {
  width: 34px;
  height: 34px;
  border-color: rgba(255, 255, 255, 0.5);
  background: rgba(10, 14, 11, 0.46);
  transition: background-color 0.2s ease;
}

.home-page .media-controls button:hover {
  background: var(--home-orange);
}

.home-page .media-controls button::before {
  inset: 11px 12px 11px 10px;
}

.home-page .media-controls button:last-child::before {
  inset: 11px 10px 11px 12px;
}

.home-page .categories-section {
  padding: 84px 0 0;
  overflow: hidden;
  color: #fff;
  background: var(--home-green);
}

.home-page .section-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 56px;
  margin-bottom: 34px;
  padding: 0;
  border: 0;
}

.home-page .section-heading > div {
  min-width: 0;
}

.home-page .section-heading .section-label {
  color: #f0a06a;
}

.home-page .section-heading h2 {
  margin: 0;
  color: #fff;
  font-size: 34px;
  font-weight: 500;
}

.home-page .section-heading > p {
  width: min(420px, 100%);
  margin: 0 0 2px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 14px;
  line-height: 1.75;
}

.home-page .category-marquee {
  position: relative;
  width: 100%;
  overflow: hidden;
  margin-top: 42px;
  background: #0f2118;
  isolation: isolate;
}

.home-page .category-marquee::before,
.home-page .category-marquee::after {
  position: absolute;
  z-index: 3;
  top: 0;
  bottom: 0;
  width: min(6vw, 80px);
  content: "";
  pointer-events: none;
}

.home-page .category-marquee::before {
  left: 0;
  background: linear-gradient(90deg, rgba(15, 33, 24, 0.68), transparent);
}

.home-page .category-marquee::after {
  right: 0;
  background: linear-gradient(270deg, rgba(15, 33, 24, 0.68), transparent);
}

.home-page .category-marquee-track {
  display: flex;
  width: max-content;
  will-change: transform;
}

.home-page .category-marquee-track.is-ready {
  animation: category-marquee 68s linear infinite;
}

.home-page .category-marquee:hover .category-marquee-track,
.home-page .category-marquee:focus-within .category-marquee-track,
.home-page .category-marquee:active .category-marquee-track {
  animation-play-state: paused;
}

.home-page .category-marquee-group {
  display: flex;
  flex: none;
}

.home-page .category-slide {
  position: relative;
  flex: 0 0 clamp(230px, 18vw, 320px);
  overflow: hidden;
  margin: 0;
  aspect-ratio: 4 / 3;
  background: #17281f;
}

.home-page .category-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.2, 0.7, 0.2, 1), filter 0.4s ease;
}

.home-page .category-slide:hover img {
  filter: saturate(1.08) brightness(1.04);
  transform: scale(1.055);
}

@keyframes category-marquee {
  to {
    transform: translateX(-50%);
  }
}

.home-page .history-section {
  padding: 96px 0 104px;
  background:
    linear-gradient(90deg, rgba(42, 52, 44, 0.045) 1px, transparent 1px),
    linear-gradient(0deg, rgba(42, 52, 44, 0.04) 1px, transparent 1px),
    #f3f0e9;
  background-size: 56px 56px, 56px 56px, auto;
}

.home-page .history-section::before {
  display: none;
}

.home-page .history-head {
  width: min(740px, 100%);
  margin: 0 auto 42px;
  text-align: center;
}

.home-page .history-head .section-label::after {
  margin-right: auto;
  margin-left: auto;
}

.home-page .history-head h2 {
  margin-bottom: 18px;
  color: var(--home-ink);
  font-size: 43px;
}

.home-page .history-head p:last-child {
  width: min(680px, 100%);
  margin: 0 auto;
  color: var(--home-muted);
  font-size: 14px;
  line-height: 1.8;
}

.home-page .history-timeline {
  width: 100vw;
  min-height: 430px;
  margin: 0 0 0 calc(50% - 50vw);
  padding: 0 max(32px, calc((100vw - 1480px) / 2));
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0;
}

.home-page .history-timeline::before,
.home-page .history-timeline::after {
  top: 157px;
  height: 100px;
  clip-path: polygon(0 0, calc(100% - 54px) 0, 100% 50%, calc(100% - 54px) 100%, 0 100%);
}

.home-page .history-timeline::before {
  background: linear-gradient(90deg, #743113 0%, #a94718 32%, #d66b27 68%, #ee9a56 100%);
  box-shadow: 0 20px 44px rgba(128, 60, 21, 0.2);
}

.home-page .history-timeline::after {
  display: block;
  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: 22px 22px;
}

.home-page .history-item,
.home-page .history-item.is-top,
.home-page .history-item.is-bottom {
  min-height: 430px;
  grid-template-rows: 157px 100px 173px;
  padding: 0 12px;
}

.home-page .history-item::after {
  display: none;
}

.home-page .history-item.is-top .history-card {
  margin-bottom: 14px;
}

.home-page .history-item.is-bottom .history-card {
  margin-top: 14px;
}

.home-page .history-item > strong {
  color: #fff;
  font-size: 52px;
  text-shadow: 0 10px 24px rgba(92, 39, 12, 0.24);
}

.home-page .history-item > strong::before {
  margin-right: 7px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 31px;
}

.home-page .history-card {
  width: min(210px, 100%);
  min-height: 142px;
  padding: 0 14px 13px;
  border: 1px solid rgba(28, 43, 34, 0.11);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 15px 34px rgba(36, 42, 37, 0.1);
}

.home-page .history-card::before {
  height: 54px;
  margin: 0 -14px 10px;
  filter: saturate(0.86) contrast(0.98);
}

.home-page .history-card span {
  color: var(--home-orange-dark);
  font-size: 11px;
}

.home-page .history-card p {
  margin-top: 5px;
  color: #667068;
  font-size: 11px;
  line-height: 1.55;
}

.home-page .info-section {
  padding: 92px 0 96px;
  background: #edf0eb;
}

.home-page .info-section::before {
  display: none;
}

.home-page .info-intro {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 50px;
  margin-bottom: 32px;
}

.home-page .info-intro h2 {
  margin: 0;
  font-size: 38px;
}

.home-page .info-intro > p {
  width: min(430px, 100%);
  margin: 0 0 2px;
  color: var(--home-muted);
  font-size: 14px;
  line-height: 1.75;
}

.home-page .info-grid {
  grid-template-columns: 0.9fr 1.36fr 1.05fr;
  gap: 18px;
}

.home-page .promise-panel,
.home-page .news-panel,
.home-page .join-panel {
  min-width: 0;
  min-height: 430px;
  border: 1px solid var(--home-line);
  border-radius: 8px;
  box-shadow: 0 16px 40px rgba(31, 40, 33, 0.08);
  backdrop-filter: none;
}

.home-page .promise-panel,
.home-page .news-panel {
  padding: 28px;
}

.home-page .promise-panel {
  background: #e2e9e1;
}

.home-page .news-panel {
  background: #fff;
}

.home-page .promise-panel .section-label,
.home-page .news-panel .section-label {
  margin-bottom: 9px;
  font-size: 13px;
}

.home-page .promise-panel h2,
.home-page .news-panel h2,
.home-page .site-footer h2 {
  color: var(--home-ink);
  font-size: 25px;
}

.home-page .promise-list {
  gap: 0;
  margin-top: 28px;
}

.home-page .promise-list li {
  min-height: 62px;
  grid-template-columns: 28px minmax(0, 1fr);
  gap: 12px;
  padding: 12px 0;
  border-top: 1px solid rgba(28, 43, 34, 0.12);
}

.home-page .promise-list span {
  width: 27px;
  height: 27px;
  color: #fff;
  border: 0;
  border-radius: 50%;
  background: var(--home-green);
  font-size: 11px;
}

.home-page .promise-list strong {
  font-size: 14px;
}

.home-page .promise-list em {
  grid-column: 2;
  margin-top: -10px;
  color: #778078;
  font-size: 11px;
}

.home-page .panel-heading {
  margin-bottom: 20px;
}

.home-page .panel-heading a {
  color: var(--home-orange-dark);
  font-size: 12px;
}

.home-page .panel-heading a::after {
  content: "→";
}

.home-page .news-list {
  grid-template-columns: 1fr;
  gap: 0;
}

.home-page .news-card {
  display: grid;
  grid-template-columns: 124px minmax(0, 1fr);
  align-items: stretch;
  overflow: hidden;
  min-height: 94px;
  border: 0;
  border-top: 1px solid var(--home-line);
  border-radius: 0;
  box-shadow: none;
}

.home-page .news-card img {
  width: 124px;
  height: 100%;
  min-height: 94px;
  aspect-ratio: auto;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.home-page .news-card:hover img {
  transform: scale(1.04);
}

.home-page .news-card div {
  min-width: 0;
  padding: 16px 8px 14px 16px;
}

.home-page .news-card time {
  color: #8a938c;
  font-size: 10px;
}

.home-page .news-card h3 {
  display: -webkit-box;
  overflow: hidden;
  margin-top: 5px;
  color: var(--home-ink);
  font-size: 13px;
  line-height: 1.45;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.home-page .join-panel {
  background: var(--home-green);
}

.home-page .join-panel::after {
  background: linear-gradient(180deg, rgba(9, 16, 11, 0.02) 30%, rgba(9, 16, 11, 0.18) 58%, rgba(9, 16, 11, 0.78));
}

.home-page .join-panel img {
  min-height: 430px;
  object-position: 66% 50%;
  filter: saturate(0.98) contrast(1.02);
}

.home-page .join-copy {
  inset: auto 28px 30px;
  width: auto;
}

.home-page .join-copy .section-label {
  color: #ffc59e;
}

.home-page .join-copy .section-label::after {
  background: var(--home-orange);
}

.home-page .join-copy h2 {
  margin-bottom: 20px;
  color: #fff;
  font-size: 29px;
  line-height: 1.28;
}

.home-page .btn-light {
  color: var(--home-ink);
  background: #fff;
}

.home-page .site-footer {
  color: rgba(255, 255, 255, 0.68);
  background: #111410;
}

.home-page .footer-grid {
  grid-template-columns: 1fr 0.92fr 1.4fr;
  gap: 52px;
  padding: 58px 0 48px;
}

.home-page .footer-logo {
  width: 166px;
  margin-bottom: 22px;
}

.home-page .footer-about h2 {
  display: none;
}

.home-page .site-footer h2 {
  margin-bottom: 17px;
  color: #fff;
  font-size: 18px;
}

.home-page .site-footer p,
.home-page .contact-list {
  font-size: 13px;
  line-height: 1.8;
}

.home-page .btn-footer {
  min-height: 36px;
  padding: 0 16px;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.24);
  background: transparent;
  font-size: 12px;
}

.home-page .footer-store img {
  height: 164px;
  border-radius: 6px;
}

.home-page .follow-box {
  display: block;
}

.home-page .media-qr-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.home-page .media-qr {
  min-width: 0;
  margin: 0;
  text-align: center;
}

.home-page .media-qr img {
  display: block;
  width: min(112px, 100%);
  aspect-ratio: 1;
  margin: 0 auto;
  padding: 5px;
  border-radius: 4px;
  background: #fff;
  object-fit: contain;
}

.home-page .media-qr figcaption {
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
  line-height: 1.45;
}

.home-page .footer-bottom {
  min-height: 48px;
  border-top-color: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.38);
}

.js-reveal .home-page .reveal-on-scroll {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.58s ease, transform 0.58s ease;
  transition-delay: var(--reveal-delay, 0ms);
}

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

@media (max-width: 1220px) {
  .home-page .header-inner {
    width: min(100% - 40px, 1180px);
    gap: 28px;
  }

  .home-page .site-nav {
    gap: 22px;
    font-size: 13px;
  }

  .home-page .about-card {
    grid-template-columns: minmax(0, 0.9fr) minmax(470px, 1.1fr);
    gap: 54px;
  }

  .home-page .history-item > strong {
    font-size: 43px;
  }

  .home-page .info-grid {
    grid-template-columns: 0.92fr 1.3fr;
  }

  .home-page .join-panel {
    grid-column: 1 / -1;
    min-height: 340px;
  }

  .home-page .join-panel img {
    min-height: 340px;
    object-position: 54% 52%;
  }

  .home-page .join-panel::after {
    background: linear-gradient(90deg, rgba(9, 16, 11, 0.78), rgba(9, 16, 11, 0.18) 52%, rgba(9, 16, 11, 0.03));
  }

  .home-page .join-copy {
    inset: 50% auto auto 34px;
    width: min(420px, 70%);
    transform: translateY(-50%);
  }
}

@media (max-width: 900px) {
  .home-page .container {
    width: min(100% - 40px, var(--max));
  }

  .home-page .about-section {
    padding: 76px 0;
  }

  .home-page .about-card {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .home-page .section-copy {
    width: min(650px, 100%);
  }

  .home-page .about-media img {
    aspect-ratio: 1.6;
  }

  .home-page .history-timeline {
    width: auto;
    min-height: auto;
    margin: 28px 0 0;
    padding: 0 0 0 32px;
    grid-template-columns: 1fr;
    gap: 16px;
  }

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

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

  .home-page .history-item,
  .home-page .history-item.is-top,
  .home-page .history-item.is-bottom {
    min-height: auto;
    grid-template-columns: 82px minmax(0, 1fr);
    grid-template-rows: none;
    gap: 16px;
    padding: 0;
  }

  .home-page .history-item::after {
    top: 25px;
    left: -33px;
    display: block;
    width: 12px;
    height: 12px;
    border: 3px solid #f3f0e9;
    background: var(--home-orange);
    transform: none;
    box-shadow: 0 0 0 4px rgba(214, 107, 39, 0.17);
  }

  .home-page .history-item > strong,
  .home-page .history-item.is-top > strong,
  .home-page .history-item.is-bottom > strong {
    grid-column: 1;
    grid-row: 1;
    align-self: start;
    justify-content: flex-start;
    color: var(--home-orange-dark);
    font-size: 28px;
    text-shadow: none;
  }

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

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

  .home-page .info-intro {
    align-items: flex-start;
  }

  .home-page .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .home-page .media-qr-list {
    width: min(470px, 100%);
  }
}

@media (max-width: 820px) {
  .home-page .header-inner {
    grid-template-columns: 166px auto;
  }

  .home-page .nav-toggle {
    display: inline-flex;
    justify-self: end;
  }

  .home-page .site-nav {
    position: fixed;
    inset: 74px 0 auto;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0;
    padding: 12px 20px 20px;
    color: #fff;
    background: #111310;
    box-shadow: 0 20px 44px rgba(0, 0, 0, 0.26);
    transform: translateY(-125%);
    transition: transform 0.22s ease;
  }

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

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

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

@media (max-width: 760px) {
  .home-page .container {
    width: min(100% - 28px, var(--max));
  }

  .home-page main > section {
    scroll-margin-top: 68px;
  }

  .home-page #service,
  .home-page #news,
  .home-page #join {
    scroll-margin-top: 78px;
  }

  .home-page .header-inner {
    width: min(100% - 28px, var(--max));
    min-height: 64px;
    grid-template-columns: 126px auto;
    gap: 18px;
  }

  .home-page .brand,
  .home-page .brand-logo {
    width: 124px;
  }

  .home-page .nav-toggle {
    justify-self: end;
  }

  .home-page .site-nav {
    inset: 64px 0 auto;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0;
    padding: 12px 14px 18px;
    font-size: 13px;
    background: #111310;
  }

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

  .home-page .hero {
    min-height: 570px;
    align-items: start;
    background-position: 62% center;
  }

  .home-page .hero::after {
    background: linear-gradient(180deg, rgba(5, 7, 6, 0.22), rgba(5, 7, 6, 0.45) 48%, rgba(5, 7, 6, 0.86) 100%);
  }

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

  .home-page .eyebrow {
    margin-bottom: 12px;
    font-size: 14px;
  }

  .home-page .eyebrow::before {
    width: 24px;
  }

  .home-page .hero h1 {
    max-width: 390px;
    margin-bottom: 22px;
    font-size: 45px;
    line-height: 1.12;
  }

  .home-page .btn {
    min-height: 40px;
    padding: 0 18px;
    border-radius: 4px;
    font-size: 13px;
  }

  .home-page .hero-facts {
    right: 14px;
    bottom: 20px;
    width: calc(100% - 28px);
  }

  .home-page .hero-facts div {
    padding: 11px 9px 12px;
  }

  .home-page .hero-facts span {
    font-size: 9px;
  }

  .home-page .hero-facts strong {
    font-size: 11px;
  }

  .home-page .about-section {
    padding: 58px 0 62px;
  }

  .home-page .about-card {
    margin: 0 auto;
    padding: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }

  .home-page .section-copy h2,
  .home-page .history-head h2,
  .home-page .info-intro h2 {
    font-size: 34px;
  }

  .home-page .section-copy p {
    font-size: 14px;
    line-height: 1.78;
  }

  .home-page .about-facts {
    margin-top: 22px;
  }

  .home-page .about-facts div + div {
    padding-left: 10px;
  }

  .home-page .about-facts strong {
    font-size: 22px;
  }

  .home-page .about-facts span {
    font-size: 10px;
  }

  .home-page .about-media img {
    aspect-ratio: 1.35;
  }

  .home-page .about-media-caption {
    left: 16px;
    bottom: 14px;
  }

  .home-page .media-controls {
    right: 12px;
    bottom: 12px;
  }

  .home-page .categories-section {
    padding: 58px 0 0;
  }

  .home-page .section-heading {
    display: block;
    margin-bottom: 24px;
  }

  .home-page .section-heading h2 {
    font-size: 28px;
  }

  .home-page .section-heading > p {
    margin-top: 12px;
    font-size: 13px;
  }

  .home-page .category-marquee {
    margin-top: 30px;
  }

  .home-page .category-marquee::before,
  .home-page .category-marquee::after {
    display: none;
  }

  .home-page .category-marquee-track.is-ready {
    animation-duration: 56s;
  }

  .home-page .category-slide {
    flex-basis: min(70vw, 280px);
  }

  .home-page .history-section {
    padding: 60px 0 64px;
  }

  .home-page .history-head {
    margin-bottom: 30px;
    text-align: left;
  }

  .home-page .history-head .section-label::after {
    margin-left: 0;
  }

  .home-page .history-head p:last-child {
    font-size: 13px;
  }

  .home-page .history-timeline {
    padding-left: 28px;
  }

  .home-page .history-item,
  .home-page .history-item.is-top,
  .home-page .history-item.is-bottom {
    grid-template-columns: 68px minmax(0, 1fr);
    gap: 12px;
  }

  .home-page .history-item::after {
    left: -28px;
  }

  .home-page .history-item > strong,
  .home-page .history-item.is-top > strong,
  .home-page .history-item.is-bottom > strong {
    font-size: 24px;
  }

  .home-page .history-card::before {
    height: 68px;
  }

  .home-page .history-card p {
    font-size: 12px;
  }

  .home-page .info-section {
    padding: 60px 0 64px;
  }

  .home-page .info-intro {
    display: block;
    margin-bottom: 26px;
  }

  .home-page .info-intro > p {
    margin-top: 12px;
    font-size: 13px;
  }

  .home-page .info-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .home-page .promise-panel,
  .home-page .news-panel,
  .home-page .join-panel {
    min-height: auto;
    border-radius: 8px;
  }

  .home-page .promise-panel,
  .home-page .news-panel {
    padding: 22px 18px;
  }

  .home-page .promise-list li {
    grid-template-columns: 27px minmax(0, 1fr) auto;
  }

  .home-page .promise-list em {
    grid-column: auto;
    margin-top: 0;
  }

  .home-page .news-card {
    grid-template-columns: 102px minmax(0, 1fr);
  }

  .home-page .news-card img {
    width: 102px;
  }

  .home-page .join-panel {
    min-height: 300px;
  }

  .home-page .join-panel img {
    min-height: 300px;
    object-position: 64% 50%;
  }

  .home-page .join-panel::after {
    background: linear-gradient(180deg, rgba(9, 16, 11, 0.02) 26%, rgba(9, 16, 11, 0.16) 52%, rgba(9, 16, 11, 0.82));
  }

  .home-page .join-copy {
    inset: auto 20px 22px;
    width: auto;
    transform: none;
  }

  .home-page .join-copy h2 {
    font-size: 26px;
  }

  .home-page .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 46px 0 38px;
  }

  .home-page .footer-grid section,
  .home-page .footer-grid section:first-child,
  .home-page .footer-grid section:nth-child(2),
  .home-page .follow-box {
    grid-column: auto;
    grid-row: auto;
  }

  .home-page .footer-store {
    display: none;
  }

  .home-page .follow-box h2 {
    display: block;
  }

  .home-page .media-qr-list {
    width: 100%;
    gap: 10px;
  }

  .home-page .media-qr img {
    width: min(96px, 100%);
    padding: 4px;
  }

  .home-page .media-qr figcaption {
    margin-top: 8px;
    font-size: 11px;
  }

  .home-page .footer-bottom {
    display: flex;
    justify-content: flex-start;
    gap: 6px 14px;
    padding: 14px;
    font-size: 10px;
  }

  .home-page .footer-bottom span + span::before {
    display: none;
  }
}

@media (max-width: 420px) {
  .home-page .hero h1 {
    font-size: 41px;
  }

  .home-page .hero-facts strong {
    font-size: 10px;
  }

  .home-page .promise-list li {
    grid-template-columns: 27px minmax(0, 1fr);
  }

  .home-page .promise-list em {
    grid-column: 2;
    margin-top: -8px;
  }
}

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

  .home-page .category-marquee-track.is-ready {
    animation: none;
  }
}
