
@import url("https://fonts.googleapis.com/css2?family=Onest:wght@400;500;600;700;800;900&family=Unbounded:wght@500;600;700;800&display=swap");

:root {
  color-scheme: light;
  --paper: oklch(98% 0.006 108);
  --paper-2: oklch(95% 0.014 108);
  --ink: oklch(15% 0.015 260);
  --ink-soft: oklch(34% 0.024 260);
  --muted: oklch(55% 0.02 260);
  --line: oklch(86% 0.016 108);
  --lime: oklch(85% 0.26 139);
  --pink: oklch(70% 0.28 351);
  --cyan: oklch(78% 0.22 205);
  --violet: oklch(66% 0.24 292);
  --orange: oklch(78% 0.21 55);
  --radius: 14px;
  --max: 1520px;
  --side: clamp(16px, 3vw, 44px);
  --display: "Unbounded", "Arial Black", system-ui, sans-serif;
  --text: "Onest", "Aptos", "Segoe UI", system-ui, sans-serif;
  font-family: var(--text);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  color: var(--ink);
  background:
    linear-gradient(90deg, oklch(15% 0.015 260 / 5%) 1px, transparent 1px),
    linear-gradient(oklch(15% 0.015 260 / 5%) 1px, transparent 1px),
    var(--paper);
  background-size: 34px 34px;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -3;
  pointer-events: none;
  background:
    linear-gradient(135deg, oklch(85% 0.26 139 / 18%), transparent 28%),
    linear-gradient(315deg, oklch(70% 0.28 351 / 16%), transparent 32%);
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

button,
input,
textarea,
select {
  font: inherit;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: 3px solid var(--pink);
  outline-offset: 3px;
}

.cursor-beam {
  position: fixed;
  inset: 0;
  z-index: 50;
  pointer-events: none;
  opacity: 0;
}

@media (pointer: fine) {
  .cursor-beam {
    opacity: 1;
    background:
      linear-gradient(90deg, transparent calc(var(--mx, 50%) - 1px), oklch(70% 0.28 351 / 36%) var(--mx, 50%), transparent calc(var(--mx, 50%) + 1px)),
      linear-gradient(0deg, transparent calc(var(--my, 50%) - 1px), oklch(78% 0.22 205 / 24%) var(--my, 50%), transparent calc(var(--my, 50%) + 1px));
    mix-blend-mode: multiply;
  }
}

.page-transition {
  position: fixed;
  inset: 0;
  z-index: 80;
  pointer-events: none;
  transform: translateY(100%);
  background: var(--lime);
}

html.is-leaving .page-transition {
  animation: page-out 320ms cubic-bezier(.2, .8, .2, 1) forwards;
}

.page-shell {
  animation: page-in 520ms cubic-bezier(.2, .8, .2, 1) both;
}

@keyframes page-in {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes page-out {
  from { transform: translateY(100%); }
  to { transform: translateY(0); }
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 22px;
  align-items: center;
  min-height: 72px;
  padding: 12px var(--side);
  border-bottom: 1px solid var(--line);
  background: oklch(98% 0.006 108 / 82%);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  gap: 12px;
  align-items: center;
  font-weight: 900;
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid var(--ink);
  border-radius: 12px;
  background: var(--lime);
  font-family: var(--display);
  font-size: .78rem;
}

.brand-text {
  font-family: var(--display);
  font-size: .88rem;
}

.site-nav {
  display: flex;
  justify-content: center;
  gap: 8px;
}

.site-nav a,
.header-cta,
.button,
.filter-button,
.tag-row span,
.back-link,
.text-link {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.site-nav a,
.filter-button,
.tag-row span {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0 15px;
  background: oklch(98% 0.006 108 / 72%);
}

.site-nav a.is-active,
.site-nav a:hover,
.filter-button.is-active {
  border-color: var(--ink);
  background: var(--ink);
  color: var(--paper);
}

.header-cta,
.button {
  border: 1px solid var(--ink);
  border-radius: 999px;
  padding: 0 20px;
  font-weight: 800;
}

.button-primary,
.header-cta {
  background: var(--ink);
  color: var(--paper);
  box-shadow: 6px 6px 0 var(--lime);
}

.button-ghost {
  background: var(--paper);
}

.button:active,
.header-cta:active,
.filter-button:active {
  transform: translateY(1px);
}

.white-hero,
.subhero,
.proof-grid,
.split-section,
.portfolio-preview,
.catalog-preview,
.direction-board,
.motion-band,
.blog-preview,
.brief-section,
.portfolio-tools,
.portfolio-grid,
.archive-cta,
.case-hero,
.case-story,
.case-gallery,
.case-related,
.article-grid,
.catalog-grid,
.article-page {
  max-width: var(--max);
  margin: 0 auto;
  padding-right: var(--side);
  padding-left: var(--side);
}

.white-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, .82fr);
  gap: 42px;
  align-items: center;
  min-height: 76svh;
  padding-top: 44px;
  padding-bottom: 58px;
}

.kicker {
  margin: 0 0 18px;
  font-size: .88rem;
  font-weight: 900;
  text-transform: uppercase;
  color: oklch(37% 0.22 351);
}

h1,
h2,
h3 {
  margin: 0;
  font-family: var(--display);
  font-weight: 800;
  letter-spacing: 0;
  text-wrap: balance;
}

h1 {
  max-width: 1040px;
  font-size: 6.6rem;
  line-height: .92;
  overflow-wrap: anywhere;
}

h2 {
  font-size: 4.5rem;
  line-height: .96;
  overflow-wrap: anywhere;
}

h3 {
  font-size: 1.55rem;
  line-height: 1.05;
}

p {
  margin: 0;
}

.hero-lead,
.subhero > p,
.section-title p,
.brief-section > div > p,
.archive-cta p,
.case-hero-copy > p,
.rich-text p,
.article-page header p,
.article-body p,
.article-next p {
  max-width: 68ch;
  color: var(--ink-soft);
  font-size: 1.12rem;
  line-height: 1.55;
}

.hero-lead {
  margin-top: 24px;
  font-size: 1.34rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.hero-gallery {
  position: relative;
  min-height: 590px;
  isolation: isolate;
  overflow: hidden;
}

.hero-photo {
  position: absolute;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--ink);
  border-radius: var(--radius);
  background: var(--paper-2);
  box-shadow: 10px 10px 0 oklch(15% 0.015 260 / 10%);
}

.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.photo-1 {
  right: 0;
  bottom: 0;
  width: 68%;
  height: 66%;
  transform: rotate(1.5deg);
}

.photo-2 {
  top: 0;
  left: 4%;
  width: 48%;
  height: 38%;
  transform: rotate(-3deg);
}

.photo-3 {
  top: 12%;
  right: 8%;
  width: 38%;
  height: 28%;
  border-color: var(--pink);
  box-shadow: 8px 8px 0 var(--pink);
}

.photo-4 {
  bottom: 8%;
  left: 0;
  width: 34%;
  height: 32%;
  border-color: var(--cyan);
  box-shadow: 8px 8px 0 var(--cyan);
}

.photo-5 {
  top: 44%;
  left: 18%;
  width: 34%;
  height: 24%;
  border-color: var(--lime);
  box-shadow: 8px 8px 0 var(--lime);
}

.ticker {
  display: flex;
  max-width: none;
  overflow: hidden;
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
  background: var(--lime);
}

.ticker div {
  flex: 0 0 auto;
  padding: 18px 44px;
  font-family: var(--display);
  font-size: 1.15rem;
  animation: ticker 18s linear infinite;
}

@keyframes ticker {
  to { transform: translateX(-100%); }
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-bottom: 1px solid var(--line);
}

.proof-grid article {
  min-height: 190px;
  padding: 32px 22px;
  border-left: 1px solid var(--line);
}

.proof-grid article:first-child {
  border-left: 0;
}

.proof-grid strong {
  display: block;
  font-family: var(--display);
  font-size: 4.4rem;
  line-height: .9;
}

.proof-grid span {
  display: block;
  margin-top: 12px;
  color: var(--muted);
}

.split-section,
.brief-section,
.case-story {
  display: grid;
  grid-template-columns: minmax(0, .78fr) minmax(440px, 1.22fr);
  gap: clamp(44px, 6vw, 92px);
  padding-top: 120px;
  padding-bottom: 120px;
}

.sticky-copy {
  position: sticky;
  top: 110px;
  align-self: start;
}

.capabilities-section {
  grid-template-columns: minmax(520px, 1fr) minmax(520px, .96fr);
  align-items: start;
}

.capability-copy {
  max-width: 760px;
}

.capability-copy > h2:not(.capability-title) {
  display: none;
}

.capability-title {
  display: grid;
  gap: 12px;
  max-width: 760px;
  font-size: clamp(3.25rem, 4.8vw, 5.5rem);
  line-height: .9;
  letter-spacing: 0;
}

.capability-title span {
  display: block;
  text-wrap: balance;
}

.capability-title span:first-child {
  max-width: 14ch;
}

.capability-title span:last-child {
  max-width: 15ch;
}

.capability-lead {
  max-width: 58ch;
  margin-top: 28px;
  color: var(--ink-soft);
  font-size: 1.15rem;
  line-height: 1.52;
}

.capability-pulse {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.capability-pulse span {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 12px 8px 28px;
  background: oklch(99.6% 0.002 108 / 78%);
  color: var(--ink);
  font-size: .82rem;
  font-weight: 900;
}

.capability-pulse span::before {
  content: "";
  position: absolute;
  left: 12px;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--lime);
  box-shadow: 0 0 0 0 oklch(85% 0.26 139 / 46%);
  animation: capability-dot 2.8s cubic-bezier(.19, 1, .22, 1) infinite;
}

.capability-pulse span:nth-child(2)::before {
  background: var(--cyan);
  animation-delay: .32s;
}

.capability-pulse span:nth-child(3)::before {
  background: var(--pink);
  animation-delay: .64s;
}

@keyframes capability-dot {
  0%, 72%, 100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 oklch(85% 0.26 139 / 0%);
  }
  28% {
    transform: scale(1.35);
    box-shadow: 0 0 0 8px oklch(85% 0.26 139 / 18%);
  }
}

