:root {
  --ink: #090909;
  --paper: #f7f8f4;
  --paper-strong: #ffffff;
  --muted: #5c6259;
  --line: #e2e5dd;
  --green: #bfe7ad;
  --green-dark: #285c2a;
  --coral: #d75d39;
  --amber: #e5a629;
  --cyan: #1f9ca5;
  --shadow: 0 18px 50px rgba(9, 9, 9, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family:
    Inter, "Microsoft YaHei", "PingFang SC", "Noto Sans CJK SC", Arial,
    sans-serif;
  font-size: 16px;
  line-height: 1.5;
  overflow-x: hidden;
}

body::selection {
  color: #fff;
  background: var(--green-dark);
}

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

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

.site-header {
  position: fixed;
  z-index: 30;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  min-height: 72px;
  padding: 14px 32px;
  color: #fff;
  transition:
    background 180ms ease,
    color 180ms ease,
    box-shadow 180ms ease;
}

.site-header[data-elevated="true"] {
  color: var(--ink);
  background: rgba(245, 241, 232, 0.92);
  box-shadow: 0 1px 0 rgba(17, 17, 15, 0.08);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 168px;
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: #07120c;
  background: var(--green);
  border-radius: 6px;
  font-weight: 800;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 15px;
  line-height: 1.1;
}

.brand small {
  margin-top: 2px;
  color: currentColor;
  font-size: 12px;
  opacity: 0.72;
}

.primary-nav {
  display: flex;
  justify-content: center;
  gap: 22px;
  font-size: 14px;
}

.primary-nav a {
  padding: 8px 0;
  border-bottom: 2px solid transparent;
}

.primary-nav a:hover,
.primary-nav a:focus-visible,
.primary-nav a[aria-current] {
  border-bottom-color: var(--green);
}

.header-action,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 16px;
  border-radius: 6px;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
}

.header-action {
  color: #07120c;
  background: var(--green);
}

.hero {
  position: relative;
  display: grid;
  min-height: clamp(620px, 74vh, 760px);
  overflow: hidden;
  color: #fff;
  isolation: isolate;
}

.hero-bg,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-bg {
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 58% center;
  filter: saturate(1.05) contrast(1.04);
}

.hero-overlay {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(7, 8, 7, 0.88), rgba(7, 8, 7, 0.5) 48%, rgba(7, 8, 7, 0.14)),
    linear-gradient(180deg, rgba(7, 8, 7, 0.18), rgba(7, 8, 7, 0.66));
}

.hero-content {
  width: min(1120px, calc(100% - 64px));
  margin: 0 auto;
  padding: 132px 0 88px;
  align-self: center;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--green);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 760px;
  margin: 0;
  font-size: 72px;
  line-height: 0.96;
  letter-spacing: 0;
  overflow-wrap: anywhere;
}

.hero-copy {
  max-width: 650px;
  margin: 26px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 20px;
  overflow-wrap: anywhere;
}

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

.button-primary {
  color: #07120c;
  background: var(--green);
}

.button-primary:hover,
.header-action:hover {
  background: #34c780;
}

.button-secondary {
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.42);
  background: rgba(255, 255, 255, 0.08);
}

.button-secondary:hover {
  border-color: rgba(255, 255, 255, 0.72);
  background: rgba(255, 255, 255, 0.16);
}

.hero-meta {
  position: absolute;
  right: 32px;
  bottom: 28px;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  max-width: 620px;
  gap: 8px;
}

.hero-meta span,
.tag-row span {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  color: #fff;
  background: rgba(255, 255, 255, 0.16);
  font-size: 12px;
  font-weight: 700;
  overflow-wrap: anywhere;
}

.hero-meta span {
  flex: 0 0 auto;
}

.intro-band {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border-bottom: 1px solid var(--line);
}

.metric {
  padding: 28px 32px;
  background: var(--paper-strong);
}

.metric strong {
  display: block;
  font-size: 32px;
  line-height: 1.05;
}

.metric span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
}

.section {
  width: min(1180px, calc(100% - 64px));
  margin: 0 auto;
  padding: 88px 0;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 26px;
}

.section-note {
  max-width: 410px;
  margin: 0;
  color: var(--muted);
}

.section h2,
.about-band h2,
.contact-section h2 {
  margin: 0;
  font-size: 42px;
  line-height: 1.06;
  letter-spacing: 0;
}

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 26px;
}

.filter-button {
  min-height: 38px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink);
  background: transparent;
  font: inherit;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
}

.filter-button.is-active,
.filter-button:hover,
.filter-button:focus-visible {
  color: #07120c;
  border-color: var(--green);
  background: var(--green);
}

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

.work-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper-strong);
  box-shadow: 0 1px 0 rgba(17, 17, 15, 0.04);
}

.work-card[hidden] {
  display: none;
}

.work-card-featured {
  grid-column: span 2;
}

.media-frame {
  display: block;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #1c1b18;
}

.media-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 240ms ease;
}

.work-card:hover .media-frame img {
  transform: scale(1.035);
}

.work-content {
  padding: 18px;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 14px;
}

.tag-row span {
  color: var(--ink);
  background: #e6dfd1;
}

.tag-row span:nth-child(2n) {
  background: #d7ece2;
}

.tag-row span:nth-child(3n) {
  background: #f0ddc9;
}

.work-content h3,
.doc-feature h3 {
  margin: 0;
  font-size: 24px;
  line-height: 1.16;
}

.work-content p,
.doc-feature p,
.about-band p {
  margin: 12px 0 0;
  color: var(--muted);
}

.card-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 18px;
}

.details-button {
  min-height: 38px;
  padding: 0 13px;
  border: 0;
  border-radius: 6px;
  color: #07120c;
  background: var(--green);
  font: inherit;
  font-size: 14px;
  font-weight: 800;
  cursor: pointer;
}

.details-button:hover,
.details-button:focus-visible {
  background: #34c780;
}

.text-link.compact {
  margin-top: 0;
  font-size: 14px;
  white-space: nowrap;
}

.process-section {
  padding: 78px max(32px, calc((100% - 1180px) / 2));
  background: var(--paper-strong);
  border-top: 1px solid var(--line);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
}

.process-grid article {
  min-height: 210px;
  padding: 28px;
  background: var(--paper-strong);
}

