:root {
  color-scheme: light;
  --bg: #f6f2ea;
  --surface: rgba(255, 253, 248, 0.78);
  --surface-strong: #fffdf8;
  --ink: #21231f;
  --muted: #686c62;
  --soft: #8f9689;
  --line: rgba(33, 35, 31, 0.12);
  --line-soft: rgba(33, 35, 31, 0.055);
  --sage: #52766b;
  --sage-dark: #244e45;
  --copper: #a8653f;
  --max: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

html.js {
  scroll-behavior: auto;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family:
    "Songti SC",
    "Noto Serif SC",
    "Source Han Serif SC",
    Georgia,
    serif;
  color: var(--ink);
  background:
    linear-gradient(var(--line-soft) 1px, transparent 1px),
    linear-gradient(90deg, var(--line-soft) 1px, transparent 1px),
    var(--bg);
  background-size: 80px 80px;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, transparent 0 49.9%, rgba(82, 118, 107, 0.17) 50%, transparent 50.1%),
    linear-gradient(0deg, transparent 0 49.9%, rgba(168, 101, 63, 0.15) 50%, transparent 50.1%);
  opacity: 0.55;
}

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

a {
  color: inherit;
}

.page {
  position: relative;
  overflow: hidden;
}

.hero-copy > *,
.axis-map {
  opacity: 1;
}

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

.hero {
  min-height: 92vh;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: 56px;
  align-items: center;
  padding: 80px 0 48px;
}

.eyebrow {
  margin: 0 0 14px;
  font-family:
    "Avenir Next",
    "Helvetica Neue",
    Arial,
    sans-serif;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--sage);
}

h1,
h2,
h3,
h4,
p {
  overflow-wrap: anywhere;
}

h1 {
  margin: 0;
  font-size: clamp(4.2rem, 7.6vw, 6rem);
  line-height: 0.95;
  font-weight: 700;
}

h2 {
  margin: 0;
  font-size: 2.45rem;
  line-height: 1.18;
}

h3 {
  margin: 0;
  font-size: 1.28rem;
  line-height: 1.35;
}

h4 {
  margin: 0;
  font-size: 1.02rem;
  line-height: 1.45;
}

.identity {
  margin: 28px 0 0;
  color: var(--sage-dark);
  font-size: 1.25rem;
  font-weight: 700;
}

.slogan {
  max-width: 17em;
  margin: 28px 0 0;
  font-size: 2rem;
  line-height: 1.45;
}

.intro {
  max-width: 38rem;
  margin: 26px 0 0;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.9;
}

.axis-map {
  position: relative;
  aspect-ratio: 1.24;
  min-height: 360px;
  --axis-x: 0;
  --axis-y: 0;
  filter: drop-shadow(0 22px 42px rgba(36, 78, 69, 0.08));
  transform: translate3d(calc(var(--axis-x) * -8px), calc(var(--axis-y) * -8px), 0);
  transition: transform 500ms cubic-bezier(0.22, 1, 0.36, 1), filter 500ms ease;
  will-change: transform;
}

.axis-map img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transform:
    rotateX(calc(var(--axis-y) * -3deg))
    rotateY(calc(var(--axis-x) * 3deg))
    scale(1.01);
  transition: transform 500ms cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

.axis-map:hover {
  filter: drop-shadow(0 30px 54px rgba(36, 78, 69, 0.12));
}

.section {
  padding: 84px 0;
  border-top: 1px solid var(--line);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, auto) minmax(80px, 1fr);
  column-gap: 28px;
  align-items: end;
  max-width: none;
  margin-bottom: 36px;
}

.section-heading::after {
  content: "";
  height: 1px;
  margin-bottom: 0.55rem;
  background: linear-gradient(90deg, rgba(82, 118, 107, 0.32), transparent 88%);
}

.section-heading .eyebrow {
  grid-column: 1 / -1;
}

.intersection-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.intersection-card {
  position: relative;
  overflow: hidden;
  min-height: 390px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  --card-x: 0.5;
  --card-y: 0.5;
  --follow-x: 0;
  --follow-y: 0;
  background: var(--surface);
  transition:
    transform 520ms cubic-bezier(0.22, 1, 0.36, 1),
    border-color 420ms ease,
    background 420ms ease;
  will-change: transform;
}