.capability-stack {
  display: grid;
  gap: 14px;
}

.capability-stack article {
  position: relative;
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr);
  gap: 22px;
  align-items: center;
  overflow: hidden;
  border: 1px solid var(--ink);
  border-radius: var(--radius);
  padding: 24px;
  background: var(--paper);
  transition: transform 260ms cubic-bezier(.19, 1, .22, 1), box-shadow 260ms cubic-bezier(.19, 1, .22, 1), background 260ms cubic-bezier(.19, 1, .22, 1);
}

.capability-stack article:hover {
  transform: translateX(-6px);
  box-shadow: 8px 8px 0 oklch(85% 0.26 139 / 58%);
}

.capability-stack article::after {
  content: "";
  position: absolute;
  inset: auto 18px 18px auto;
  width: 48px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  opacity: .16;
  transform: scaleX(.35);
  transform-origin: right;
  transition: transform 320ms cubic-bezier(.19, 1, .22, 1), opacity 320ms cubic-bezier(.19, 1, .22, 1);
}

.capability-stack article:hover::after {
  opacity: .4;
  transform: scaleX(1);
}

.capability-stack article:nth-child(2) {
  background: oklch(78% 0.22 205 / 26%);
}

.capability-stack article:nth-child(3) {
  background: oklch(70% 0.28 351 / 18%);
}