.process-grid span {
  display: inline-flex;
  margin-bottom: 38px;
  color: var(--green-dark);
  font-weight: 900;
}

.process-grid h3 {
  margin: 0;
  font-size: 23px;
  line-height: 1.18;
}

.process-grid p {
  margin: 12px 0 0;
  color: var(--muted);
}

.project-dialog {
  width: min(980px, calc(100% - 36px));
  padding: 0;
  border: 0;
  border-radius: 8px;
  color: var(--ink);
  background: var(--paper-strong);
  box-shadow: var(--shadow);
}

.project-dialog::backdrop {
  background: rgba(17, 17, 15, 0.68);
  backdrop-filter: blur(6px);
}

.dialog-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  max-height: min(760px, calc(100vh - 44px));
  overflow: auto;
}

.dialog-image {
  width: 100%;
  height: 100%;
  min-height: 460px;
  object-fit: cover;
  background: #11110f;
}

.dialog-content {
  padding: 34px;
}

.dialog-content h2 {
  margin: 0;
  font-size: 36px;
  line-height: 1.08;
  letter-spacing: 0;
}

.dialog-content > p {
  margin: 16px 0 0;
  color: var(--muted);
}

.dialog-columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  margin: 26px 0;
}

.dialog-columns h3 {
  margin: 0 0 10px;
  font-size: 16px;
}

.dialog-columns ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
}

.dialog-close {
  position: absolute;
  z-index: 2;
  top: 14px;
  right: 14px;
  width: 38px;
  height: 38px;
  border: 0;
  border-radius: 999px;
  color: #fff;
  background: rgba(17, 17, 15, 0.72);
  font: inherit;
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
}

.dialog-close:hover,
.dialog-close:focus-visible {
  background: var(--green-dark);
}

.docs-section {
  width: 100%;
  max-width: none;
  padding: 88px max(32px, calc((100% - 1180px) / 2));
  background: #171713;
  color: #fff;
}

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

.doc-feature {
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(40, 168, 107, 0.2), transparent 44%),
    #22221c;
}

.doc-feature p {
  color: rgba(255, 255, 255, 0.72);
}

.doc-feature-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.text-link {
  display: inline-flex;
  margin-top: 22px;
  color: var(--green);
  font-weight: 800;
}

.inline-more {
  display: inline-flex;
  margin-left: 10px;
  color: var(--green-dark);
  font-weight: 900;
}

.doc-list {
  display: grid;
  gap: 10px;
}

.doc-list a {
  display: grid;
  gap: 6px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
}

.doc-list a:hover,
.doc-list a:focus-visible {
  border-color: var(--green);
  background: rgba(40, 168, 107, 0.12);
}

.doc-list span {
  font-size: 18px;
  font-weight: 800;
}

.doc-list small {
  color: rgba(255, 255, 255, 0.62);
  font-size: 13px;
}

.about-band {
  display: grid;
  grid-template-columns: minmax(0, 0.7fr) minmax(0, 1fr);
  gap: 54px;
  padding: 76px max(32px, calc((100% - 1180px) / 2));
  background: var(--paper-strong);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.about-band p {
  font-size: 19px;
}

.contact-section {
  padding: 88px max(32px, calc((100% - 1180px) / 2));
  color: #fff;
  background:
    linear-gradient(135deg, rgba(215, 93, 57, 0.34), transparent 40%),
    linear-gradient(45deg, rgba(31, 156, 165, 0.24), transparent 52%),
    #11110f;
}

.contact-section .button-secondary {
  color: #fff;
}

.article-page {
  background: var(--paper);
}

.article-hero {
  position: relative;
  display: grid;
  min-height: clamp(440px, 52vh, 620px);
  align-items: end;
  overflow: hidden;
  color: #fff;
  isolation: isolate;
}

.article-hero img,
.article-hero-overlay {
  position: absolute;
  inset: 0;
}

.article-hero img {
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(1.03) contrast(1.04);
}

.article-hero-overlay {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(7, 8, 7, 0.86), rgba(7, 8, 7, 0.45)),
    linear-gradient(180deg, rgba(7, 8, 7, 0.12), rgba(7, 8, 7, 0.78));
}

.article-hero-content {
  width: min(1080px, calc(100% - 64px));
  margin: 0 auto;
  padding: 128px 0 62px;
}

.article-hero h1 {
  max-width: 900px;
  margin: 0;
  font-size: 58px;
  line-height: 1.02;
  letter-spacing: 0;
  overflow-wrap: anywhere;
}

.article-hero p:not(.eyebrow) {
  max-width: 760px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 19px;
}

.article-hero .tag-row {
  margin-top: 26px;
  margin-bottom: 0;
}

.article-hero .tag-row span {
  color: #fff;
  background: rgba(255, 255, 255, 0.16);
}

.article-layout {
  display: grid;
  grid-template-columns: 300px minmax(0, 1fr);
  gap: 42px;
  width: min(1180px, calc(100% - 64px));
  margin: 0 auto;
  padding: 64px 0 92px;
}

.article-side {
  position: sticky;
  top: 96px;
  align-self: start;
  display: grid;
  gap: 18px;
}

.article-side .text-link {
  margin-top: 0;
}

.article-side-panel {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper-strong);
}

.article-side-panel h2 {
  margin: 0 0 14px;
  font-size: 16px;
}

.article-side-panel ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
}

.article-related {
  display: grid;
  gap: 8px;
}

.article-related a {
  padding-top: 10px;
  border-top: 1px solid var(--line);
  color: var(--ink);
  font-weight: 800;
}

.article-related a:hover,
.article-related a:focus-visible {
  color: var(--green-dark);
}

.article-content {
  display: grid;
  gap: 22px;
  min-width: 0;
  max-width: 860px;
}

.article-block {
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper-strong);
}

.article-block h2 {
  margin: 0;
  font-size: 30px;
  line-height: 1.12;
}

.article-block p {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 18px;
}

.article-notice {
  border-style: dashed;
  background: rgba(255, 250, 240, 0.78);
}

.article-notice h2 {
  font-size: 24px;
}

.legacy-asset-note {
  margin: 24px 0;
  padding: 18px 20px;
  border: 1px dashed rgba(38, 122, 99, 0.42);
  border-radius: 8px;
  background: rgba(38, 122, 99, 0.08);
}

.legacy-asset-note strong {
  display: block;
  margin-bottom: 8px;
  color: var(--green-dark);
  font-size: 16px;
}