.intersection-card::before,
.intersection-card::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.intersection-card::before {
  inset: 0;
  background:
    linear-gradient(90deg, transparent, rgba(82, 118, 107, 0.16), transparent),
    linear-gradient(180deg, transparent, rgba(168, 101, 63, 0.12), transparent);
  opacity: 0;
  transform: translate3d(-34%, -28%, 0) rotate(-8deg);
  transition:
    opacity 720ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 900ms cubic-bezier(0.22, 1, 0.36, 1);
}

.intersection-card::after {
  inset: -1px;
  background: radial-gradient(
    circle at calc(var(--card-x) * 100%) calc(var(--card-y) * 100%),
    rgba(255, 253, 248, 0.86) 0,
    rgba(82, 118, 107, 0.14) 22%,
    transparent 48%
  );
  opacity: 0;
  transition: opacity 420ms ease;
}

.intersection-card > * {
  position: relative;
  z-index: 1;
}

.intersection-card.is-pointer-active {
  transform: translate(calc(var(--follow-x) * 3px), calc(-3px + var(--follow-y) * 2px));
  border-color: rgba(82, 118, 107, 0.28);
  background: rgba(255, 253, 248, 0.86);
  transition:
    transform 110ms linear,
    border-color 220ms ease,
    background 220ms ease;
}

.intersection-card.is-pointer-active::after {
  opacity: 1;
  transition: opacity 160ms ease;
}

.card-index {
  margin: 0 0 36px;
  font-family:
    "Avenir Next",
    "Helvetica Neue",
    Arial,
    sans-serif;
  color: var(--copper);
  font-weight: 700;
  transform-origin: left center;
  transition:
    color 360ms ease,
    transform 420ms cubic-bezier(0.22, 1, 0.36, 1);
}

.intersection-card.is-pointer-active .card-index {
  color: var(--sage-dark);
  transform: translate3d(calc(var(--follow-x) * -4px), calc(var(--follow-y) * -3px), 0);
}

.intersection-card h3 {
  transition: transform 420ms cubic-bezier(0.22, 1, 0.36, 1);
}

.intersection-card.is-pointer-active h3 {
  transform: translate3d(calc(var(--follow-x) * -2px), calc(var(--follow-y) * -2px), 0);
}

.intersection-card p:not(.card-index) {
  margin: 18px 0 0;
  color: var(--muted);
  line-height: 1.75;
  transition: transform 140ms linear;
}

.intersection-card ul {
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
  transition: transform 140ms linear;
}

.intersection-card.is-pointer-active p:not(.card-index),
.intersection-card.is-pointer-active ul {
  transform: translate3d(calc(var(--follow-x) * 1.5px), calc(var(--follow-y) * 1.5px), 0);
}

.intersection-card li {
  padding: 12px 0;
  border-top: 1px solid var(--line-soft);
  color: var(--ink);
  line-height: 1.5;
  transition:
    border-color 320ms ease,
    color 320ms ease,
    transform 360ms cubic-bezier(0.22, 1, 0.36, 1);
}

.intersection-card:hover li {
  border-color: rgba(82, 118, 107, 0.16);
  color: var(--sage-dark);
}

.intersection-card li:hover {
  transform: translateX(4px);
}

.proof-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(330px, 0.9fr);
  gap: 24px;
}

.product-panel,
.activity-panel,
.contact-panel {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 253, 248, 0.66);
  box-shadow: 0 18px 54px rgba(36, 78, 69, 0.035);
}

.product-panel,
.activity-panel {
  padding: 28px;
}

.subheading {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: start;
  margin-bottom: 24px;
}

.subheading p {
  max-width: 24rem;
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
  font-size: 0.96rem;
}

.subheading-link {
  flex: 0 0 auto;
  padding: 3px 0 7px;
  border-bottom: 1px solid rgba(82, 118, 107, 0.34);
  color: var(--sage-dark);
  font-family:
    "Avenir Next",
    "Helvetica Neue",
    Arial,
    sans-serif;
  font-size: 0.82rem;
  text-decoration: none;
  transition: border-color 220ms ease, transform 220ms ease;
}

.subheading-link:hover {
  border-color: var(--sage-dark);
  transform: translateX(2px);
}

.product-wall {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--line);
}

.product-panel .product-wall {
  margin-top: 32px;
}