.capability-stack article:nth-child(4) {
  background: oklch(85% 0.26 139 / 24%);
}

.capability-stack span {
  grid-row: 1 / span 2;
  display: block;
  margin-bottom: 0;
  font-family: var(--display);
  color: var(--muted);
  font-size: 1.08rem;
}

.capability-stack h3,
.capability-stack article p {
  grid-column: 2;
}

.capability-stack h3 {
  font-size: clamp(1.45rem, 2.1vw, 2rem);
  line-height: 1;
}

.capability-stack article p {
  max-width: 68ch;
}

.capability-stack p,
.portfolio-card p,
.article-card p {
  margin-top: 14px;
  color: var(--ink-soft);
  line-height: 1.45;
}

.portfolio-preview,
.catalog-preview,
.direction-board,
.blog-preview,
.case-related {
  padding-top: 110px;
  padding-bottom: 110px;
}

.section-title {
  display: grid;
  gap: 20px;
  max-width: 920px;
  margin-bottom: 38px;
}

.text-link {
  justify-content: start;
  color: oklch(37% 0.22 351);
  font-weight: 900;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 16px;
}

.portfolio-card {
  grid-column: span 4;
  min-height: 430px;
}

.portfolio-card.is-featured {
  grid-column: span 6;
}

.portfolio-card a {
  display: grid;
  height: 100%;
  border: 1px solid var(--ink);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--paper);
  transition: transform 260ms cubic-bezier(.2, .8, .2, 1), box-shadow 260ms cubic-bezier(.2, .8, .2, 1);
}

.portfolio-card a:hover {
  transform: translateY(-6px) rotate(.3deg);
  box-shadow: 10px 10px 0 var(--cyan);
}

.portfolio-card figure {
  margin: 0;
  min-height: 280px;
  overflow: hidden;
  background: var(--paper-2);
}

.portfolio-card img {
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
  transition: transform 600ms cubic-bezier(.2, .8, .2, 1);
}

.portfolio-card a:hover img {
  transform: scale(1.045);
}

.card-copy {
  padding: 22px;
}

.card-copy span,
.article-card span {
  display: inline-flex;
  margin-bottom: 14px;
  font-size: .9rem;
  font-weight: 900;
  color: oklch(37% 0.22 351);
}

.motion-band {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, .8fr);
  gap: 34px;
  align-items: center;
  padding-top: 84px;
  padding-bottom: 84px;
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
  background: var(--ink);
  color: var(--paper);
}

.motion-band div {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.motion-band span {
  border-radius: 999px;
  padding: 12px 18px;
  font-family: var(--display);
  background: var(--lime);
  color: var(--ink);
}

.motion-band span:nth-child(2) {
  background: var(--pink);
  color: var(--paper);
}

.motion-band span:nth-child(3) {
  background: var(--cyan);
}

.motion-band span:nth-child(4) {
  background: var(--orange);
}

.motion-band p {
  color: oklch(92% 0.02 108);
  font-size: 1.5rem;
  line-height: 1.3;
}

.direction-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
}

.direction-grid a {
  display: grid;
  min-height: 230px;
  align-content: space-between;
  border: 1px solid var(--ink);
  border-radius: var(--radius);
  padding: 22px;
  background: var(--paper);
  transition: transform 260ms cubic-bezier(.2, .8, .2, 1), box-shadow 260ms cubic-bezier(.2, .8, .2, 1);
}

.direction-grid a:hover {
  transform: translateY(-5px);
  box-shadow: 8px 8px 0 var(--pink);
}

.direction-grid a:nth-child(2) {
  background: oklch(78% 0.22 205 / 25%);
}

.direction-grid a:nth-child(3) {
  background: oklch(85% 0.26 139 / 24%);
}

.direction-grid a:nth-child(4) {
  background: oklch(70% 0.28 351 / 17%);
}

.direction-grid a:nth-child(5) {
  background: oklch(78% 0.21 55 / 28%);
}

.direction-grid span {
  color: var(--muted);
  font-weight: 900;
}

.direction-grid strong {
  font-family: var(--display);
  font-size: 1.35rem;
  line-height: 1.05;
}

.catalog-category-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 28px;
}

.catalog-category-row a {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  gap: 10px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  padding: 0 16px;
  background: var(--paper);
  font-weight: 800;
}

.catalog-category-row span {
  display: inline-grid;
  min-width: 28px;
  height: 28px;
  place-items: center;
  border-radius: 999px;
  background: var(--lime);
  font-size: .82rem;
}

.product-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.legacy-catalog-preview {
  display: none;
}

.home-catalog-title p:not(.kicker) {
  max-width: 72ch;
  color: var(--ink-soft);
  font-size: 1.08rem;
  line-height: 1.55;
}

.home-catalog-title h2 {
  max-width: 920px;
  font-size: clamp(3.2rem, 5.6vw, 5.65rem);
  line-height: .94;
}

.home-catalog-panels {
  display: grid;
  gap: 38px;
}

.home-catalog-panel {
  display: grid;
  gap: 18px;
  border-top: 1px solid var(--line);
  padding-top: 30px;
}

.home-catalog-panel header {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: end;
}

.home-catalog-panel header h3 {
  max-width: 760px;
  font-size: clamp(2.1rem, 4vw, 4.4rem);
  line-height: .94;
}

.home-catalog-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.home-catalog-filters .color-swatch {
  width: 36px;
  min-width: 36px;
  height: 36px;
  min-height: 36px;
}