.legacy-asset-note p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.65;
}

.article-block ul {
  display: grid;
  gap: 10px;
  margin: 20px 0 0;
  padding-left: 22px;
  color: var(--muted);
}

.article-block li::marker {
  color: var(--green-dark);
}

.wp-article-body {
  min-width: 0;
  padding: 38px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper-strong);
  overflow: hidden;
}

.wp-article-body > :first-child {
  margin-top: 0;
}

.wp-article-body > :last-child {
  margin-bottom: 0;
}

.wp-article-body h1,
.wp-article-body h2,
.wp-article-body h3,
.wp-article-body h4 {
  margin: 34px 0 14px;
  line-height: 1.18;
  letter-spacing: 0;
}

.wp-article-body h1 {
  font-size: 34px;
}

.wp-article-body h2 {
  font-size: 30px;
}

.wp-article-body h3 {
  font-size: 24px;
}

.wp-article-body h4 {
  font-size: 19px;
}

.wp-article-body p,
.wp-article-body li {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.78;
}

.wp-article-body p {
  margin: 16px 0;
}

.wp-article-body ul,
.wp-article-body ol {
  display: grid;
  gap: 8px;
  margin: 18px 0;
  padding-left: 24px;
}

.wp-article-body li::marker {
  color: var(--green-dark);
}

.wp-article-body a {
  color: var(--green-dark);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.archive-resource-link {
  display: inline-flex;
  width: fit-content;
  max-width: 100%;
  align-items: center;
  justify-content: center;
  margin-top: 18px;
  padding: 11px 14px;
  border: 1px solid rgba(38, 122, 99, 0.22);
  border-radius: 8px;
  background: rgba(38, 122, 99, 0.08);
  color: var(--green-dark);
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
}

.archive-resource-link:hover,
.archive-resource-link:focus-visible {
  border-color: rgba(38, 122, 99, 0.42);
  background: rgba(38, 122, 99, 0.13);
}

.wp-article-body figure {
  margin: 28px 0;
}

.wp-article-body img,
.wp-article-body video,
.wp-article-body iframe,
.wp-article-body .loaded-video,
.wp-article-body .lazy-video {
  max-width: 100%;
  border-radius: 8px;
}

.wp-article-body img {
  height: auto;
  margin: 0 auto;
  background: #151512;
}

.wp-article-body figcaption {
  margin-top: 10px;
  color: var(--muted);
  font-size: 14px;
  text-align: center;
}

.wp-article-body pre {
  max-width: 100%;
  margin: 22px 0;
  padding: 18px;
  overflow-x: auto;
  border-radius: 8px;
  color: #f4f1e8;
  background: #151512;
  font-size: 14px;
  line-height: 1.58;
}

.wp-article-body code {
  border-radius: 4px;
  color: #151512;
  background: #e4dccf;
  font-family: "Cascadia Code", Consolas, "SFMono-Regular", monospace;
  font-size: 0.92em;
}

.wp-article-body pre code {
  color: inherit;
  background: transparent;
  font-size: inherit;
}

.wp-article-body blockquote {
  margin: 24px 0;
  padding: 18px 22px;
  border-left: 4px solid var(--green);
  background: #ede6d8;
}

.wp-article-body blockquote p {
  margin: 0;
}

.wp-article-body table {
  display: block;
  width: 100%;
  max-width: 100%;
  margin: 24px 0;
  overflow-x: auto;
  border-collapse: collapse;
}

.wp-article-body th,
.wp-article-body td {
  padding: 10px 12px;
  border: 1px solid var(--line);
}

.wp-article-body .wp-block-embed__wrapper {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
}

.lazy-video,
.lazy-image {
  display: grid;
  width: 100%;
  min-height: 180px;
  place-items: center;
  gap: 8px;
  padding: 24px;
  border: 0;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(40, 168, 107, 0.34), transparent 42%),
    #11110f;
  font: inherit;
  text-align: center;
}

.lazy-video {
  grid-template-rows: 1fr auto;
}

.lazy-video-button,
.lazy-image {
  width: 100%;
  height: 100%;
  min-height: inherit;
  border: 0;
  color: inherit;
  background: transparent;
  font: inherit;
  cursor: pointer;
}

.lazy-video:hover,
.lazy-video:focus-within,
.lazy-image:hover,
.lazy-image:focus-visible {
  background:
    linear-gradient(135deg, rgba(40, 168, 107, 0.46), transparent 42%),
    #171713;
}

.lazy-video-button {
  display: grid;
  place-items: center;
  gap: 8px;
  padding: 24px 18px 10px;
}

.lazy-video-icon {
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  border-radius: 999px;
  color: #07120c;
  background: var(--green);
  font-size: 22px;
  font-weight: 900;
}

.lazy-video-title {
  max-width: 100%;
  font-weight: 900;
  overflow-wrap: anywhere;
}

.lazy-video-note {
  color: rgba(255, 255, 255, 0.68);
  font-size: 13px;
  font-weight: 800;
}

.lazy-video-link {
  margin: 0 0 16px;
  color: var(--green);
  font-size: 13px;
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.loaded-video {
  width: 100%;
  height: auto;
  background: #11110f;
}

.article-index-page {
  background: var(--paper);
}

.article-index-hero {
  position: relative;
  display: grid;
  min-height: clamp(380px, 44vh, 520px);
  align-items: end;
  overflow: hidden;
  color: #fff;
  isolation: isolate;
}

.article-index-hero img {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(1.04) contrast(1.06);
}

.article-index-hero-content {
  width: min(1180px, calc(100% - 64px));
  margin: 0 auto;
  padding: 122px 0 56px;
}

.article-index-hero h1 {
  margin: 0;
  font-size: 58px;
  line-height: 1.02;
  letter-spacing: 0;
}

.article-index-hero p:not(.eyebrow) {
  max-width: 720px;
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 19px;
  overflow-wrap: anywhere;
}

.article-index-shell {
  width: min(1180px, calc(100% - 64px));
  margin: 0 auto;
  padding: 54px 0 92px;
}

.article-index-toolbar {
  display: grid;
  grid-template-columns: minmax(220px, 320px) 1fr auto;
  align-items: start;
  gap: 18px;
  margin-bottom: 22px;
}

.article-search {
  display: grid;
  gap: 8px;
  font-weight: 800;
}

.article-search span {
  color: var(--green-dark);
  font-size: 13px;
}

.article-search input {
  width: 100%;
  min-height: 42px;
  padding: 0 13px;
  border: 1px solid var(--line);
  border-radius: 6px;
  color: var(--ink);
  background: var(--paper-strong);
  font: inherit;
}

.article-search input:focus {
  border-color: var(--green);
  outline: 2px solid rgba(40, 168, 107, 0.22);
}

.article-filter-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.article-filter-chip {
  min-height: 38px;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink);
  background: var(--paper-strong);
  font: inherit;
  font-size: 14px;
  font-weight: 800;
  cursor: pointer;
}

