:root {
  --bg: #f1f0ec;
  --surface: #fbfaf6;
  --surface-2: #e2e0da;
  --ink: #15110d;
  --muted: #6f6b64;
  --soft: #9b968e;
  --line: rgba(21, 17, 13, .14);
  --line-strong: rgba(21, 17, 13, .32);
  --accent: #a74428;
  --accent-2: #12385d;
  --max: 1540px;
  --ease: cubic-bezier(.22, 1, .36, 1);
}

* {
  box-sizing: border-box;
}

html {
  background: var(--bg);
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--ink);
  background:
    radial-gradient(circle at 16% 0%, rgba(251, 250, 246, .94), transparent 36rem),
    linear-gradient(180deg, #fbfaf6 0%, var(--bg) 44rem);
  font-family: "Noto Sans SC", "Instrument Sans", -apple-system, BlinkMacSystemFont, "PingFang SC", "Microsoft YaHei", sans-serif;
  line-height: 1.58;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

main,
.site-header,
.hero,
.intro-band,
.works-section,
.method-section,
.learning-section,
.about-section,
.contact-section {
  width: 100%;
  max-width: 100vw;
}

h1,
h2,
h3,
.lead,
.section-head p,
.intro-band p,
.about-section p {
  overflow-wrap: break-word;
  min-width: 0;
}

:root[data-lang="zh"] h1,
:root[data-lang="zh"] h2,
:root[data-lang="zh"] h3,
:root[data-lang="zh"] .lead {
  word-break: normal;
  overflow-wrap: break-word;
  text-wrap: balance;
}

:root[data-lang="zh"] .page-hero-copy h1 {
  max-width: 11.5em;
  line-height: 1.1;
}

:root[data-lang="zh"] .section-copy h2,
:root[data-lang="zh"] .section-head h2,
:root[data-lang="zh"] .intro-band h2,
:root[data-lang="zh"] .about-section h2 {
  max-width: 14em;
  line-height: 1.14;
}

:root[data-lang="zh"] .page-hero-copy h1,
:root[data-lang="zh"] .section-copy h2,
:root[data-lang="zh"] .section-head h2,
:root[data-lang="zh"] .intro-band h2,
:root[data-lang="zh"] .about-section h2,
:root[data-lang="zh"] .contact-section h2,
:root[data-lang="zh"] .detail-panel h2,
:root[data-lang="zh"] .note-card h2 {
  letter-spacing: 0;
  word-break: normal;
  overflow-wrap: break-word;
  text-wrap: balance;
}


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

img,
video {
  max-width: 100%;
}

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

.skip-link {
  position: absolute;
  left: 20px;
  top: -80px;
  z-index: 40;
  padding: 10px 14px;
  background: var(--ink);
  color: var(--surface);
}

.skip-link:focus {
  top: 20px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(18px, 3vw, 38px);
  min-height: 70px;
  padding: 0 clamp(18px, 4.5vw, 72px);
  background: rgba(241, 240, 236, .88);
  border-bottom: 1px solid rgba(21, 17, 13, .08);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: baseline;
  gap: 10px;
  font-family: "Instrument Sans", "Noto Sans SC", sans-serif;
  font-weight: 800;
}

.brand span {
  font-size: 23px;
}

.brand small {
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.header-panel {
  display: flex;
  align-items: center;
  gap: clamp(12px, 2.2vw, 28px);
}

.header-actions {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 2px;
  padding: 4px;
  border: 1px solid rgba(21, 17, 13, .1);
  border-radius: 999px;
  background: rgba(251, 250, 246, .58);
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.nav a {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 58px;
  min-height: 32px;
  padding: 0 12px;
  border-radius: 999px;
  transition: color 180ms var(--ease), background 180ms var(--ease);
}

.nav a:hover,
.nav a:focus-visible {
  color: var(--ink);
  background: rgba(21, 17, 13, .06);
}

.language-switch {
  display: inline-flex;
  padding: 3px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(251, 250, 246, .7);
}

.language-switch button,
.case-toolbar button,
.menu-toggle {
  font: inherit;
  cursor: pointer;
}

.language-switch button {
  min-width: 34px;
  min-height: 28px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.language-switch button.is-active {
  background: var(--ink);
  color: var(--surface);
}

.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 112px;
  min-height: 36px;
  padding: 0 16px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  background: var(--ink);
  color: var(--surface);
  font-size: 13px;
  font-weight: 800;
  transition: transform 180ms var(--ease), background 180ms var(--ease), color 180ms var(--ease);
}

.header-cta:hover,
.header-cta:focus-visible {
  transform: translateY(-1px);
  background: transparent;
  color: var(--ink);
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(251, 250, 246, .74);
}

.menu-toggle span {
  display: block;
  width: 16px;
  height: 1px;
  margin: 5px auto;
  background: var(--ink);
  transition: transform 220ms var(--ease);
}

.menu-toggle.is-open span:first-child {
  transform: translateY(3px) rotate(45deg);
}

.menu-toggle.is-open span:last-child {
  transform: translateY(-3px) rotate(-45deg);
}

.hero {
  position: relative;
  min-height: min(860px, calc(100svh - 74px));
  isolation: isolate;
  display: grid;
  align-items: center;
  padding: clamp(72px, 9vw, 132px) clamp(18px, 5vw, 80px);
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background: var(--surface);
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: -2;
  margin: 0;
}

.hero-media video,
.hero-media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  filter: saturate(1.08) contrast(1.06) brightness(1.03);
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(13, 15, 18, .46) 0%, rgba(13, 15, 18, .24) 34%, rgba(13, 15, 18, 0) 68%),
    linear-gradient(180deg, rgba(13, 15, 18, .08), rgba(13, 15, 18, 0) 42%);
}

.hero-media figcaption {
  position: absolute;
  right: clamp(18px, 5vw, 80px);
  bottom: 24px;
  z-index: 2;
  color: rgba(251, 250, 246, .56);
  font-size: 12px;
}

.hero-copy {
  max-width: 700px;
  min-width: 0;
  color: var(--surface);
  text-shadow: 0 12px 38px rgba(0, 0, 0, .22);
}

.hero .eyebrow {
  color: rgba(251, 250, 246, .78);
}

.eyebrow,
.section-kicker,
.work-copy p,
.case-card p,
.learning-grid p,
.method-list span {
  margin: 0;
  color: var(--accent);
  font-family: "Instrument Sans", "Noto Sans SC", sans-serif;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1,
h2,
h3 {
  font-family: "Instrument Sans", "Noto Sans SC", sans-serif;
  font-weight: 800;
  letter-spacing: 0;
}

h1 {
  max-width: 760px;
  margin: 18px 0 24px;
  color: #1d1914;
  font-size: 92px;
  line-height: 1.08;
}

.hero h1 {
  color: var(--surface);
}

h1 span {
  display: block;
}

:root[data-lang="zh"] .hero h1 {
  max-width: min(100%, 980px);
  line-height: .98;
}

:root[data-lang="zh"] .hero h1 span:first-child {
  white-space: nowrap;
}

:root[data-lang="zh"] .hero h1 span + span {
  margin-top: 16px;
  color: rgba(251, 250, 246, .78);
  font-size: clamp(20px, 2vw, 28px);
  font-weight: 700;
  line-height: 1.25;
}

:root[data-lang="zh"] .intro-band h2 {
  max-width: 17em;
}

h2 {
  margin: 0;
  max-width: 1080px;
  font-size: 56px;
  line-height: 1.06;
}

h3 {
  margin: 0;
  font-size: 28px;
  line-height: 1.16;
}

.lead {
  max-width: 680px;
  margin-bottom: 34px;
  color: var(--muted);
  font-size: 20px;
  line-height: 1.82;
}

.hero .lead {
  color: rgba(251, 250, 246, .78);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 21px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  font-weight: 800;
  transition: transform 220ms var(--ease), border-color 220ms var(--ease), background 220ms var(--ease);
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
  border-color: var(--ink);
}

.button.primary {
  background: var(--ink);
  color: var(--surface);
}

.button.secondary {
  background: rgba(251, 250, 246, .54);
}

.hero .button {
  border-color: rgba(251, 250, 246, .42);
}

.hero .button.primary {
  background: var(--surface);
  color: var(--ink);
}

.hero .button.secondary {
  background: rgba(251, 250, 246, .14);
  color: var(--surface);
  backdrop-filter: blur(12px);
}

.intro-band,
.works-section,
.method-section,
.learning-section,
.about-section,
.contact-section {
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(72px, 9vw, 132px) clamp(18px, 5vw, 80px);
  border-top: 1px solid var(--line);
}

.intro-band,
.about-section,
.contact-section {
  display: grid;
  grid-template-columns: minmax(130px, .26fr) minmax(0, 1fr);
  gap: clamp(28px, 6vw, 96px);
  min-width: 0;
}

.intro-band p:last-child,
.about-section p:last-child,
.contact-section p:last-child,
.section-head p {
  max-width: 820px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 20px;
  line-height: 1.8;
}

.client-strip {
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(38px, 5vw, 70px) clamp(18px, 5vw, 80px);
  border-top: 1px solid var(--line);
  overflow: hidden;
}

.client-strip-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: clamp(24px, 3vw, 38px);
}

.client-strip-head span {
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .02em;
}

.client-marquee {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 9%, #000 91%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 9%, #000 91%, transparent);
}

.client-track {
  width: max-content;
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  gap: clamp(44px, 6vw, 96px);
  transform: translate3d(0, 0, 0);
  animation: clientMarquee 24s linear infinite;
  will-change: transform;
}

.client-marquee:hover .client-track {
  animation-play-state: running;
}

.client-logo {
  height: 54px;
  min-width: 132px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  white-space: nowrap;
  opacity: .72;
}

.client-logo img {
  width: auto;
  height: 32px;
  max-width: 190px;
  display: block;
  object-fit: contain;
}

@keyframes clientMarquee {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    transform: translate3d(calc(-50% - clamp(22px, 3vw, 48px)), 0, 0);
  }
}