.home-catalog-status {
  color: var(--muted);
  font-size: .94rem;
  font-weight: 800;
}

.home-product-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
}

.home-catalog-more {
  justify-self: center;
  min-width: min(280px, 100%);
}

.product-card {
  display: grid;
  border: 1px solid oklch(15% 0.015 260 / 12%);
  border-radius: 16px;
  overflow: hidden;
  background: oklch(99.7% 0.001 108);
  box-shadow: 0 16px 42px oklch(15% 0.015 260 / 6%);
  transition: transform .28s var(--ease), border-color .28s var(--ease), box-shadow .28s var(--ease);
}

.catalog-grid .product-card,
.home-product-grid .product-card {
  cursor: pointer;
}

.product-card:hover,
.product-card:focus-visible {
  transform: translateY(-4px);
  border-color: oklch(37% 0.22 351 / 48%);
  box-shadow: 0 26px 70px oklch(15% 0.015 260 / 11%);
  outline: none;
}

.product-card figure {
  position: relative;
  display: grid;
  min-height: 228px;
  margin: 0;
  place-items: center;
  overflow: hidden;
  background: oklch(99.7% 0.001 108);
}

.product-card figure::after {
  content: "";
  position: absolute;
  inset: 18px;
  z-index: 0;
  border-radius: 12px;
  background: oklch(100% 0 0);
  box-shadow: inset 0 0 0 1px oklch(15% 0.015 260 / 4%);
}

.product-card figure > * {
  position: relative;
  z-index: 1;
}

.product-card img {
  width: 100%;
  height: 248px;
  object-fit: contain;
  padding: 18px;
  transition: transform .34s var(--ease);
}

.product-card:hover img {
  transform: scale(1.035);
}

.product-card > div:not(.product-no-image) {
  display: grid;
  grid-template-rows: auto minmax(3.15em, auto) 4.25em auto auto;
  gap: 11px;
  padding: 18px;
  background: oklch(99.7% 0.001 108);
}

.product-card span {
  color: oklch(37% 0.22 351);
  font-size: .78rem;
  font-weight: 900;
  line-height: 1.1;
}

.product-card h3 {
  min-height: 3.15em;
  max-height: 3.15em;
  display: -webkit-box;
  overflow: hidden;
  overflow-wrap: anywhere;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.product-card p {
  min-height: 4.25em;
  max-height: 4.25em;
  overflow: hidden;
  color: var(--ink-soft);
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  line-height: 1.4;
}

.product-card em {
  justify-self: start;
  border-radius: 999px;
  padding: 5px 9px;
  background: oklch(85% 0.26 139 / 18%);
  color: var(--ink);
  font-size: .78rem;
  font-style: normal;
  font-weight: 900;
}

.product-price {
  display: grid;
  gap: 3px;
  margin-top: 8px;
}

.product-price strong {
  font-family: var(--display);
  font-size: 1.08rem;
}

.product-price span {
  color: var(--muted);
  font-size: .82rem;
  font-weight: 900;
  line-height: 1.1;
}

.product-no-image {
  display: grid;
  width: 100%;
  min-height: 240px;
  place-items: center;
  color: var(--muted);
  font-weight: 900;
  background:
    linear-gradient(135deg, oklch(85% 0.26 139 / 28%), transparent),
    var(--paper-2);
}

.catalog-tools {
  display: grid;
  gap: 18px;
  justify-items: center;
  text-align: center;
  padding-top: 0;
  padding-bottom: 28px;
}

.catalog-tools label {
  display: grid;
  gap: 10px;
  width: min(760px, 100%);
  text-align: left;
  font-weight: 800;
}

.catalog-tools input {
  width: 100%;
  border: 1px solid oklch(15% 0.015 260 / 18%);
  border-radius: 12px;
  padding: 14px 15px;
  background: oklch(99% 0.003 108);
  color: var(--ink);
}

.catalog-filter-block {
  display: grid;
  gap: 10px;
  justify-items: center;
  width: 100%;
}

.catalog-filter-block > span {
  color: var(--muted);
  font-weight: 900;
}

.catalog-filter {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0 15px;
  background: oklch(98% 0.006 108 / 72%);
  cursor: pointer;
}

.catalog-filters {
  justify-content: center;
}

.catalog-filter.is-active,
.catalog-filter:hover {
  border-color: var(--ink);
  background: var(--ink);
  color: var(--paper);
}

.catalog-color-filters {
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.catalog-tools-cta {
  display: grid;
  width: 100%;
  justify-items: center;
  padding: 2px 0 4px;
}

.catalog-tools-cta .button {
  min-width: min(320px, 100%);
}

.color-swatch {
  position: relative;
  width: 38px;
  min-width: 38px;
  height: 38px;
  min-height: 38px;
  border: 1px solid oklch(15% 0.015 260 / 18%);
  border-radius: 999px;
  padding: 0;
  background: oklch(99.7% 0.001 108);
  box-shadow: 0 8px 22px oklch(15% 0.015 260 / 8%);
}

.color-swatch::before {
  content: "";
  position: absolute;
  inset: 6px;
  border-radius: inherit;
  background: var(--swatch);
  box-shadow: inset 0 0 0 1px oklch(15% 0.015 260 / 10%);
}

.color-swatch.is-all::before {
  inset: 7px;
}

.color-swatch:hover,
.color-swatch.is-active {
  border-color: var(--ink);
  background: oklch(99.7% 0.001 108);
  color: transparent;
  box-shadow: 0 0 0 4px oklch(85% 0.26 139 / 38%), 0 14px 28px oklch(15% 0.015 260 / 12%);
}

.color-swatch.is-active::after {
  content: "";
  position: absolute;
  inset: -5px;
  border: 2px solid var(--ink);
  border-radius: inherit;
  pointer-events: none;
}

.color-groups {
  position: sticky;
  top: 96px;
  display: grid;
  align-content: start;
  gap: 12px;
  min-width: 0;
  align-self: start;
  border: 1px solid oklch(15% 0.015 260 / 10%);
  border-radius: 14px;
  padding: 14px;
  background: oklch(99.7% 0.001 108 / 86%);
}

.color-groups[hidden] {
  display: none;
}

.color-groups > span {
  color: var(--muted);
  font-size: .86rem;
  font-weight: 900;
  line-height: 1.25;
}

.color-group-row {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.color-group-button {
  display: flex;
  width: 100%;
  min-height: 38px;
  align-items: center;
  justify-content: space-between;
  text-align: left;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 9px 11px;
  background: oklch(99.7% 0.001 108);
  color: var(--ink);
  cursor: pointer;
  font-weight: 800;
  line-height: 1.2;
}

.color-group-button span {
  min-width: 0;
}

.color-group-button strong {
  flex: 0 0 auto;
  color: var(--muted);
  font-size: .82rem;
}

.color-group-button:hover,
.color-group-button.is-active {
  border-color: var(--ink);
  background: var(--ink);
  color: var(--paper);
}

.color-group-button:hover strong,
.color-group-button.is-active strong {
  color: var(--paper);
}

.catalog-status {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  color: var(--muted);
  text-align: center;
}

.catalog-seo-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  max-width: 980px;
}

.catalog-seo-links a {
  min-height: 34px;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 12px;
  background: oklch(99.7% 0.001 108 / 76%);
  color: var(--ink-soft);
  font-size: .84rem;
  font-weight: 800;
}

.catalog-seo-links a:hover {
  border-color: var(--ink);
  color: var(--ink);
}

.catalog-category-intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 22px;
  align-items: center;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--side) 36px;
}