.article-filter-chip[aria-pressed="true"],
.article-filter-chip:hover,
.article-filter-chip:focus-visible {
  color: #07120c;
  border-color: var(--green);
  background: var(--green);
}

.article-count {
  margin: 9px 0 0;
  color: var(--muted);
  font-weight: 800;
  white-space: nowrap;
}

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

.article-list-card {
  display: grid;
  gap: 10px;
  min-height: 178px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper-strong);
  box-shadow: 0 1px 0 rgba(17, 17, 15, 0.04);
}

.article-list-card:hover,
.article-list-card:focus-visible {
  border-color: var(--green);
  transform: translateY(-1px);
}

.article-list-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.article-list-meta span {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 0 9px;
  border-radius: 999px;
  color: var(--ink);
  background: #e6dfd1;
  font-size: 12px;
  font-weight: 800;
}

.article-list-meta span:first-child {
  color: #fff;
  background: #171713;
}

.article-list-card h2 {
  margin: 0;
  font-size: 22px;
  line-height: 1.18;
  letter-spacing: 0;
}

.article-list-card p {
  margin: 0;
  color: var(--muted);
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.empty-state {
  grid-column: 1 / -1;
  padding: 30px;
  border: 1px dashed var(--line);
  border-radius: 8px;
  color: var(--muted);
  background: rgba(255, 250, 240, 0.58);
  text-align: center;
}

.works-page {
  background: var(--paper);
}

.works-hero {
  position: relative;
  display: grid;
  min-height: clamp(420px, 48vh, 580px);
  align-items: end;
  overflow: hidden;
  color: #fff;
  isolation: isolate;
}

.works-hero img {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 34%;
  filter: saturate(1.05) contrast(1.05);
}

.works-hero-content {
  width: min(1180px, calc(100% - 64px));
  margin: 0 auto;
  padding: 122px 0 62px;
}

.works-hero h1 {
  margin: 0;
  font-size: 64px;
  line-height: 1;
  letter-spacing: 0;
}

.works-hero p:not(.eyebrow) {
  max-width: 700px;
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 19px;
}

.works-section {
  width: min(1180px, calc(100% - 64px));
  margin: 0 auto;
  padding: 72px 0;
}

.works-archive-section {
  width: 100%;
  max-width: none;
  padding-right: max(32px, calc((100% - 1180px) / 2));
  padding-left: max(32px, calc((100% - 1180px) / 2));
  background: var(--paper-strong);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

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

.works-project-card,
.product-work-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper-strong);
}

.works-project-card img,
.product-work-card img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  background: #171713;
}

.works-project-card div,
.product-work-card div {
  padding: 18px;
}

.works-project-card h3,
.product-work-card h3 {
  margin: 0;
  font-size: 22px;
  line-height: 1.18;
}

.works-project-card p:not(.eyebrow),
.product-work-card p:not(.eyebrow) {
  margin: 10px 0 0;
  color: var(--muted);
}

.works-filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.works-media-tools {
  display: grid;
  grid-template-columns: minmax(220px, 320px) 1fr;
  align-items: end;
  gap: 18px;
  margin-bottom: 20px;
}

.works-media-search {
  max-width: 320px;
}

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

.works-media-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
}

.works-media-frame {
  display: grid;
  aspect-ratio: 16 / 9;
  place-items: center;
  overflow: hidden;
  background: #11110f;
}

.works-media-frame video,
.works-media-frame img,
.works-media-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
  object-fit: cover;
}

.works-media-frame .lazy-video,
.works-media-frame .lazy-image,
.works-media-frame .loaded-video {
  width: 100%;
  height: 100%;
  border-radius: 0;
}

.works-media-frame iframe {
  background: #11110f;
}

.works-media-card p {
  min-height: 58px;
  margin: 0;
  padding: 12px 14px;
  color: var(--muted);
  font-size: 14px;
}

/* 80.lv-inspired editorial skin. */
.site-header {
  top: 12px;
  left: 50%;
  right: auto;
  width: min(1220px, calc(100% - 32px));
  min-height: 56px;
  padding: 8px 18px;
  transform: translateX(-50%);
  border: 1px solid rgba(9, 9, 9, 0.08);
  border-radius: 8px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 10px 28px rgba(9, 9, 9, 0.08);
  backdrop-filter: blur(14px);
}

.site-header[data-elevated="true"] {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 14px 34px rgba(9, 9, 9, 0.12);
}

.brand {
  min-width: 146px;
}

.brand-mark {
  width: 38px;
  height: 30px;
  color: #fff;
  background: #050505;
  border-radius: 5px;
  font-size: 14px;
  letter-spacing: 0;
}

.primary-nav {
  justify-content: flex-start;
  gap: 20px;
  font-size: 15px;
  font-weight: 800;
}

.primary-nav a {
  border-bottom: 0;
}

.primary-nav a:hover,
.primary-nav a:focus-visible,
.primary-nav a[aria-current] {
  color: var(--green-dark);
  border-bottom-color: transparent;
}

.header-action,
.button-primary,
.details-button,
.filter-button.is-active,
.filter-button:hover,
.filter-button:focus-visible,
.article-filter-chip[aria-pressed="true"],
.article-filter-chip:hover,
.article-filter-chip:focus-visible {
  color: #07120c;
  background: var(--green);
}

.header-action {
  min-height: 36px;
  border-radius: 999px;
}

.hero,
.article-hero,
.works-hero,
.article-index-hero {
  width: min(1220px, calc(100% - 32px));
  margin: 82px auto 24px;
  border-radius: 8px;
  box-shadow: 0 1px 0 rgba(9, 9, 9, 0.08);
}

.hero {
  min-height: clamp(250px, 30vw, 330px);
}