.section-head {
  display: grid;
  grid-template-columns: minmax(130px, .26fr) minmax(0, 1fr);
  gap: clamp(28px, 6vw, 96px);
  align-items: start;
  margin-bottom: clamp(36px, 5.6vw, 82px);
  min-width: 0;
}

.section-head .section-kicker {
  padding-top: 10px;
}

.service-section {
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(72px, 9vw, 132px) clamp(18px, 5vw, 80px);
  border-top: 1px solid var(--line);
}

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

.service-card {
  min-height: 280px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(22px, 2.5vw, 32px);
  border: 1px solid var(--line);
  background: rgba(251, 250, 246, .62);
}

.service-card p {
  margin: 0;
  color: var(--accent);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.service-card h3 {
  margin: 38px 0 18px;
  font-size: clamp(27px, 2.25vw, 38px);
  line-height: 1.08;
}

.service-card span {
  color: var(--muted);
  font-weight: 700;
}

.service-card-warm {
  background: linear-gradient(145deg, rgba(167, 68, 40, .12), rgba(251, 250, 246, .8));
}

.service-card-blue {
  background: linear-gradient(145deg, rgba(18, 56, 93, .13), rgba(251, 250, 246, .82));
}

.service-card-green {
  background: linear-gradient(145deg, rgba(82, 104, 78, .15), rgba(251, 250, 246, .84));
}

.service-card-neutral {
  background: linear-gradient(145deg, rgba(21, 17, 13, .08), rgba(251, 250, 246, .88));
}

.service-path {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: clamp(18px, 3vw, 36px);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.service-path article {
  min-height: 132px;
  padding: 22px clamp(16px, 2vw, 26px);
  border-right: 1px solid var(--line);
}

.service-path article:last-child {
  border-right: 0;
}

.service-path span {
  display: block;
  margin-bottom: 18px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 800;
}

.service-path p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.65;
}

.service-summary-actions {
  margin-top: clamp(24px, 3vw, 38px);
}

.works-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(18px, 2.4vw, 34px);
  align-items: start;
}