.catalog-category-intro p {
  max-width: 76ch;
  color: var(--ink-soft);
  line-height: 1.55;
}

.catalog-grid-static {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--side) 90px;
}

.catalog-category-block {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--side) 82px;
}

.catalog-category-block .catalog-grid-static {
  max-width: none;
  padding: 0;
}

.category-section-heading {
  display: grid;
  gap: 10px;
  max-width: 780px;
  margin: 0 0 24px;
}

.category-section-heading h2,
.category-cross-links h2,
.category-seo h2 {
  margin: 0;
  font-size: clamp(2.05rem, 4vw, 4.25rem);
  line-height: .95;
  letter-spacing: 0;
}

.category-section-heading p:last-child,
.category-cross-links p,
.category-seo-article p,
.category-faq p {
  color: var(--ink-soft);
  line-height: 1.58;
}

.category-related-products {
  padding-top: 8px;
}

.category-cross-links {
  display: grid;
  grid-template-columns: minmax(220px, 360px) minmax(0, 1fr);
  gap: 28px;
  align-items: start;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--side) 86px;
}

.category-cross-links .catalog-seo-links {
  justify-content: flex-start;
  max-width: none;
}

.category-seo {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(320px, .75fr);
  gap: 42px;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--side) 110px;
}

.category-seo-article {
  max-width: 76ch;
}

.category-seo-article p {
  margin: 18px 0 0;
  font-size: 1.03rem;
}

.category-faq {
  align-self: start;
  display: grid;
  gap: 12px;
}

.category-faq details {
  border: 1px solid var(--line);
  border-radius: 14px;
  background: oklch(99.6% 0.002 108);
  box-shadow: 0 14px 32px oklch(15% 0.015 260 / 5%);
}

.category-faq summary {
  cursor: pointer;
  padding: 16px 18px;
  color: var(--ink);
  font-weight: 850;
  line-height: 1.2;
}

.category-faq details p {
  margin: 0;
  padding: 0 18px 18px;
}

.catalog-results-shell {
  display: grid;
  grid-template-columns: minmax(190px, 250px) minmax(0, 1fr);
  gap: 22px;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--side) 40px;
}

.catalog-results-main {
  min-width: 0;
}

.color-groups[hidden] + .catalog-results-main {
  grid-column: 1 / -1;
}

.catalog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(245px, 1fr));
  gap: 18px;
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0 0 40px;
}

.catalog-more {
  display: grid;
  padding: 0 0 60px;
  place-items: center;
}

.product-detail {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: grid;
  place-items: end;
  pointer-events: none;
  opacity: 0;
  transition: opacity .28s var(--ease);
}

.product-detail.is-open {
  pointer-events: auto;
  opacity: 1;
}

.detail-open {
  overflow: hidden;
}

.product-detail__shade {
  position: absolute;
  inset: 0;
  background: oklch(15% 0.015 260 / 42%);
}

.product-detail__panel {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(320px, .9fr) minmax(360px, 1fr);
  width: min(1120px, calc(100vw - 32px));
  max-height: calc(100dvh - 32px);
  margin: 16px;
  overflow-x: hidden;
  overflow-y: auto;
  border: 1px solid oklch(15% 0.015 260 / 12%);
  border-radius: 18px;
  background: oklch(99% 0.003 108);
  box-shadow: 0 40px 110px oklch(15% 0.015 260 / 28%);
  transform: translateY(24px);
  transition: transform .34s var(--ease);
}

.product-detail.is-open .product-detail__panel {
  transform: translateY(0);
}

.product-detail__close {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 2;
  width: 42px;
  height: 42px;
  border: 1px solid oklch(15% 0.015 260 / 16%);
  border-radius: 999px;
  background: oklch(99% 0.003 108);
  color: var(--ink);
  cursor: pointer;
}