.hero-overlay,
.article-hero-overlay {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.88), rgba(0, 0, 0, 0.4) 52%, rgba(0, 0, 0, 0.1)),
    linear-gradient(180deg, rgba(0, 0, 0, 0.04), rgba(0, 0, 0, 0.68));
}

.hero-content {
  width: min(1120px, calc(100% - 56px));
  padding: 76px 0 46px;
}

.hero h1 {
  max-width: 670px;
  font-size: clamp(34px, 4.4vw, 58px);
  line-height: 1;
}

.hero-copy {
  max-width: 620px;
  margin-top: 16px;
  font-size: 18px;
}

.hero-actions {
  margin-top: 22px;
}

.hero-copy,
.article-hero p:not(.eyebrow),
.works-hero p:not(.eyebrow),
.article-index-hero p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.88);
}

.eyebrow {
  color: var(--green-dark);
}

.hero .eyebrow,
.article-hero .eyebrow,
.works-hero .eyebrow,
.article-index-hero .eyebrow,
.docs-section .eyebrow,
.contact-section .eyebrow {
  color: var(--green);
}

.hero-meta {
  right: 28px;
  bottom: 22px;
}

.hero-meta span,
.tag-row span {
  border-radius: 999px;
  font-weight: 800;
}

.intro-band,
.section,
.docs-section,
.about-band,
.contact-section,
.process-section,
.works-section,
.works-archive-section,
.article-index-shell,
.article-layout {
  width: min(1220px, calc(100% - 32px));
  margin-right: auto;
  margin-left: auto;
}

.intro-band {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--line);
}

.section,
.docs-section,
.process-section,
.about-band,
.contact-section,
.works-section,
.works-archive-section,
.article-index-shell {
  margin-top: 40px;
  padding: 32px;
  border: 1px solid rgba(9, 9, 9, 0.04);
  border-radius: 8px;
  background: var(--paper-strong);
  box-shadow: 0 1px 0 rgba(9, 9, 9, 0.04);
}

.section-heading {
  align-items: center;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}

.section h2,
.about-band h2,
.contact-section h2,
.article-index-hero h1,
.works-hero h1 {
  font-size: clamp(34px, 4vw, 56px);
}

.section-note {
  max-width: 520px;
}

.filter-bar,
.article-filter-chips,
.works-filter-bar {
  gap: 10px;
}

.filter-button,
.article-filter-chip {
  min-height: 36px;
  border-color: rgba(9, 9, 9, 0.1);
  background: #fff;
  font-weight: 900;
}

.work-grid {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(220px, 1fr);
  grid-template-columns: none;
  gap: 10px;
  overflow-x: auto;
  padding-bottom: 18px;
  scroll-snap-type: x proximity;
}

.work-card,
.article-list-card,
.product-work-card,
.doc-list a,
.doc-feature,
.process-grid article {
  border-radius: 8px;
  box-shadow: none;
}

.work-card {
  position: relative;
  min-height: 330px;
  scroll-snap-align: start;
  border: 0;
  background: #101010;
}

.work-card-featured {
  grid-column: auto;
}

.work-card .media-frame {
  position: absolute;
  inset: 0;
  aspect-ratio: auto;
  background: #080808;
}

.work-card .media-frame::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.02), rgba(0, 0, 0, 0.78)),
    linear-gradient(90deg, rgba(0, 0, 0, 0.18), rgba(0, 0, 0, 0));
}

.work-content {
  position: relative;
  z-index: 1;
  display: flex;
  min-height: 330px;
  flex-direction: column;
  justify-content: flex-end;
  padding: 18px;
  color: #fff;
}

.work-content h3,
.doc-feature h3 {
  font-size: 22px;
}

.work-content p {
  color: rgba(255, 255, 255, 0.8);
}

.work-card .tag-row span {
  color: #fff;
  background: rgba(255, 255, 255, 0.18);
}

.work-card .text-link {
  color: var(--green);
}

.card-actions {
  align-items: flex-end;
}

.process-section {
  background: #101010;
  color: #fff;
}

.process-grid {
  border-color: rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.12);
}

.process-grid article {
  background: #171717;
}

.process-grid p {
  color: rgba(255, 255, 255, 0.72);
}

.docs-section {
  color: var(--ink);
  background: var(--paper-strong);
}

.docs-layout {
  align-items: stretch;
}

.doc-feature {
  border-color: var(--line);
  background:
    linear-gradient(135deg, rgba(191, 231, 173, 0.54), transparent 42%),
    #f7f8f4;
}

.doc-feature p {
  color: var(--muted);
}

.doc-list a {
  border-color: var(--line);
  background: #f7f8f4;
}

.doc-list a:hover,
.doc-list a:focus-visible {
  border-color: #111;
  background: #fff;
}

.doc-list small {
  color: var(--muted);
}

.about-band {
  border: 1px solid rgba(9, 9, 9, 0.04);
}

.contact-section {
  background: #101010;
}

.article-page,
.article-index-page,
.works-page {
  background: var(--paper);
}

.article-hero,
.works-hero,
.article-index-hero {
  min-height: clamp(360px, 44vh, 520px);
}

.article-hero-content,
.works-hero-content,
.article-index-hero-content {
  width: min(1120px, calc(100% - 56px));
}

.article-layout {
  gap: 18px;
  padding-top: 32px;
}

.article-sidebar,
.wp-article-body,
.article-block,
.article-list-card,
.article-index-toolbar {
  border-color: rgba(9, 9, 9, 0.08);
  background: #fff;
}

.article-index-shell {
  padding-top: 28px;
}

.article-index-toolbar {
  grid-template-columns: minmax(220px, 320px) 1fr auto;
  padding: 0 0 18px;
  border: 0;
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  box-shadow: none;
}

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

.article-list-card {
  overflow: hidden;
  min-height: 210px;
  padding: 0;
  background: #fdfdfb;
}

.article-list-thumb {
  display: block;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #111;
}

.article-list-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 220ms ease;
}

.article-list-card:hover .article-list-thumb img,
.article-list-card:focus-visible .article-list-thumb img {
  transform: scale(1.035);
}

.article-list-card .article-list-meta,
.article-list-card h2,
.article-list-card p {
  margin-right: 22px;
  margin-left: 22px;
}

.article-list-card .article-list-meta {
  margin-top: 20px;
}