.work-card {
  display: grid;
  gap: 18px;
}

.work-feature {
  grid-column: auto;
}

.work-wide {
  grid-column: auto;
}

.work-card figure {
  aspect-ratio: 4 / 3;
  cursor: zoom-in;
  margin: 0;
  overflow: hidden;
  background: var(--surface-2);
  border: 1px solid var(--line);
}

.work-card figure:focus-visible,
.case-card:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 4px;
}

.work-card img,
.work-card video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 800ms var(--ease);
}

.work-card:hover img,
.work-card:hover video {
  transform: scale(1.018);
}

.work-copy {
  max-width: 560px;
}

.work-copy h3 {
  margin: 8px 0 8px;
}

.work-copy span,
.method-list p {
  color: var(--muted);
}

.case-lab {
  margin-top: clamp(48px, 6vw, 86px);
  padding-top: clamp(34px, 4vw, 58px);
  border-top: 1px solid var(--line);
}

.case-lab > .section-head,
.case-toolbar,
.case-grid {
  max-width: var(--max);
  margin-left: auto;
  margin-right: auto;
}

.case-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 26px;
}

.case-toolbar button {
  min-height: 38px;
  padding: 8px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(251, 250, 246, .54);
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  transition: color 180ms var(--ease), background 180ms var(--ease), border-color 180ms var(--ease);
}

.case-toolbar button.is-active,
.case-toolbar button:hover,
.case-toolbar button:focus-visible {
  border-color: var(--ink);
  background: var(--ink);
  color: var(--surface);
}

.case-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-flow: dense;
  gap: clamp(14px, 1.8vw, 24px);
}

.case-card {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  cursor: zoom-in;
  overflow: hidden;
  background: var(--surface-2);
  border: 1px solid rgba(21, 17, 13, .12);
}

.case-card.is-hidden {
  display: none;
}

.case-card img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 720ms var(--ease), filter 720ms var(--ease);
}

.case-card:hover img {
  transform: scale(1.025);
  filter: saturate(1.04) contrast(1.03);
}

.case-card div {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 46px 18px 18px;
  color: #fbfaf6;
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, .68));
}

.case-card p {
  color: rgba(251, 250, 246, .74);
}

.case-card h3 {
  margin-top: 6px;
  font-size: 22px;
}

.case-pagination {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 30px;
}

.case-pagination[hidden] {
  display: none;
}

.case-pagination button {
  min-width: 38px;
  min-height: 38px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(251, 250, 246, .66);
  color: var(--muted);
  font: inherit;
  font-size: 13px;
  font-weight: 800;
  cursor: pointer;
  transition: color 180ms var(--ease), background 180ms var(--ease), border-color 180ms var(--ease);
}

.case-pagination button.is-active,
.case-pagination button:hover,
.case-pagination button:focus-visible {
  border-color: var(--ink);
  background: var(--ink);
  color: var(--surface);
}

.method-list {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border-top: 1px solid var(--line);
}

.method-list article {
  min-height: 292px;
  padding: 28px 22px 30px 0;
  border-right: 1px solid var(--line);
}

.method-list article + article {
  padding-left: 22px;
}

.method-list article:last-child {
  border-right: 0;
}

.method-list h3 {
  margin: 50px 0 12px;
}

.method-list p {
  margin: 0;
  font-size: 15px;
  line-height: 1.72;
}

.learning-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(14px, 1.8vw, 24px);
}

.learning-grid article {
  min-height: 320px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(22px, 3vw, 34px);
  border: 1px solid var(--line);
  background: rgba(251, 250, 246, .5);
}