.product-item {
  min-width: 0;
  min-height: 164px;
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 12px;
  padding: 18px 14px;
  background: rgba(255, 253, 248, 0.72);
  text-align: center;
  transition:
    background 320ms ease,
    transform 320ms cubic-bezier(0.22, 1, 0.36, 1);
}

.product-item:hover {
  z-index: 1;
  background: rgba(255, 253, 248, 0.96);
  transform: translateY(-2px);
}

.product-mark {
  width: 72px;
  height: 72px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(33, 35, 31, 0.08);
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.85) inset,
    0 8px 22px rgba(36, 78, 69, 0.06);
  transition:
    border-color 320ms ease,
    box-shadow 320ms ease,
    transform 420ms cubic-bezier(0.22, 1, 0.36, 1);
}

.product-item:hover .product-mark {
  border-color: rgba(82, 118, 107, 0.18);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.9) inset,
    0 14px 28px rgba(36, 78, 69, 0.09);
  transform: translateY(-3px) scale(1.025);
}

.product-mark img.product-logo {
  width: var(--logo-width, 54px);
  height: var(--logo-height, 54px);
  object-fit: contain;
  object-position: center;
  filter: saturate(0.7) contrast(0.96);
  opacity: 0.9;
  transform: translate3d(var(--logo-shift-x, 0), var(--logo-shift-y, 0), 0);
  transition: filter 320ms ease, opacity 320ms ease;
}

.product-item:hover .product-mark img.product-logo {
  filter: saturate(0.92) contrast(1);
  opacity: 1;
}

.logo-kaixin {
  --logo-width: 50px;
  --logo-height: 50px;
}

.logo-instamessage {
  --logo-width: 52px;
  --logo-height: 52px;
}

.logo-yanxi {
  --logo-width: 54px;
  --logo-height: 42px;
}

.logo-jingxiaozhi {
  --logo-width: 68px;
  --logo-height: 68px;
}

.logo-youran {
  --logo-width: 56px;
  --logo-height: 66px;
  --logo-shift-y: 5px;
}

.logo-uuholo {
  --logo-width: 60px;
  --logo-height: 60px;
  border-radius: 12px;
}

.product-mark-concept {
  border-color: rgba(82, 118, 107, 0.16);
  background: linear-gradient(145deg, rgba(237, 244, 239, 0.96), rgba(255, 253, 248, 0.9));
}

.product-mark img.product-icon {
  --logo-width: 56px;
  --logo-height: 56px;
  filter: none;
  opacity: 1;
}

.product-item > span {
  max-width: 9.5em;
  min-height: 2.84em;
  display: grid;
  align-items: start;
  font-size: 0.88rem;
  line-height: 1.42;
}

.product-status {
  display: block;
}

.evidence-card {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 18px;
  align-items: center;
  padding: 16px 0;
  border-top: 1px solid var(--line-soft);
  color: inherit;
  text-decoration: none;
  transition: transform 360ms cubic-bezier(0.22, 1, 0.36, 1);
}

.activity-panel .evidence-card {
  grid-template-columns: 96px 1fr;
  gap: 16px;
  padding: 13px 0;
}

.activity-panel .evidence-card > div {
  min-width: 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  column-gap: 12px;
  align-items: end;
}

.activity-panel .evidence-card .evidence-date,
.activity-panel .evidence-card h4 {
  grid-column: 1 / -1;
}

.activity-panel .evidence-card p:not(.evidence-date) {
  grid-column: 1;
}

.evidence-card:hover {
  transform: translateX(4px);
}

.evidence-card img {
  width: 120px;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 6px;
  filter: saturate(0.62) contrast(0.94);
}

.activity-panel .evidence-card img {
  width: 96px;
  aspect-ratio: 4 / 3;
}

.evidence-card.compact {
  display: block;
}

.evidence-card p {
  margin: 8px 0 0;
  color: var(--muted);
  line-height: 1.65;
}