.article-list-card p {
  margin-bottom: 22px;
}

.article-list-card:hover,
.article-list-card:focus-visible {
  border-color: #111;
  transform: translateY(-2px);
}

.article-list-meta span:first-child {
  background: #111;
}

.works-section,
.works-archive-section {
  background: #fff;
}

.product-work-card {
  background: #111;
}

@media (max-width: 920px) {
  .site-header {
    grid-template-columns: 1fr auto;
    width: 100vw;
    max-width: 100vw;
    gap: 10px 14px;
    padding: 12px 20px;
  }

  .primary-nav {
    grid-column: 1 / -1;
    justify-content: flex-start;
    gap: 6px;
    overflow-x: auto;
    padding: 2px 0 0;
    font-size: 13px;
    scrollbar-width: none;
  }

  .primary-nav::-webkit-scrollbar {
    display: none;
  }

  .primary-nav a {
    flex: 0 0 auto;
    min-height: 30px;
    padding: 5px 10px;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
  }

  .site-header[data-elevated="true"] .primary-nav a {
    border-color: rgba(17, 17, 15, 0.12);
    background: rgba(255, 250, 240, 0.7);
  }

  .primary-nav a:hover,
  .primary-nav a:focus-visible,
  .primary-nav a[aria-current] {
    color: #07120c;
    border-color: var(--green);
    background: var(--green);
  }

  .brand {
    min-width: 0;
  }

  .hero {
    min-height: clamp(420px, 68vh, 560px);
  }

  .hero-content {
    width: min(350px, calc(100% - 40px));
    margin-left: 20px;
    margin-right: auto;
    padding: 112px 0 84px;
  }

  .hero h1 {
    font-size: 48px;
  }

  .hero-copy {
    font-size: 17px;
  }

  .hero-meta {
    left: 20px;
    right: auto;
    width: min(350px, calc(100% - 40px));
    max-width: min(350px, calc(100% - 40px));
    justify-content: flex-start;
  }

  .intro-band,
  .work-grid,
  .docs-layout,
  .about-band,
  .process-grid,
  .dialog-layout,
  .dialog-columns {
    grid-template-columns: 1fr;
  }

  .work-card-featured {
    grid-column: span 1;
  }

  .section,
  .docs-section,
  .about-band,
  .contact-section,
  .process-section {
    padding-top: 64px;
    padding-bottom: 64px;
  }

  .section {
    width: min(100% - 40px, 720px);
  }

  .article-layout {
    grid-template-columns: 1fr;
    width: min(100% - 40px, 720px);
    padding: 46px 0 70px;
  }

  .article-side {
    position: static;
  }

  .article-hero-content {
    width: min(720px, calc(100% - 40px));
    padding: 128px 0 58px;
  }

  .article-hero h1 {
    font-size: 44px;
  }

  .article-index-shell,
  .article-index-hero-content {
    width: min(100% - 40px, 720px);
  }

  .article-index-toolbar,
  .article-list-grid {
    grid-template-columns: 1fr;
  }

  .article-count {
    margin-top: 0;
  }

  .works-hero-content,
  .works-section {
    width: min(100% - 40px, 720px);
  }

  .works-project-grid,
  .product-work-grid,
  .works-media-grid {
    grid-template-columns: 1fr 1fr;
  }

  .works-media-tools {
    grid-template-columns: 1fr;
  }

  .works-media-search {
    max-width: none;
  }
}

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

  .brand-mark {
    width: 38px;
    height: 38px;
  }

  .brand small {
    display: none;
  }

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

  .hero-content {
    padding-top: 104px;
  }

  .hero-meta span {
    max-width: 100%;
    white-space: normal;
  }

  .section h2,
  .about-band h2,
  .contact-section h2 {
    font-size: 32px;
  }

  .metric {
    padding: 22px 20px;
  }

  .work-content,
  .doc-feature,
  .doc-list a,
  .process-grid article,
  .dialog-content,
  .article-block,
  .article-side-panel,
  .wp-article-body {
    padding: 16px;
  }

  .section-heading,
  .card-actions {
    align-items: flex-start;
    flex-direction: column;
  }

  .dialog-image {
    min-height: 260px;
    aspect-ratio: 16 / 9;
  }

  .article-hero {
    min-height: clamp(430px, 58vh, 560px);
  }

  .article-hero h1 {
    font-size: 34px;
  }

  .article-hero p:not(.eyebrow),
  .article-block p {
    font-size: 16px;
  }

  .article-index-hero {
    min-height: 44vh;
  }

  .article-index-hero h1 {
    font-size: 38px;
  }

  .article-index-hero p:not(.eyebrow) {
    font-size: 16px;
  }

  .article-index-shell {
    padding: 38px 0 62px;
  }

  .article-list-card {
    min-height: 0;
    padding: 16px;
  }

  .works-hero {
    min-height: clamp(360px, 48vh, 460px);
  }

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

  .works-hero p:not(.eyebrow) {
    font-size: 16px;
  }

  .works-section,
  .works-archive-section {
    width: 100%;
    padding: 52px 20px;
  }

  .works-project-grid,
  .product-work-grid,
  .works-media-grid {
    grid-template-columns: 1fr;
  }
}

/* Editorial article presentation closer to 80.lv's media rhythm. */
.section-action {
  display: inline-flex;
  min-height: 36px;
  align-items: center;
  padding: 0 14px;
  border: 1px solid rgba(9, 9, 9, 0.12);
  border-radius: 999px;
  background: #fff;
  color: var(--ink);
  font-size: 14px;
  font-weight: 900;
}

.section-action:hover,
.section-action:focus-visible {
  border-color: var(--green);
  background: var(--green);
}

.editorial-articles {
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.editorial-articles .section-heading {
  width: fit-content;
  min-width: 260px;
  margin-bottom: -1px;
  padding: 20px 26px;
  border: 0;
  border-radius: 8px 8px 0 0;
  background: #fff;
}

.editorial-articles .section-heading h2 {
  font-size: 24px;
  line-height: 1.1;
}

.editorial-articles .section-action {
  margin-left: 18px;
}

.latest-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 280px;
  gap: 34px;
  align-items: start;
}

.latest-feed {
  overflow: hidden;
  border-radius: 0 8px 8px 8px;
  background: #fff;
}

.latest-row {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(280px, 0.96fr);
  min-height: 340px;
  border-top: 1px solid var(--line);
}