.learning-grid article.highlight {
  background:
    linear-gradient(135deg, rgba(167, 68, 40, .13), rgba(18, 56, 93, .08)),
    rgba(251, 250, 246, .74);
  border-color: rgba(167, 68, 40, .28);
}

.learning-grid h3 {
  margin: 30px 0;
  font-size: 34px;
}

.learning-grid span {
  color: var(--muted);
  font-weight: 700;
}

.contact-section {
  padding-bottom: clamp(90px, 12vw, 170px);
}

.contact-section h2 {
  margin: 0;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.site-footer {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(260px, .9fr) minmax(520px, 1.35fr);
  gap: clamp(44px, 9vw, 150px);
  padding: clamp(58px, 8vw, 112px) clamp(18px, 5vw, 80px) clamp(36px, 5vw, 62px);
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.footer-brand {
  display: inline-flex;
  align-items: baseline;
  gap: 10px;
  color: var(--ink);
  font-family: "Instrument Sans", "Noto Sans SC", sans-serif;
  font-weight: 800;
}

.footer-brand span {
  font-size: 28px;
}

.footer-brand small {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.site-footer p {
  margin: 16px 0 0;
  max-width: 520px;
}

.footer-statement p {
  font-size: clamp(18px, 2vw, 28px);
  line-height: 1.36;
  color: var(--ink);
  font-weight: 800;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(22px, 3vw, 48px);
  align-items: start;
}

.footer-links section {
  display: grid;
  gap: 9px;
  align-content: start;
}

.footer-links h3 {
  margin: 0 0 12px;
  color: var(--soft);
  font-size: 11px;
  line-height: 1.1;
  font-weight: 800;
  text-transform: uppercase;
}

.footer-links a {
  color: rgba(21, 17, 13, .76);
  font-size: 13px;
  font-weight: 600;
  line-height: 1.42;
  transition: color 180ms var(--ease);
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--ink);
}

.footer-qr {
  display: grid;
  gap: 7px;
  align-items: start;
  justify-items: start;
  margin-top: 8px;
}

.footer-qr img {
  width: 72px;
  height: 72px;
  display: block;
  background: var(--surface);
  border: 1px solid rgba(21, 17, 13, .12);
}

.footer-qr span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.footer-qr-bottom {
  margin-top: 0;
  justify-items: end;
  text-align: right;
}

.footer-qr-bottom img {
  opacity: .9;
}

.footer-bottom {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px 28px;
  padding-top: clamp(42px, 7vw, 82px);
  border-top: 1px solid var(--line);
  color: var(--soft);
  font-size: 13px;
}

.footer-bottom p {
  margin: 0;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  padding: clamp(18px, 3vw, 42px);
  background: rgba(241, 240, 236, .92);
  backdrop-filter: blur(20px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 220ms var(--ease);
}

.lightbox.is-open {
  opacity: 1;
  pointer-events: auto;
}

body.lightbox-open {
  overflow: hidden;
}

.lightbox-frame {
  width: fit-content;
  max-width: min(1180px, 100%);
  max-height: calc(100svh - 64px);
  margin: 0;
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  gap: 16px;
}

.lightbox-media {
  min-height: 0;
  display: block;
}

.lightbox-media img,
.lightbox-media video {
  max-width: 100%;
  max-height: min(78svh, 820px);
  display: block;
  object-fit: contain;
  background: var(--surface-2);
  border: 1px solid rgba(21, 17, 13, .18);
  box-shadow: 0 32px 90px rgba(21, 17, 13, .18);
}

.lightbox-caption {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px 24px;
  align-items: end;
  color: var(--ink);
}

.lightbox-caption p {
  grid-column: 1 / -1;
  margin: 0;
  color: var(--accent);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.lightbox-caption h3 {
  margin: 0;
  font-size: clamp(24px, 3vw, 42px);
}

.lightbox-caption span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.lightbox-close,
.lightbox-nav {
  position: fixed;
  z-index: 82;
  display: grid;
  place-items: center;
  border: 1px solid rgba(21, 17, 13, .2);
  border-radius: 999px;
  background: rgba(251, 250, 246, .82);
  color: var(--ink);
  font: inherit;
  font-family: "Instrument Sans", "Noto Sans SC", sans-serif;
  font-weight: 800;
  cursor: pointer;
  transition: transform 180ms var(--ease), background 180ms var(--ease);
}

.lightbox-close:hover,
.lightbox-close:focus-visible,
.lightbox-nav:hover,
.lightbox-nav:focus-visible {
  transform: scale(1.04);
  background: var(--surface);
}

.lightbox-close {
  top: 22px;
  right: 22px;
  width: 46px;
  height: 46px;
  font-size: 28px;
  line-height: 1;
}

.lightbox-nav {
  top: 50%;
  width: 52px;
  height: 52px;
  font-size: 42px;
  line-height: 1;
  transform: translateY(-50%);
}

.lightbox-nav:hover,
.lightbox-nav:focus-visible {
  transform: translateY(-50%) scale(1.04);
}

.lightbox-prev {
  left: 22px;
}

.lightbox-next {
  right: 22px;
}

@media (max-width: 1180px) {
  .works-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .work-feature,
  .work-wide {
    grid-column: auto;
  }

  .method-list {
    grid-template-columns: repeat(3, 1fr);
  }

  .method-list article {
    border-bottom: 1px solid var(--line);
  }
}

@media (max-width: 1180px) {
  h1 {
    font-size: 74px;
  }

  h2 {
    font-size: 48px;
  }

  .lead,
  .intro-band p:last-child,
  .about-section p:last-child,
  .contact-section p:last-child,
  .section-head p {
    font-size: 18px;
  }
}

@media (max-width: 860px) {
  .site-header {
    min-height: 68px;
    width: 100vw;
  }

  .menu-toggle {
    display: block;
  }

  .header-panel {
    position: fixed;
    left: 14px;
    right: 14px;
    top: 78px;
    display: none;
    align-items: stretch;
    gap: 18px;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: rgba(251, 250, 246, .96);
    box-shadow: 0 24px 60px rgba(21, 17, 13, .12);
  }

  .header-panel.is-open {
    display: grid;
  }

  .nav {
    display: grid;
    gap: 6px;
    padding: 6px;
    border-radius: 16px;
    font-size: 15px;
  }

  .nav a {
    justify-content: flex-start;
    min-width: 0;
    min-height: 40px;
    padding: 0 12px;
  }

  .header-cta {
    min-width: 0;
  }

  .language-switch {
    justify-self: start;
  }

  .hero {
    min-height: auto;
    padding-top: 96px;
    padding-bottom: 120px;
  }

  .hero-media::after {
    background: transparent;
  }

  .hero-media figcaption {
    left: 18px;
    right: 18px;
    bottom: 18px;
  }

  h1 {
    font-size: 50px;
    line-height: 1.1;
  }

  :root[data-lang="zh"] .hero h1 {
    font-size: clamp(40px, 10.8vw, 50px);
  }

  :root[data-lang="zh"] .hero h1 span:first-child {
    white-space: normal;
  }

  h2 {
    font-size: 32px;
    line-height: 1.15;
  }

  h1,
  h2,
  h3,
  .lead,
  .intro-band p,
  .section-head p,
  .about-section p {
    overflow-wrap: break-word;
  }

  :root[data-lang="zh"] h1,
  :root[data-lang="zh"] h2,
  :root[data-lang="zh"] h3,
  :root[data-lang="zh"] .lead,
  :root[data-lang="zh"] .intro-band p,
  :root[data-lang="zh"] .section-head p,
  :root[data-lang="zh"] .about-section p {
    word-break: normal;
    overflow-wrap: break-word;
  }

  .intro-band,
  .about-section,
  .contact-section,
  .section-head {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .section-head .section-kicker {
    padding-top: 0;
  }

  .client-strip-head {
    display: grid;
    gap: 8px;
  }

  .client-track {
    gap: 44px;
    flex-wrap: nowrap;
  }

  .client-logo {
    min-width: 112px;
    height: 46px;
  }

  .client-logo img {
    height: 28px;
    max-width: 150px;
  }

  .works-grid,
  .service-grid,
  .learning-grid {
    grid-template-columns: 1fr;
  }

  .service-path {
    grid-template-columns: 1fr 1fr;
  }

  .service-path article:nth-child(2) {
    border-right: 0;
  }

  .work-feature,
  .work-wide {
    grid-row: auto;
    grid-column: auto;
  }

  .method-list {
    grid-template-columns: 1fr;
  }

  .method-list article,
  .method-list article + article {
    min-height: auto;
    padding: 24px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .method-list h3 {
    margin-top: 26px;
  }

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

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

@media (max-width: 560px) {
  .brand small {
    display: none;
  }

  h2 {
    font-size: 32px;
  }

  h3 {
    font-size: 24px;
  }

  .hero-actions .button {
    width: 100%;
  }

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

  .case-card div {
    padding: 42px 14px 14px;
  }

  .lightbox {
    padding: 16px;
  }

  .footer-links {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .footer-links section {
    gap: 8px;
  }

  .footer-links a {
    font-size: 14px;
    font-weight: 600;
  }

  .lightbox-frame {
    max-height: calc(100svh - 32px);
  }

  .lightbox-media img,
  .lightbox-media video {
    max-height: 70svh;
  }

  .lightbox-caption {
    grid-template-columns: 1fr;
  }

  .lightbox-nav {
    top: auto;
    bottom: 18px;
    width: 44px;
    height: 44px;
    font-size: 34px;
    transform: none;
  }

  .lightbox-nav:hover,
  .lightbox-nav:focus-visible {
    transform: scale(1.04);
  }

  .lightbox-prev {
    left: 18px;
  }

  .lightbox-next {
    right: 18px;
  }

  .learning-grid article {
    min-height: 260px;
  }
}

.inline-link {
  display: inline-flex;
  align-items: center;
  margin-top: 14px;
  color: var(--ink);
  font-family: "Instrument Sans", "Noto Sans SC", sans-serif;
  font-size: 13px;
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.nav a[aria-current="page"],
.footer-links a[aria-current="page"] {
  color: var(--ink);
}

.nav a[aria-current="page"] {
  background: var(--ink);
  color: var(--surface);
}

.nav a[aria-current="page"]::after {
  content: none;
}

.page-hero,
.page-section,
.page-cta {
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(72px, 9vw, 132px) clamp(18px, 5vw, 80px);
  border-top: 1px solid var(--line);
}

.page-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, .95fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: start;
  padding-top: clamp(36px, 4.4vw, 64px);
  padding-bottom: clamp(52px, 7vw, 96px);
}

.method-page-hero {
  grid-template-columns: minmax(0, 1.18fr) minmax(280px, .82fr);
  align-items: start;
}

:root[data-lang="zh"] .method-page-hero .page-hero-copy h1 {
  max-width: 10.5em;
  font-size: clamp(46px, 4.45vw, 66px);
  line-height: 1.08;
}

.crumbs {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.page-hero-copy h1 {
  margin: 0 0 20px;
  max-width: 900px;
  font-size: clamp(48px, 5vw, 72px);
  line-height: 1.02;
  color: var(--ink);
  text-shadow: none;
}

.page-hero-copy .lead,
.page-section .section-copy p:last-child,
.detail-panel p:last-child,
.timeline-item p:last-child,
.cta-panel p:last-child,
.feature-card p:last-child,
.metric-card p:last-child,
.module-card p:last-child,
.related-card p:last-child,
.note-card p:last-child {
  color: var(--muted);
}

.page-hero-media,
.page-media-frame {
  margin: 0;
  overflow: hidden;
  background: var(--surface-2);
  border: 1px solid var(--line);
}

.page-hero-media {
  aspect-ratio: auto;
  justify-self: end;
  width: fit-content;
  max-width: 100%;
}

.page-media-frame {
  aspect-ratio: auto;
  width: fit-content;
  max-width: 100%;
  border: 0;
}

.page-hero-media img,
.page-hero-media video,
.page-media-frame img,
.page-media-frame video {
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: min(58svh, 640px);
  display: block;
  margin: 0 auto;
  object-fit: contain;
}

.case-detail-hero {
  grid-template-columns: minmax(0, .86fr) minmax(420px, 1.14fr);
  align-items: start;
}

.case-detail-hero .page-hero-media {
  width: 100%;
  justify-self: stretch;
}

.case-detail-hero .page-media-frame {
  width: 100%;
}

.case-detail-hero .landscape-media {
  aspect-ratio: 16 / 10;
}

.case-detail-hero .landscape-media .page-media-frame {
  height: 100%;
}

.case-detail-hero .landscape-media img,
.case-detail-hero .landscape-media video {
  width: 100%;
  height: 100%;
  max-height: none;
  object-fit: cover;
}

.case-detail-hero .portrait-media {
  min-height: clamp(560px, 66svh, 780px);
  display: grid;
  place-items: center;
  padding: clamp(18px, 2.4vw, 30px);
  background: transparent;
  border: 0;
}

.case-detail-hero .portrait-media .page-media-frame {
  width: min(430px, 42svh, 100%);
  aspect-ratio: 9 / 16;
  background: var(--ink);
}

.case-detail-hero .portrait-media video,
.case-detail-hero .portrait-media img {
  width: 100%;
  height: 100%;
  max-height: none;
  object-fit: contain;
}

.services-hero {
  align-items: start;
}

.services-hero-media {
  width: min(560px, 100%);
  justify-self: end;
  overflow: visible;
  background: transparent;
  border: 0;
}

.services-stack {
  min-height: clamp(400px, 42vw, 620px);
}

.service-offer-section {
  padding-top: clamp(54px, 7vw, 96px);
}

.service-brief-section {
  padding-top: clamp(24px, 4vw, 54px);
  padding-bottom: clamp(54px, 7vw, 96px);
}

.service-brief-panel {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  background: rgba(251, 250, 246, .82);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.service-brief-panel article {
  min-height: 260px;
  display: grid;
  align-content: space-between;
  gap: 28px;
  padding: clamp(24px, 3vw, 42px);
  border-right: 1px solid var(--line);
}

.service-brief-panel article:last-child {
  border-right: 0;
}

.service-brief-panel span {
  color: var(--accent);
  font-size: 12px;
  font-weight: 800;
}

.service-brief-panel h2 {
  margin: 0;
  max-width: 8em;
  font-size: clamp(28px, 2.8vw, 44px);
  line-height: 1.06;
}

.service-brief-panel p {
  margin: 0;
  color: var(--muted);
  font-size: clamp(15px, 1.25vw, 18px);
  font-weight: 700;
  line-height: 1.72;
}

.method-hero-media,
.about-hero-media {
  width: min(620px, 100%);
  justify-self: end;
  overflow: hidden;
  background: transparent;
  border: 0;
}

.method-hero-media {
  width: min(540px, 100%);
}

.method-visual-grid,
.about-visual-stack {
  display: grid;
  gap: 12px;
}

.method-visual-grid {
  grid-template-columns: 1.15fr .85fr;
  align-items: end;
}

.method-visual-grid figure,
.about-visual-stack figure {
  margin: 0;
  overflow: hidden;
  background: var(--surface-2);
  border: 1px solid rgba(21, 17, 13, .12);
}

.method-visual-grid figure {
  aspect-ratio: 4 / 5;
}

.method-visual-grid .method-visual-main {
  grid-row: span 2;
  aspect-ratio: 3 / 4;
}

.method-visual-grid img,
.about-visual-stack img {
  width: 100%;
  height: 100%;
  max-height: none;
  display: block;
  object-fit: cover;
}

.about-visual-stack {
  grid-template-columns: 1fr .72fr;
  align-items: stretch;
}

.about-visual-wide {
  grid-column: 1 / -1;
  aspect-ratio: 16 / 9;
}

.about-visual-tall,
.about-visual-small {
  aspect-ratio: 4 / 5;
}

.about-visual-small {
  align-self: end;
}

.learning-hero {
  align-items: start;
}

.learning-hero .page-hero-copy h1 {
  max-width: 980px;
}

.learning-hero-media {
  width: min(560px, 100%);
  justify-self: end;
  overflow: visible;
  background: transparent;
  border: 0;
}

.learning-stack {
  position: relative;
  min-height: clamp(420px, 46vw, 680px);
}

.stack-card {
  position: absolute;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(21, 17, 13, .12);
  background: var(--surface-2);
  box-shadow: 0 32px 80px rgba(21, 17, 13, .13);
}

.stack-card img {
  width: 100%;
  height: 100%;
  max-height: none;
  object-fit: cover;
}

.stack-card-main {
  right: 4%;
  top: 0;
  width: 66%;
  aspect-ratio: 3 / 4;
}

.stack-card-small {
  left: 0;
  bottom: 12%;
  width: 42%;
  aspect-ratio: 4 / 5;
}

.stack-card-wide {
  right: 0;
  bottom: 0;
  width: 58%;
  aspect-ratio: 16 / 9;
}

.learning-status-section {
  padding-top: clamp(36px, 5vw, 72px);
  padding-bottom: clamp(36px, 5vw, 72px);
}

.learning-status-panel {
  display: grid;
  grid-template-columns: minmax(0, .75fr) minmax(0, 1.25fr);
  gap: clamp(24px, 4vw, 64px);
  align-items: end;
  padding: clamp(26px, 4vw, 46px);
  background: rgba(251, 250, 246, .82);
  border: 1px solid var(--line);
}

.learning-status-panel h2 {
  margin: 8px 0 0;
  font-size: clamp(32px, 4vw, 56px);
  line-height: 1.04;
}

.learning-status-panel p:last-child {
  margin: 0;
  color: var(--muted);
  font-size: clamp(16px, 1.7vw, 22px);
}

.learning-section-head {
  margin-bottom: clamp(26px, 4vw, 48px);
}

.course-lineup {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
  align-items: stretch;
}

.learning-card {
  min-height: 420px;
  display: flex;
  flex-direction: column;
  padding: clamp(18px, 2vw, 26px);
  border: 1px solid rgba(21, 17, 13, .14);
  color: var(--ink);
}

.learning-card span {
  width: fit-content;
  margin-bottom: 24px;
  padding: 6px 10px;
  border: 1px solid rgba(21, 17, 13, .16);
  background: rgba(251, 250, 246, .46);
  color: rgba(21, 17, 13, .68);
  font-size: 12px;
  font-weight: 800;
}

.learning-card p {
  margin: 0 0 12px;
  color: rgba(21, 17, 13, .58);
  font-family: "Instrument Sans", "Noto Sans SC", sans-serif;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.learning-card h3 {
  margin: 0;
  font-size: clamp(22px, 2.2vw, 32px);
  line-height: 1.1;
}

.learning-card ul {
  margin: auto 0 0;
  padding: 0;
  list-style: none;
  color: rgba(21, 17, 13, .68);
  font-size: 14px;
}

.learning-card li + li {
  margin-top: 8px;
}

.tone-mist {
  background: #dde0dc;
}

.tone-clay {
  background: #d8c3b3;
}

.tone-sage {
  background: #cbd4c5;
}

.tone-linen {
  background: #e1d8c7;
}

.tone-blue {
  background: #c9d1d5;
}

.learning-showcase-grid {
  display: grid;
  grid-template-columns: 1.15fr .9fr .95fr;
  gap: clamp(16px, 2vw, 26px);
  align-items: start;
  margin-top: clamp(28px, 4vw, 54px);
}

.learning-showcase-grid article {
  min-width: 0;
}

.learning-showcase-grid figure {
  margin: 0 0 16px;
  overflow: hidden;
  background: var(--surface-2);
  border: 1px solid var(--line);
}

.learning-showcase-grid article:nth-child(1) figure {
  aspect-ratio: 4 / 5;
}

.learning-showcase-grid article:nth-child(2) figure {
  aspect-ratio: 3 / 4;
  margin-top: clamp(24px, 5vw, 72px);
}

.learning-showcase-grid article:nth-child(3) figure {
  aspect-ratio: 9 / 16;
}

.learning-showcase-grid img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.learning-showcase-grid h3 {
  margin: 0 0 8px;
  font-size: clamp(22px, 2.4vw, 34px);
}

.learning-showcase-grid p {
  margin: 0;
  color: var(--muted);
}

.learning-detail-grid .detail-panel {
  padding: clamp(26px, 4vw, 44px);
}

.public-faq-grid .faq-card {
  min-height: 240px;
  padding: clamp(24px, 3vw, 36px);
}

.learning-faq-section {
  padding-bottom: clamp(46px, 5vw, 76px);
}

.learning-cta-section {
  padding-top: 0;
  border-top: 0;
}

.learning-cta-section .page-cta {
  padding-top: 0;
  border-top: 0;
}

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

.feature-grid,
.detail-grid,
.metric-grid,
.course-grid,
.related-grid,
.note-grid,
.pricing-grid,
.faq-grid,
.path-grid {
  display: grid;
  gap: clamp(18px, 2vw, 28px);
}

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

.detail-grid {
  grid-template-columns: 1.1fr .9fr;
  align-items: start;
}

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

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

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

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

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

.faq-grid,
.path-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.feature-card,
.metric-card,
.detail-panel,
.timeline-item,
.cta-panel,
.related-card,
.note-card,
.module-card,
.pricing-card,
.faq-card,
.path-card {
  background: rgba(251, 250, 246, .82);
  border: 1px solid var(--line);
  padding: 22px;
}

.feature-card h3,
.metric-card h3,
.detail-panel h3,
.timeline-item h3,
.related-card h3,
.module-card h3,
.pricing-card h3,
.faq-card h3,
.path-card h3 {
  margin-bottom: 10px;
  font-size: 24px;
}

.metric-card strong,
.module-card strong {
  display: block;
  margin-bottom: 10px;
  color: var(--accent);
  font-family: "Instrument Sans", "Noto Sans SC", sans-serif;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.pricing-card .price-tag {
  display: inline-flex;
  align-items: baseline;
  gap: 6px;
  margin: 10px 0 0;
  font-family: "Instrument Sans", "Noto Sans SC", sans-serif;
  font-weight: 800;
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1;
}

.pricing-card .price-tag small {
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.timeline {
  display: grid;
  gap: 14px;
}

.timeline-item {
  display: grid;
  grid-template-columns: 88px minmax(0, 1fr);
  gap: 18px;
}

.timeline-item span {
  color: var(--soft);
  font-family: "Instrument Sans", "Noto Sans SC", sans-serif;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.page-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.page-actions .button.secondary {
  background: rgba(251, 250, 246, .72);
}

.module-card ul,
.detail-panel ul,
.cta-panel ul,
.pricing-card ul,
.faq-card ul,
.path-card ul {
  margin: 14px 0 0;
  padding-left: 18px;
  color: var(--muted);
}

.pricing-card p,
.faq-card p,
.path-card p {
  margin: 0;
  color: var(--muted);
}

.related-card .meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}

.meta-chip {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 12px;
  border: 1px solid var(--line);
  background: rgba(241, 240, 236, .84);
  color: var(--muted);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
}

.related-card figure,
.feature-card figure {
  margin: 0 0 16px;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: var(--surface-2);
  border: 1px solid var(--line);
}

.related-card figure img,
.related-card figure video,
.feature-card figure img,
.feature-card figure video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.cta-panel {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
}

@media (max-width: 1120px) {
  .page-hero,
  .method-page-hero,
  .detail-grid,
  .course-grid,
  .related-grid,
  .feature-grid,
  .note-grid,
  .pricing-grid,
  .faq-grid,
  .path-grid {
    grid-template-columns: 1fr;
  }

  .case-detail-hero {
    grid-template-columns: 1fr;
  }

  .learning-hero-media {
    justify-self: stretch;
    width: 100%;
  }

  .method-hero-media,
  .about-hero-media,
  .services-hero-media {
    justify-self: stretch;
    width: 100%;
  }

  .learning-stack {
    min-height: 620px;
  }

  .learning-status-panel,
  .course-lineup,
  .learning-showcase-grid {
    grid-template-columns: 1fr 1fr;
  }

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

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

@media (max-width: 720px) {
  .page-hero-copy h1 {
    font-size: 48px;
    line-height: 1.04;
  }

  .case-detail-hero .page-hero-media {
    justify-self: center;
    width: 100%;
  }

  .case-detail-hero .portrait-media {
    min-height: 0;
    padding: 16px;
  }

  .case-detail-hero .portrait-media .page-media-frame {
    width: min(78vw, 360px);
  }

  .case-detail-hero .landscape-media {
    aspect-ratio: 16 / 10;
  }

  .service-brief-panel {
    grid-template-columns: 1fr;
  }

  .service-brief-panel article {
    min-height: 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .service-brief-panel article:last-child {
    border-bottom: 0;
  }

  .learning-stack {
    min-height: 470px;
  }

  .stack-card-main {
    width: 70%;
  }

  .stack-card-small {
    width: 46%;
  }

  .stack-card-wide {
    width: 64%;
  }

  .learning-status-panel,
  .course-lineup,
  .learning-showcase-grid {
    grid-template-columns: 1fr;
  }

  .method-visual-grid,
  .about-visual-stack {
    grid-template-columns: 1fr;
  }

  .method-visual-grid .method-visual-main,
  .about-visual-wide {
    grid-row: auto;
    grid-column: auto;
  }

  .learning-card {
    min-height: 330px;
  }

  .learning-showcase-grid article:nth-child(2) figure {
    margin-top: 0;
  }

  .service-path {
    grid-template-columns: 1fr;
  }

  .service-path article,
  .service-path article:nth-child(2) {
    border-right: 0;
  }

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

  .timeline-item {
    grid-template-columns: 1fr;
    gap: 8px;
  }
}

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

  .client-track {
    width: max-content;
    flex-wrap: nowrap;
    justify-content: flex-start;
    animation: clientMarquee 24s linear infinite !important;
    animation-duration: 24s !important;
    animation-iteration-count: infinite !important;
  }
}