.evidence-card .evidence-date {
  margin: 0 0 6px;
  color: var(--copper);
  font-family:
    "Avenir Next",
    "Helvetica Neue",
    Arial,
    sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.evidence-link-label {
  display: inline-block;
  margin-top: 10px;
  padding-bottom: 3px;
  border-bottom: 1px solid rgba(168, 101, 63, 0.36);
  color: var(--sage-dark);
  font-family:
    "Avenir Next",
    "Helvetica Neue",
    Arial,
    sans-serif;
  font-size: 0.7rem;
}

.activity-panel .evidence-link-label {
  grid-column: 2;
  grid-row: 3;
  align-self: end;
  justify-self: end;
  margin-top: 8px;
  white-space: nowrap;
}

.work-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.work-card {
  display: grid;
  grid-template-rows: auto 1fr;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: rgba(255, 253, 248, 0.72);
  transition:
    transform 420ms cubic-bezier(0.22, 1, 0.36, 1),
    border-color 420ms ease,
    background 420ms ease;
}

.work-media {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3 / 2;
  isolation: isolate;
  background: #e9e5dc;
}

.work-media::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  box-shadow: inset 0 0 0 1px rgba(255, 253, 248, 0.34);
}

.work-render {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.68) contrast(0.96);
  transition: transform 700ms cubic-bezier(0.22, 1, 0.36, 1), filter 700ms ease;
}

.work-proof-link {
  position: absolute;
  right: 14px;
  bottom: 14px;
  z-index: 1;
  width: var(--proof-width, 31%);
  height: var(--proof-height, 78%);
  display: block;
  overflow: hidden;
  border: 4px solid rgba(255, 253, 248, 0.92);
  border-radius: 5px;
  box-shadow: 0 14px 30px rgba(33, 35, 31, 0.2);
  cursor: zoom-in;
  transition:
    transform 600ms cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 600ms ease;
}

.work-proof {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

body.lightbox-open {
  overflow: hidden;
}

.work-lightbox {
  width: 100%;
  max-width: none;
  height: 100%;
  max-height: none;
  margin: 0;
  padding: 40px;
  border: 0;
  background: transparent;
  opacity: 0;
  transition: opacity 260ms ease;
}

.work-lightbox[open] {
  display: grid;
  place-items: center;
}

.work-lightbox.is-open {
  opacity: 1;
}

.work-lightbox::backdrop {
  background: rgba(24, 27, 24, 0.82);
  backdrop-filter: blur(12px);
}

.work-lightbox-frame {
  max-width: calc(100vw - 96px);
  max-height: calc(100vh - 80px);
  margin: 0;
  transform: scale(0.94) translateY(10px);
  transition: transform 320ms cubic-bezier(0.22, 1, 0.36, 1);
}

.work-lightbox.is-open .work-lightbox-frame {
  transform: scale(1) translateY(0);
}

.work-lightbox-image {
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: calc(100vh - 80px);
  border-radius: 5px;
  object-fit: contain;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.34);
}

.work-lightbox-close {
  position: fixed;
  top: 22px;
  right: 22px;
  z-index: 1;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  color: #fffdf8;
  background: rgba(33, 35, 31, 0.54);
  font: inherit;
  font-size: 1.65rem;
  line-height: 1;
  cursor: pointer;
  transition: background 180ms ease, transform 180ms ease;
}

.work-lightbox-close:hover {
  background: rgba(33, 35, 31, 0.78);
  transform: scale(1.04);
}

.work-lightbox-close:focus-visible {
  outline: 2px solid #fffdf8;
  outline-offset: 3px;
}

.work-media-product,
.work-media-writing {
  --proof-width: 48%;
  --proof-height: 92%;
}

.work-media-art {
  display: grid;
  place-items: center;
  background:
    linear-gradient(90deg, transparent 49.5%, rgba(82, 118, 107, 0.18) 50%, transparent 50.5%),
    linear-gradient(0deg, transparent 49.5%, rgba(168, 101, 63, 0.17) 50%, transparent 50.5%),
    #efebe3;
}

.work-render-art {
  object-position: center;
  filter: saturate(0.58) contrast(0.92) brightness(0.94);
  transform: scale(1.04);
}

.work-media-art::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: rgba(246, 242, 234, 0.28);
  pointer-events: none;
}

.work-media-art .work-proof-link {
  right: 18px;
  width: 62%;
  height: 86%;
}

.work-media-art .work-proof {
  object-position: center 38%;
}

.work-card:hover {
  transform: translateY(-5px);
  border-color: rgba(168, 101, 63, 0.24);
  background: rgba(255, 253, 248, 0.88);
}

.work-card:hover .work-render {
  transform: scale(1.035);
  filter: saturate(0.82) contrast(0.98);
}