.latest-row:first-child {
  border-top: 0;
}

.latest-copy {
  display: grid;
  align-content: start;
  gap: 18px;
  padding: 42px;
}

.latest-copy small {
  color: var(--green-dark);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.latest-copy strong {
  max-width: 520px;
  color: #36392e;
  font-size: clamp(26px, 3vw, 42px);
  line-height: 1.12;
}

.latest-copy span {
  max-width: 520px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.58;
}

.latest-copy em {
  align-self: end;
  margin-top: 28px;
  color: #6f7669;
  font-size: 14px;
  font-style: normal;
  font-weight: 800;
}

.latest-media {
  display: block;
  min-height: 340px;
  overflow: hidden;
  background: #111;
}

.latest-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 240ms ease;
}

.latest-row:hover .latest-media img,
.latest-row:focus-visible .latest-media img {
  transform: scale(1.035);
}

.trending-panel {
  position: sticky;
  top: 92px;
  overflow: hidden;
  border-radius: 8px;
  background: #fff;
}

.trending-panel h3 {
  margin: 0;
  padding: 24px 26px 18px;
  color: #36392e;
  font-size: 22px;
  line-height: 1.12;
}

.trending-panel ol {
  display: grid;
  margin: 0;
  padding: 0;
  counter-reset: trending;
  list-style: none;
}

.trending-panel li {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  gap: 12px;
  padding: 18px 22px;
  border-top: 1px solid var(--line);
  counter-increment: trending;
}

.trending-panel li::before {
  content: counter(trending);
  color: #aeb7a6;
  font-weight: 900;
}

.trending-panel a {
  color: #303328;
  font-size: 15px;
  font-weight: 900;
  line-height: 1.35;
}

.trending-panel a:hover,
.trending-panel a:focus-visible {
  color: var(--green-dark);
}

.home-article-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(300px, 0.76fr);
  gap: 14px;
}

.home-article-card {
  position: relative;
  display: flex;
  min-height: 220px;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  padding: 24px;
  border-radius: 8px;
  color: #fff;
  background: #111;
  isolation: isolate;
}

.home-article-card img,
.home-article-shade {
  position: absolute;
  inset: 0;
}

.home-article-card img {
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 240ms ease;
}

.home-article-card:hover img,
.home-article-card:focus-visible img {
  transform: scale(1.035);
}

.home-article-shade {
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.02), rgba(0, 0, 0, 0.82)),
    linear-gradient(90deg, rgba(0, 0, 0, 0.42), rgba(0, 0, 0, 0.08));
}

.home-article-card-lead {
  min-height: 450px;
  grid-row: span 2;
}

.home-article-side {
  display: grid;
  gap: 14px;
}

.home-article-card-small {
  min-height: 218px;
  padding: 20px;
}

.home-article-meta {
  width: fit-content;
  max-width: 100%;
  margin-bottom: 10px;
  padding: 6px 9px;
  border-radius: 999px;
  color: #07120c;
  background: var(--green);
  font-size: 12px;
  font-weight: 900;
  line-height: 1;
}

.home-article-card h3 {
  margin: 0;
  font-size: clamp(22px, 2.6vw, 38px);
  line-height: 1.05;
}

.home-article-card-small h3 {
  font-size: 22px;
  line-height: 1.12;
}

.home-article-card p {
  max-width: 650px;
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 17px;
}

.home-article-list {
  display: grid;
  grid-column: 1 / -1;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--line);
}

.home-article-list a {
  display: grid;
  grid-template-columns: 96px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  min-height: 112px;
  padding: 12px;
  background: #fff;
}

.home-article-list a:hover,
.home-article-list a:focus-visible {
  background: #f7f8f4;
}

.home-article-list img {
  width: 96px;
  height: 76px;
  border-radius: 6px;
  background: #111;
  object-fit: cover;
}

.home-article-list span {
  display: grid;
  gap: 6px;
}

.home-article-list small {
  color: var(--green-dark);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.home-article-list strong {
  font-size: 17px;
  line-height: 1.16;
}

.article-list-grid {
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 1.15fr) minmax(260px, 0.86fr);
  gap: 14px;
  align-items: stretch;
}

.article-list-card-lead,
.article-list-card-side {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  border: 0;
  color: #fff;
  background: #111;
  isolation: isolate;
}

.article-list-card-lead {
  min-height: 520px;
  grid-column: span 2;
  grid-row: span 2;
}

.article-list-card-side {
  min-height: 253px;
}

.article-list-card-lead .article-list-thumb,
.article-list-card-side .article-list-thumb {
  position: absolute;
  inset: 0;
  z-index: -2;
  aspect-ratio: auto;
}

.article-list-card-lead::after,
.article-list-card-side::after {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.02), rgba(0, 0, 0, 0.84)),
    linear-gradient(90deg, rgba(0, 0, 0, 0.34), rgba(0, 0, 0, 0.02));
}

.article-list-card-lead .article-list-meta,
.article-list-card-lead h2,
.article-list-card-lead p,
.article-list-card-lead .article-list-read,
.article-list-card-side .article-list-meta,
.article-list-card-side h2,
.article-list-card-side p,
.article-list-card-side .article-list-read {
  position: relative;
  z-index: 1;
  margin-right: 26px;
  margin-left: 26px;
}

.article-list-card-lead .article-list-meta,
.article-list-card-side .article-list-meta {
  margin-top: auto;
}

.article-list-card-lead .article-list-meta span,
.article-list-card-side .article-list-meta span {
  color: #fff;
  background: rgba(255, 255, 255, 0.18);
}

.article-list-card-lead .article-list-meta span:first-child,
.article-list-card-side .article-list-meta span:first-child {
  color: #07120c;
  background: var(--green);
}

.article-list-card-lead h2 {
  max-width: 760px;
  margin-top: 16px;
  font-size: clamp(34px, 4vw, 56px);
  line-height: 0.98;
}

.article-list-card-side h2 {
  margin-top: 12px;
  font-size: 22px;
  line-height: 1.12;
}

.article-list-card-lead p {
  max-width: 700px;
  margin-top: 16px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 18px;
}

.article-list-card-side p,
.article-list-card-side .article-list-read {
  display: none;
}