.product-detail__media {
  display: grid;
  gap: 14px;
  align-content: start;
  padding: 28px;
  background:
    linear-gradient(140deg, oklch(85% 0.26 139 / 10%), transparent 44%),
    oklch(97% 0.006 108);
}

.product-detail__media figure {
  display: grid;
  min-height: 420px;
  margin: 0;
  place-items: center;
  border-radius: 14px;
  background: oklch(99% 0.003 108);
}

.product-detail__media img {
  width: 100%;
  max-height: 430px;
  object-fit: contain;
  padding: 22px;
}

.product-detail__thumbs {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(68px, 1fr));
  gap: 8px;
}

.product-detail__thumbs button {
  display: grid;
  height: 72px;
  place-items: center;
  border: 1px solid oklch(15% 0.015 260 / 12%);
  border-radius: 10px;
  background: oklch(99% 0.003 108);
  cursor: pointer;
}

.product-detail__thumbs button.is-active {
  border-color: oklch(37% 0.22 351);
  box-shadow: inset 0 0 0 1px oklch(37% 0.22 351);
}

.product-detail__thumbs img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 6px;
}

.product-detail__content {
  display: grid;
  gap: 18px;
  align-content: start;
  padding: 42px 34px 34px;
}

.product-detail__content > span {
  color: oklch(37% 0.22 351);
  font-weight: 900;
}

.product-detail__content h2 {
  max-width: 11ch;
  overflow-wrap: break-word;
  font-size: clamp(2.15rem, 3.2vw, 4rem);
  line-height: .98;
}

.product-detail__content p {
  max-width: 64ch;
  color: var(--ink-soft);
  font-size: 1.02rem;
  line-height: 1.55;
}

.product-detail__price {
  display: grid;
  gap: 4px;
}

.product-detail__price strong {
  font-family: var(--display);
  font-size: clamp(1.6rem, 2.6vw, 3rem);
}

.product-detail__price span {
  color: var(--muted);
  font-size: 1rem;
  font-weight: 900;
}

.product-detail__facts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.product-detail__facts div {
  display: grid;
  gap: 4px;
  min-height: 76px;
  border: 1px solid oklch(15% 0.015 260 / 10%);
  border-radius: 12px;
  padding: 12px;
  background: oklch(98% 0.006 108);
}

.product-detail__facts span {
  color: var(--muted);
  font-size: .75rem;
  font-weight: 900;
}

.product-detail__facts strong {
  font-size: .96rem;
  line-height: 1.25;
}

.product-detail__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.product-detail__actions .text-link {
  min-height: 42px;
}

.contact-choice {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: grid;
  place-items: center;
  pointer-events: none;
  opacity: 0;
  transition: opacity .28s var(--ease);
}

.contact-choice.is-open {
  pointer-events: auto;
  opacity: 1;
}

.contact-open {
  overflow: hidden;
}

.contact-choice__shade {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 78% 18%, oklch(85% 0.26 139 / 24%), transparent 32%),
    radial-gradient(circle at 18% 82%, oklch(68% 0.31 338 / 22%), transparent 34%),
    oklch(15% 0.015 260 / 44%);
}

.contact-choice__panel {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 18px;
  width: min(620px, calc(100vw - 28px));
  border: 1px solid oklch(15% 0.015 260 / 12%);
  border-radius: 18px;
  padding: clamp(24px, 4vw, 42px);
  background: oklch(99.5% 0.002 108);
  box-shadow: 0 34px 100px oklch(15% 0.015 260 / 30%);
  transform: translateY(18px) scale(.98);
  transition: transform .34s var(--ease);
}

.contact-choice.is-open .contact-choice__panel {
  transform: translateY(0) scale(1);
}

.contact-choice__close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 42px;
  height: 42px;
  border: 1px solid oklch(15% 0.015 260 / 16%);
  border-radius: 999px;
  background: oklch(99% 0.003 108);
  color: var(--ink);
  cursor: pointer;
}

.contact-choice__panel h2 {
  max-width: 10ch;
  font-size: clamp(2.3rem, 6vw, 5.2rem);
  line-height: .9;
}

.contact-choice__panel > p:not(.kicker) {
  max-width: 54ch;
  color: var(--ink-soft);
  line-height: 1.55;
}

.contact-choice__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.contact-choice__grid a {
  display: grid;
  gap: 8px;
  min-height: 112px;
  align-content: end;
  border: 1px solid oklch(15% 0.015 260 / 12%);
  border-radius: 14px;
  padding: 16px;
  background:
    linear-gradient(135deg, oklch(85% 0.26 139 / 10%), transparent 54%),
    oklch(98% 0.006 108);
  color: var(--ink);
}

.contact-choice__grid a:hover {
  border-color: var(--ink);
  transform: translateY(-2px);
}

.contact-choice__grid strong {
  font-size: 1.05rem;
}

.contact-choice__grid span {
  color: var(--muted);
  overflow-wrap: anywhere;
  font-weight: 800;
}

.article-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.article-card a {
  display: grid;
  min-height: 280px;
  border: 1px solid var(--ink);
  border-radius: var(--radius);
  padding: 28px;
  background: var(--paper);
  transition: transform 260ms cubic-bezier(.2, .8, .2, 1), box-shadow 260ms cubic-bezier(.2, .8, .2, 1);
}

.article-card a:hover {
  transform: translateY(-6px);
  box-shadow: 10px 10px 0 var(--pink);
}

.brief-section {
  border-top: 1px solid var(--ink);
}

.brief-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  border: 1px solid var(--ink);
  border-radius: var(--radius);
  padding: 18px;
  background: oklch(98% 0.006 108 / 82%);
  box-shadow: 10px 10px 0 var(--lime);
}

.brief-form label {
  display: grid;
  gap: 8px;
  color: var(--ink-soft);
  font-weight: 700;
}