.work-card:hover .work-render-art {
  transform: scale(1.08);
  filter: saturate(0.68) contrast(0.94) brightness(0.96);
}

.work-card:hover .work-proof-link {
  transform: translateY(-3px) rotate(0.6deg);
  box-shadow: 0 18px 36px rgba(33, 35, 31, 0.24);
}

.work-card > div {
  padding: 22px;
}

.work-type {
  margin: 0 0 12px;
  font-family:
    "Avenir Next",
    "Helvetica Neue",
    Arial,
    sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--copper);
}

.work-card p:not(.work-type) {
  margin: 14px 0 0;
  color: var(--muted);
  line-height: 1.72;
}

.archive-header,
.archive-list,
.archive-footer {
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
}

.archive-header {
  min-height: 72vh;
  display: grid;
  align-content: end;
  padding: 64px 0 72px;
  border-bottom: 1px solid var(--line);
}

.back-link {
  position: absolute;
  top: 36px;
  color: var(--sage-dark);
  font-family:
    "Avenir Next",
    "Helvetica Neue",
    Arial,
    sans-serif;
  font-size: 0.86rem;
  text-decoration: none;
}

.archive-header h1 {
  max-width: 10em;
  font-size: clamp(3.8rem, 7vw, 6.4rem);
  line-height: 1.08;
}

.archive-intro {
  max-width: none;
  margin: 30px 0 0;
  color: var(--muted);
  font-size: 1.15rem;
  line-height: 1.85;
  white-space: nowrap;
}

.archive-list {
  padding: 28px 0 84px;
}

.activity-story {
  display: grid;
  grid-template-columns: 112px minmax(280px, 1.08fr) minmax(260px, 0.92fr);
  gap: 34px;
  align-items: center;
  padding: 52px 0;
  border-bottom: 1px solid var(--line);
}

.activity-story-meta {
  align-self: start;
  display: grid;
  gap: 10px;
  padding-top: 4px;
  font-family:
    "Avenir Next",
    "Helvetica Neue",
    Arial,
    sans-serif;
}

.activity-story-meta time {
  color: var(--copper);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.activity-story-meta span {
  color: var(--soft);
  font-size: 0.78rem;
}

.activity-story-media {
  display: block;
  overflow: hidden;
  border-radius: 7px;
  background: rgba(255, 253, 248, 0.72);
}

.activity-story-media img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  filter: saturate(0.72) contrast(0.96);
  transition: transform 700ms cubic-bezier(0.22, 1, 0.36, 1), filter 700ms ease;
}

.activity-story-portrait .activity-story-media img {
  width: auto;
  max-width: 100%;
  height: min(32vw, 430px);
  max-height: 430px;
  aspect-ratio: auto;
  object-fit: contain;
  object-position: center;
}

.activity-story-portrait .activity-story-media {
  display: grid;
  min-height: 430px;
  place-items: center;
  padding: 18px;
}

.activity-story-media:hover img {
  transform: scale(1.025);
  filter: saturate(0.88) contrast(0.98);
}

.activity-story-copy h2 {
  font-size: clamp(1.5rem, 2.4vw, 2.05rem);
  line-height: 1.35;
}

.activity-story-copy p {
  margin: 18px 0 0;
  color: var(--muted);
  line-height: 1.8;
}

.activity-story-copy a {
  display: inline-block;
  margin-top: 24px;
  padding-bottom: 6px;
  border-bottom: 1px solid rgba(168, 101, 63, 0.4);
  color: var(--sage-dark);
  font-family:
    "Avenir Next",
    "Helvetica Neue",
    Arial,
    sans-serif;
  font-size: 0.84rem;
  text-decoration: none;
}

.archive-footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 34px 0 54px;
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.archive-footer p {
  margin: 0;
}

.archive-footer a {
  color: var(--sage-dark);
  text-decoration: none;
}

.contact {
  padding-bottom: 96px;
}

.contact-panel {
  padding: 40px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: clamp(48px, 8vw, 96px);
  row-gap: 32px;
  align-items: start;
  transition:
    background 420ms ease,
    border-color 420ms ease;
}

.contact-panel:hover {
  background: rgba(255, 253, 248, 0.84);
  border-color: rgba(82, 118, 107, 0.22);
}