.article-list-read {
  display: inline-flex;
  width: fit-content;
  margin-top: 18px;
  margin-bottom: 28px;
  color: var(--green);
  font-size: 14px;
  font-weight: 900;
}

.article-list-card:not(.article-list-card-lead):not(.article-list-card-side) .article-list-read {
  display: none;
}

@media (max-width: 920px) {
  .home-article-grid,
  .home-article-list,
  .article-list-grid,
  .latest-layout,
  .latest-row {
    grid-template-columns: 1fr;
  }

  .editorial-articles .section-heading {
    width: 100%;
  }

  .latest-row {
    min-height: 0;
  }

  .latest-copy {
    padding: 28px;
  }

  .latest-media {
    min-height: 240px;
    order: -1;
  }

  .trending-panel {
    position: static;
  }

  .home-article-card-lead,
  .article-list-card-lead {
    grid-column: auto;
    grid-row: auto;
  }

  .home-article-card-lead {
    min-height: 390px;
  }

  .article-list-card-lead {
    min-height: 430px;
  }

  .article-list-card-side {
    min-height: 280px;
  }
}

@media (max-width: 560px) {
  .section-action {
    min-height: 34px;
  }

  .editorial-articles .section-heading {
    align-items: flex-start;
    gap: 12px;
    padding: 18px;
  }

  .editorial-articles .section-action {
    margin-left: 0;
  }

  .latest-copy {
    padding: 22px;
  }

  .latest-copy strong {
    font-size: 28px;
  }

  .latest-copy span {
    font-size: 15px;
  }

  .latest-media {
    min-height: 210px;
  }

  .home-article-card {
    padding: 18px;
  }

  .home-article-card-lead {
    min-height: 330px;
  }

  .home-article-card-small {
    min-height: 230px;
  }

  .home-article-list a {
    grid-template-columns: 82px minmax(0, 1fr);
  }

  .home-article-list img {
    width: 82px;
    height: 66px;
  }

  .article-filter-chips {
    display: grid;
    grid-template-columns: 1fr;
    width: 100%;
    gap: 8px;
  }

  .article-filter-chip {
    width: 100%;
    min-width: 0;
    max-width: 100%;
    padding: 0 8px;
    justify-content: center;
    font-size: 13px;
  }

  .article-index-shell {
    width: calc(100vw - 32px);
    max-width: calc(100vw - 32px);
    overflow: hidden;
  }

  .article-index-toolbar {
    min-width: 0;
  }

  .article-list-card {
    padding: 0;
  }

  .article-list-card-lead {
    min-height: 380px;
  }

  .article-list-card-side {
    min-height: 250px;
  }

  .article-list-card-lead .article-list-meta,
  .article-list-card-lead h2,
  .article-list-card-lead p,
  .article-list-card-lead .article-list-read,
  .article-list-card-side .article-list-meta,
  .article-list-card-side h2 {
    margin-right: 18px;
    margin-left: 18px;
  }

  .article-list-card-lead h2 {
    font-size: 34px;
  }
}

/* Light generated backgrounds for the main hero, workflow, and contact panels. */
.hero,
.article-index-hero,
.works-hero {
  color: var(--ink);
  background: #eef2ec;
}

.hero-bg,
.article-index-hero img,
.works-hero img {
  object-position: center;
  filter: saturate(1.02) contrast(1);
}

.hero-overlay,
.article-index-hero .article-hero-overlay,
.works-hero .article-hero-overlay {
  background:
    linear-gradient(90deg, rgba(247, 248, 244, 0.94), rgba(247, 248, 244, 0.74) 45%, rgba(247, 248, 244, 0.1)),
    linear-gradient(180deg, rgba(247, 248, 244, 0.02), rgba(247, 248, 244, 0.38));
}

.hero-copy,
.article-index-hero p:not(.eyebrow),
.works-hero p:not(.eyebrow) {
  color: rgba(9, 9, 9, 0.72);
}

.hero .button-secondary {
  color: var(--ink);
  border-color: rgba(9, 9, 9, 0.18);
  background: rgba(255, 255, 255, 0.66);
}

.hero .button-secondary:hover,
.hero .button-secondary:focus-visible {
  border-color: rgba(9, 9, 9, 0.34);
  background: #fff;
}

.hero-meta span {
  color: #1e2a1d;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 1px 0 rgba(9, 9, 9, 0.08);
}

.process-section {
  position: relative;
  overflow: hidden;
  color: var(--ink);
  background:
    linear-gradient(90deg, rgba(247, 248, 244, 0.92), rgba(247, 248, 244, 0.7)),
    url("./assets/workflow-light-bg.png") center / cover no-repeat;
}

.process-section .section-heading {
  border-bottom-color: rgba(9, 9, 9, 0.1);
}

.process-grid {
  border-color: rgba(9, 9, 9, 0.08);
  background: rgba(9, 9, 9, 0.08);
  backdrop-filter: blur(10px);
}

.process-grid article {
  background: rgba(255, 255, 255, 0.78);
}

.process-grid h3 {
  color: var(--ink);
}

.process-grid p {
  color: var(--muted);
}

.contact-section {
  color: var(--ink);
  background:
    linear-gradient(90deg, rgba(247, 248, 244, 0.94), rgba(247, 248, 244, 0.74) 52%, rgba(247, 248, 244, 0.18)),
    url("./assets/contact-light-bg.png") center / cover no-repeat;
}

.contact-section .eyebrow {
  color: var(--green-dark);
}

.contact-section .button-secondary {
  color: var(--ink);
  border-color: rgba(9, 9, 9, 0.18);
  background: rgba(255, 255, 255, 0.68);
}

.contact-section .button-secondary:hover,
.contact-section .button-secondary:focus-visible {
  border-color: rgba(9, 9, 9, 0.34);
  background: #fff;
}

@media (max-width: 920px) {
  .hero-overlay,
  .article-index-hero .article-hero-overlay,
  .works-hero .article-hero-overlay {
    background:
      linear-gradient(90deg, rgba(247, 248, 244, 0.9), rgba(247, 248, 244, 0.62)),
      linear-gradient(180deg, rgba(247, 248, 244, 0.18), rgba(247, 248, 244, 0.62));
  }

  .contact-section {
    background:
      linear-gradient(180deg, rgba(247, 248, 244, 0.96), rgba(247, 248, 244, 0.76)),
      url("./assets/contact-light-bg.png") center / cover no-repeat;
  }
}