.brief-form input,
.brief-form select,
.brief-form textarea,
.portfolio-tools input {
  width: 100%;
  border: 1px solid var(--ink);
  border-radius: 10px;
  padding: 14px 15px;
  background: var(--paper);
  color: var(--ink);
}

.brief-form textarea {
  resize: vertical;
}

.brief-form .wide,
.form-note {
  grid-column: 1 / -1;
}

.form-note {
  min-height: 24px;
  color: oklch(37% 0.22 351);
  font-weight: 800;
}

.subhero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, .55fr);
  gap: 40px;
  align-items: end;
  padding-top: 76px;
  padding-bottom: 70px;
}

.subhero h1,
.case-hero h1,
.article-page h1 {
  font-size: 5.4rem;
}

.portfolio-tools {
  display: grid;
  gap: 18px;
  padding-bottom: 28px;
}

.portfolio-tools label {
  display: grid;
  gap: 10px;
  font-weight: 800;
}

.filter-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.filter-button {
  cursor: pointer;
}

.portfolio-count {
  color: var(--muted);
}

.full-grid {
  padding-bottom: 110px;
}

.archive-cta {
  display: grid;
  gap: 18px;
  padding-top: 84px;
  padding-bottom: 104px;
  border-top: 1px solid var(--ink);
}

.case-hero {
  display: grid;
  grid-template-columns: minmax(0, .76fr) minmax(480px, 1.24fr);
  gap: clamp(44px, 5vw, 82px);
  align-items: center;
  padding-top: 58px;
  padding-bottom: 78px;
}

.case-hero-copy,
.case-story > div,
.rich-text {
  min-width: 0;
}

.case-hero h1,
.case-story h2 {
  max-width: 9.5ch;
  font-size: clamp(3.9rem, 5.1vw, 5.2rem);
  line-height: .94;
  overflow-wrap: anywhere;
}

.back-link {
  justify-content: start;
  margin-bottom: 22px;
  color: var(--muted);
  font-weight: 800;
}

.case-hero-copy > p {
  margin-top: 22px;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px;
}

.case-hero-image {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--ink);
  border-radius: var(--radius);
  background: var(--paper-2);
  box-shadow: 10px 10px 0 var(--lime);
}

.case-hero-image img {
  width: 100%;
  height: 620px;
  object-fit: cover;
}

.rich-text {
  display: grid;
  gap: 22px;
}

.case-gallery {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 16px;
  padding-top: 10px;
  padding-bottom: 90px;
}

.case-gallery figure {
  grid-column: span 4;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--ink);
  border-radius: var(--radius);
}

.case-gallery figure:nth-child(1),
.case-gallery figure:nth-child(4) {
  grid-column: span 8;
}

.case-gallery img {
  width: 100%;
  height: 420px;
  object-fit: cover;
}

.related-grid {
  padding: 0;
}

.article-grid-large {
  padding-top: 20px;
  padding-bottom: 120px;
}

.article-page {
  display: grid;
  grid-template-columns: minmax(0, .82fr) minmax(320px, .42fr);
  gap: 68px;
  padding-top: 76px;
  padding-bottom: 118px;
}

.article-page header,
.article-body {
  grid-column: 1;
}

.article-body {
  display: grid;
  gap: 26px;
  font-size: 1.18rem;
}

.article-insert,
.article-next {
  border: 1px solid var(--ink);
  border-radius: var(--radius);
  padding: 28px;
  background: var(--lime);
}

.article-insert {
  display: grid;
  gap: 16px;
  margin-top: 18px;
}

.article-next {
  grid-column: 2;
  grid-row: 1 / span 2;
  align-self: start;
  position: sticky;
  top: 110px;
  background: var(--paper);
  box-shadow: 10px 10px 0 var(--cyan);
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 34px var(--side);
  border-top: 1px solid var(--ink);
  background: var(--ink);
  color: var(--paper);
}

.site-footer strong {
  font-family: var(--display);
}