.contact-panel h2 {
  margin-bottom: 16px;
  justify-self: end;
  text-align: right;
}

.contact-panel p:not(.eyebrow) {
  max-width: 12em;
  margin: 0;
  font-size: clamp(1.65rem, 2.2vw, 2rem);
  line-height: 1.45;
  color: var(--muted);
}

.contact-links {
  width: min(100%, 340px);
  display: grid;
  gap: 12px;
  justify-self: end;
  justify-items: end;
  font-size: 1rem;
  font-family:
    "Avenir Next",
    "Helvetica Neue",
    Arial,
    sans-serif;
}

.contact-links a,
.contact-links span {
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(168, 101, 63, 0.42);
  text-decoration: none;
}

.contact-links a {
  transition: color 220ms ease, border-color 220ms ease;
}

.contact-links a:hover {
  color: var(--sage-dark);
  border-color: rgba(36, 78, 69, 0.58);
}

@media (prefers-reduced-motion: no-preference) {
  .js .hero-copy > *,
  .js .axis-map {
    opacity: 0;
    transform: translate3d(0, 18px, 0);
  }

  .js.is-ready .hero-copy > *,
  .js.is-ready .axis-map {
    opacity: 1;
    transition:
      opacity 900ms cubic-bezier(0.22, 1, 0.36, 1),
      transform 900ms cubic-bezier(0.22, 1, 0.36, 1);
  }

  .js.is-ready .hero-copy > * {
    transform: translate3d(0, 0, 0);
  }

  .js.is-ready .axis-map {
    transform: translate3d(calc(var(--axis-x) * -8px), calc(var(--axis-y) * -8px), 0);
  }

  .js.is-ready .hero-copy > :nth-child(1) {
    transition-delay: 80ms;
  }

  .js.is-ready .hero-copy > :nth-child(2) {
    transition-delay: 150ms;
  }

  .js.is-ready .hero-copy > :nth-child(3) {
    transition-delay: 230ms;
  }

  .js.is-ready .hero-copy > :nth-child(4) {
    transition-delay: 310ms;
  }

  .js.is-ready .hero-copy > :nth-child(5) {
    transition-delay: 390ms;
  }

  .js.is-ready .axis-map {
    transition-delay: 260ms;
  }

  .reveal {
    opacity: 0;
    transform: translate3d(0, 26px, 0) scale(0.985);
  }

  .reveal.is-visible {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
    transition:
      opacity 760ms cubic-bezier(0.22, 1, 0.36, 1) var(--reveal-delay, 0ms),
      transform 760ms cubic-bezier(0.22, 1, 0.36, 1) var(--reveal-delay, 0ms);
  }

  .js .intersection-card.reveal .card-index,
  .js .intersection-card.reveal h3,
  .js .intersection-card.reveal p:not(.card-index),
  .js .intersection-card.reveal li {
    opacity: 0;
    transform: translate3d(0, 14px, 0);
  }

  .js .intersection-card.reveal.is-visible::before {
    opacity: 1;
    transform: translate3d(34%, 28%, 0) rotate(-8deg);
  }

  .js .intersection-card.reveal.is-visible .card-index,
  .js .intersection-card.reveal.is-visible h3,
  .js .intersection-card.reveal.is-visible p:not(.card-index),
  .js .intersection-card.reveal.is-visible li {
    opacity: 1;
    transform: translate3d(0, 0, 0);
    transition:
      opacity 680ms cubic-bezier(0.22, 1, 0.36, 1),
      transform 680ms cubic-bezier(0.22, 1, 0.36, 1),
      color 320ms ease,
      border-color 320ms ease;
  }

  .js .intersection-card.reveal.is-visible .card-index {
    transition-delay: 90ms;
  }

  .js .intersection-card.reveal.is-visible h3 {
    transition-delay: 150ms;
  }

  .js .intersection-card.reveal.is-visible p:not(.card-index) {
    transition-delay: 220ms;
  }

  .js .intersection-card.reveal.is-visible li:nth-child(1) {
    transition-delay: 300ms;
  }

  .js .intersection-card.reveal.is-visible li:nth-child(2) {
    transition-delay: 360ms;
  }

  .js .intersection-card.reveal.is-visible li:nth-child(3) {
    transition-delay: 420ms;
  }

  .js .intersection-card.reveal.is-visible li:nth-child(4) {
    transition-delay: 480ms;
  }

  .js .intersection-card.reveal.is-visible.is-pointer-active {
    transform: translate(calc(var(--follow-x) * 3px), calc(-3px + var(--follow-y) * 2px));
    transition:
      transform 110ms linear,
      border-color 220ms ease,
      background 220ms ease;
  }

  .js .intersection-card.reveal.is-visible.is-pointer-active .card-index {
    transform: translate3d(calc(var(--follow-x) * -4px), calc(var(--follow-y) * -3px), 0);
  }

  .js .intersection-card.reveal.is-visible.is-pointer-active h3 {
    transform: translate3d(calc(var(--follow-x) * -2px), calc(var(--follow-y) * -2px), 0);
  }

  .js .intersection-card.reveal.is-visible.is-pointer-active p:not(.card-index),
  .js .intersection-card.reveal.is-visible.is-pointer-active ul {
    transform: translate3d(calc(var(--follow-x) * 1.5px), calc(var(--follow-y) * 1.5px), 0);
  }

  .js .intersection-card.reveal.is-visible li:hover {
    transform: translateX(4px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .work-lightbox,
  .work-lightbox-frame,
  .work-lightbox-close {
    transition: none;
  }
}

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

@media (max-width: 980px) {
  .hero {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .axis-map {
    min-height: 320px;
  }

  .intersection-grid,
  .proof-layout,
  .work-grid {
    grid-template-columns: 1fr;
  }

  .intersection-card {
    min-height: auto;
  }

  .product-wall {
    grid-template-columns: repeat(2, 1fr);
  }

  .product-panel .product-wall {
    margin-top: 0;
  }

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

  .contact-panel h2 {
    justify-self: start;
    text-align: left;
  }

  .contact-links {
    justify-items: start;
  }

  .activity-story {
    grid-template-columns: 90px minmax(0, 1fr);
  }

  .activity-story-copy {
    grid-column: 2;
  }

  .archive-intro {
    white-space: normal;
  }
}

@media (max-width: 640px) {
  .hero,
  .section {
    width: min(100% - 32px, var(--max));
  }

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

  h1 {
    font-size: clamp(3.1rem, 15vw, 4.2rem);
  }

  h2 {
    font-size: 2rem;
  }

  .slogan {
    font-size: 1.55rem;
  }

  .axis-map {
    min-height: 260px;
  }

  .section {
    padding: 58px 0;
  }

  .subheading {
    align-items: center;
  }

  .subheading p {
    margin-top: 12px;
  }

  .product-panel,
  .activity-panel,
  .intersection-card,
  .contact-panel {
    padding: 22px;
  }

  .product-item {
    min-height: 126px;
  }

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

  .activity-panel .evidence-card {
    grid-template-columns: 78px 1fr;
  }

  .evidence-card img {
    width: 100%;
  }

  .activity-panel .evidence-card img {
    width: 78px;
  }

  .work-proof-link {
    right: 10px;
    bottom: 10px;
    border-width: 3px;
  }

  .work-lightbox {
    padding: 20px;
  }

  .work-lightbox-frame {
    max-width: calc(100vw - 32px);
    max-height: calc(100vh - 56px);
  }

  .work-lightbox-image {
    max-height: calc(100vh - 56px);
  }

  .work-lightbox-close {
    top: 12px;
    right: 12px;
  }

  .archive-header,
  .archive-list,
  .archive-footer {
    width: min(100% - 32px, var(--max));
  }

  .archive-header {
    min-height: 64vh;
    padding: 50px 0 54px;
  }

  .archive-header h1 {
    font-size: clamp(3rem, 14vw, 4.2rem);
  }

  .archive-intro {
    font-size: 1rem;
  }

  .activity-story {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 38px 0;
  }

  .activity-story-meta,
  .activity-story-copy {
    grid-column: 1;
  }

  .activity-story-meta {
    display: flex;
    justify-content: space-between;
  }

  .activity-story-portrait .activity-story-media {
    min-height: 0;
    padding: 14px;
  }

  .activity-story-portrait .activity-story-media img {
    width: auto;
    height: auto;
    max-height: none;
  }

  .archive-footer {
    display: grid;
  }

  .contact-panel p:not(.eyebrow) {
    font-size: 1.1rem;
  }
}