.site-footer p {
  margin-top: 8px;
  color: oklch(86% 0.012 108);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: flex-start;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 720ms cubic-bezier(.2, .8, .2, 1), transform 720ms cubic-bezier(.2, .8, .2, 1);
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

.is-hidden {
  display: none;
}

@media (max-width: 1240px) {
  h1 {
    font-size: 5.2rem;
  }

  h2 {
    font-size: 3.6rem;
  }

  .subhero h1,
  .case-hero h1,
  .article-page h1 {
    font-size: 4.2rem;
  }

  .white-hero,
  .case-hero {
    grid-template-columns: 1fr;
  }

  .case-hero h1,
  .case-story h2 {
    max-width: 14ch;
    font-size: clamp(3.25rem, 8vw, 4.4rem);
  }

  .hero-gallery {
    min-height: 520px;
  }

  .portfolio-card,
  .portfolio-card.is-featured {
    grid-column: span 6;
  }

  .direction-grid,
  .catalog-grid,
  .product-strip,
  .home-product-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .product-detail__panel {
    grid-template-columns: 1fr;
    width: min(760px, calc(100vw - 32px));
  }

  .product-detail__media figure {
    min-height: 340px;
  }
}

@media (max-width: 860px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .site-nav {
    display: none;
  }

  .white-hero,
  .subhero,
  .split-section,
  .brief-section,
  .case-story,
  .motion-band,
  .article-page {
    grid-template-columns: 1fr;
  }

  h1 {
    font-size: 3.25rem;
  }

  h2,
  .subhero h1,
  .case-hero h1,
  .article-page h1 {
    font-size: 3rem;
  }

  .case-hero h1,
  .case-story h2 {
    max-width: none;
    font-size: clamp(2.6rem, 12vw, 3.6rem);
  }

  .proof-grid,
  .article-grid,
  .product-strip,
  .catalog-grid,
  .direction-grid,
  .home-product-grid {
    grid-template-columns: 1fr 1fr;
  }

  .portfolio-card,
  .portfolio-card.is-featured,
  .case-gallery figure,
  .case-gallery figure:nth-child(1),
  .case-gallery figure:nth-child(4) {
    grid-column: span 12;
  }

  .brief-form {
    grid-template-columns: 1fr;
  }

  .white-hero {
    gap: 24px;
    padding-top: 32px;
    padding-bottom: 38px;
  }

  .hero-gallery {
    min-height: 330px;
  }

  .brief-form .wide,
  .form-note {
    grid-column: auto;
  }

  .article-next {
    grid-column: 1;
    grid-row: auto;
    position: static;
  }

  .catalog-results-shell {
    grid-template-columns: 1fr;
  }

  .color-groups {
    position: static;
  }

  .color-groups[hidden] + .catalog-results-main {
    grid-column: auto;
  }

  .product-detail {
    place-items: end center;
  }

  .product-detail__panel {
    width: calc(100vw - 20px);
    max-height: calc(100dvh - 20px);
    margin: 10px;
  }

  .product-detail__content {
    padding: 30px 22px 24px;
  }

  .product-detail__content h2 {
    max-width: none;
  }

  .product-detail__facts {
    grid-template-columns: 1fr;
  }

  .contact-choice__grid {
    grid-template-columns: 1fr;
  }

  .capabilities-section {
    grid-template-columns: 1fr;
  }

  .capability-copy {
    max-width: 100%;
  }

  .capability-title {
    max-width: 760px;
    font-size: clamp(3rem, 10vw, 5.4rem);
  }

  .capability-title span:first-child,
  .capability-title span:last-child {
    max-width: 12ch;
  }

  .category-cross-links,
  .category-seo {
    grid-template-columns: 1fr;
  }

  .category-cross-links .catalog-seo-links {
    justify-content: center;
  }
}

@media (max-width: 560px) {
  .brand-text {
    display: none;
  }

  .header-cta {
    min-height: 40px;
    padding: 0 14px;
    font-size: .94rem;
  }

  .white-hero {
    min-height: auto;
    padding-top: 34px;
  }

  h1 {
    font-size: 2.82rem;
  }

  h2,
  .subhero h1,
  .case-hero h1,
  .article-page h1 {
    font-size: 2.35rem;
  }

  .hero-gallery {
    min-height: 370px;
  }

  .photo-1 {
    width: 72%;
    height: 62%;
  }

  .photo-2 {
    width: 52%;
  }

  .photo-4,
  .photo-5 {
    display: none;
  }

  .proof-grid,
  .article-grid,
  .product-strip,
  .direction-grid {
    grid-template-columns: 1fr;
  }

  .home-catalog-panel header {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .home-product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .home-catalog-panel header h3 {
    font-size: 2.1rem;
  }

  .catalog-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    padding-bottom: 28px;
  }

  .catalog-category-intro {
    grid-template-columns: 1fr;
  }

  .capability-title {
    gap: 8px;
    font-size: 2.62rem;
    line-height: .94;
  }

  .capability-title span:first-child,
  .capability-title span:last-child {
    max-width: 10.5ch;
  }

  .capability-lead {
    margin-top: 20px;
    font-size: 1rem;
  }

  .capability-stack article {
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 12px;
    padding: 18px;
  }

  .capability-stack h3 {
    font-size: 1.3rem;
  }

  .catalog-category-block,
  .category-cross-links,
  .category-seo {
    padding-bottom: 70px;
  }

  .category-section-heading h2,
  .category-cross-links h2,
  .category-seo h2 {
    font-size: 2.15rem;
    line-height: 1;
  }

  .proof-grid article {
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .proof-grid article:first-child {
    border-top: 0;
  }

  .split-section,
  .brief-section,
  .portfolio-preview,
  .catalog-preview,
  .direction-board,
  .blog-preview,
  .case-related {
    padding-top: 76px;
    padding-bottom: 76px;
  }

  .case-hero-image img {
    height: 390px;
  }

  .case-gallery img {
    height: 340px;
  }

  .site-footer {
    display: grid;
  }

  .product-card figure {
    min-height: 128px;
  }

  .product-card figure::after {
    inset: 9px;
    border-radius: 10px;
  }

  .product-card img {
    height: 138px;
    padding: 10px;
  }

  .product-card > div:not(.product-no-image) {
    grid-template-rows: auto 3.1em 3.6em auto auto;
    gap: 7px;
    padding: 10px;
  }

  .product-card span {
    font-size: .62rem;
    line-height: 1.05;
  }

  .product-card h3 {
    min-height: 3.1em;
    max-height: 3.1em;
    display: -webkit-box;
    overflow: hidden;
    font-size: 1.02rem;
    line-height: 1.02;
    overflow-wrap: anywhere;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
  }

  .product-card p {
    min-height: 3.6em;
    max-height: 3.6em;
    font-size: .78rem;
    line-height: 1.2;
    -webkit-line-clamp: 3;
  }

  .product-card em {
    padding: 4px 7px;
    font-size: .66rem;
  }

  .product-price {
    gap: 1px;
    margin-top: 2px;
  }

  .product-price strong {
    font-size: .96rem;
  }

  .product-price span {
    font-size: .68rem;
  }

  .product-detail__media {
    padding: 18px;
  }

  .product-detail__media figure {
    min-height: 260px;
  }

  .product-detail__media img {
    max-height: 290px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 1ms !important;
    transition-duration: 1ms !important;
  }

  .cursor-beam {
    display: none;
  }
}
