:root {
  --green: #6bb42f;
  --green-dark: #5ca026;
  --dark: #111111;
  --ink: #161616;
  --muted: #666666;
  --soft: #f5f8f1;
  --line: #e7eadf;
  --white: #ffffff;
  --shadow: 0 14px 42px rgba(0, 0, 0, .06);
  --shadow-strong: 0 22px 60px rgba(0, 0, 0, .14);
  --radius: 24px;
  --radius-large: 32px;
  --work-tone-textile: #6bb42f;
  --work-tone-print: #356f9f;
  --work-tone-merch: #9a6a28;
  --work-tone-signs: #a75a22;
  --work-tone-web: #222222;
  --work-tone-neutral: #576052;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  background: var(--white);
  color: var(--ink);
  letter-spacing: 0;
}

body.has-open-menu {
  overflow: hidden;
}

img,
svg {
  display: block;
}

img {
  max-width: 100%;
  height: auto;
}

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

a:hover {
  color: var(--green);
}

:focus-visible {
  outline: 3px solid rgba(107, 180, 47, .42);
  outline-offset: 4px;
}

.screen-reader-text,
.skip-link:not(:focus) {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link:focus {
  position: fixed;
  top: 16px;
  left: 16px;
  z-index: 10000;
  background: var(--dark);
  color: var(--white);
  padding: 12px 16px;
  border-radius: 999px;
  font-weight: 800;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, .96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
}

.nav {
  max-width: 1240px;
  min-height: 92px;
  margin: 0 auto;
  padding: 0 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.logo img,
.custom-logo {
  width: auto;
  height: 61px;
  display: block;
}

.menu-list {
  display: flex;
  align-items: center;
  gap: 24px;
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 15px;
  font-weight: 800;
}

.menu-list li {
  position: relative;
}

.menu-list a {
  display: inline-flex;
  align-items: center;
  min-height: 48px;
  padding: 6px 0;
}

.menu-list a.is-active {
  color: var(--green);
}

.menu-list .nav-cta {
  min-height: 0;
  padding: 13px 20px;
  border-radius: 999px;
  background: var(--green);
  color: var(--white);
}

.menu-list .nav-cta.is-active,
.menu-list .nav-cta:hover {
  background: var(--green-dark);
  color: var(--white);
}

.sub-menu {
  position: absolute;
  top: 48px;
  left: -18px;
  min-width: 260px;
  max-height: min(70vh, 560px);
  overflow: auto;
  display: none;
  list-style: none;
  margin: 0;
  padding: 12px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: 0 18px 50px rgba(0, 0, 0, .12);
}

.menu-list li:hover > .sub-menu,
.menu-list li:focus-within > .sub-menu {
  display: block;
}

.sub-menu a {
  display: flex;
  min-height: 0;
  padding: 12px 14px;
  border-radius: 12px;
  color: var(--ink);
  white-space: nowrap;
}

.sub-menu a:hover {
  background: var(--soft);
  color: var(--ink);
}

.sub-menu a.is-active {
  background: var(--soft);
  color: var(--green);
}

.sub-menu .sub-menu {
  top: -12px;
  left: calc(100% + 8px);
}

.nav-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}

.nav-toggle span:not(.screen-reader-text) {
  width: 18px;
  height: 2px;
  background: var(--dark);
  border-radius: 999px;
}

.breadcrumbs {
  max-width: 1240px;
  margin: 0 auto;
  padding: 18px 28px 0;
  color: var(--muted);
  font-size: 14px;
}

.breadcrumbs ol {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  padding: 0;
}

.breadcrumbs li:not(:last-child)::after {
  content: "/";
  margin-left: 10px;
  color: #a2a89a;
}

.hero {
  --hero-image: url("../images/hero-heeseberg.jpg");
  position: relative;
  overflow: hidden;
  color: var(--white);
  background:
    linear-gradient(rgba(0, 0, 0, .48), rgba(0, 0, 0, .48)),
    var(--hero-image) center / cover no-repeat;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(115deg, transparent 0%, transparent 56%, rgba(107, 180, 47, .68) 56%, rgba(107, 180, 47, .86) 100%),
    radial-gradient(circle at 82% 28%, rgba(255, 255, 255, .22), transparent 28%);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 1240px;
  min-height: 560px;
  margin: 0 auto;
  padding: 106px 28px 94px;
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  gap: 48px;
  align-items: center;
}

.hero-slider {
  background: var(--dark);
}

.hero-slider::after {
  z-index: 1;
}

.hero-slider-track {
  position: relative;
}

.hero-slide {
  position: absolute;
  inset: 0;
  visibility: hidden;
  opacity: 0;
  isolation: isolate;
  background: var(--dark);
  transition: opacity .85s ease, visibility .85s ease;
}

.hero-slide::before,
.hero-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-slide::before {
  z-index: 0;
  background: var(--hero-image) center / cover no-repeat;
  transform: scale(1.005) translate3d(0, 0, 0);
  transform-origin: center;
}

.hero-slide::after {
  z-index: 1;
  background: linear-gradient(rgba(0, 0, 0, .48), rgba(0, 0, 0, .48));
}

.hero-slide.is-active {
  position: relative;
  visibility: visible;
  opacity: 1;
}

.hero-slide.is-active::before {
  animation: hero-image-drift 18s ease-out forwards;
}

.hero-slider .hero-inner {
  z-index: 2;
}

@keyframes hero-image-drift {
  from {
    transform: scale(1.005) translate3d(-.25%, -.2%, 0);
  }

  to {
    transform: scale(1.028) translate3d(.35%, .24%, 0);
  }
}

.hero-dots {
  position: absolute;
  left: 50%;
  bottom: 34px;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transform: translateX(-50%);
}

.hero-dot {
  width: 11px;
  height: 11px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, .72);
  border-radius: 999px;
  background: rgba(255, 255, 255, .38);
  box-shadow: 0 6px 18px rgba(0, 0, 0, .18);
  cursor: pointer;
  transition: width .25s ease, background .25s ease, border-color .25s ease;
}

.hero-dot.is-active {
  width: 32px;
  border-color: var(--green);
  background: var(--green);
}

.hero-dot:focus-visible {
  outline-color: rgba(255, 255, 255, .78);
}

.hero-rating-badge {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 24px;
  padding: 11px 14px;
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 999px;
  background: rgba(255, 255, 255, .12);
  color: var(--white);
  box-shadow: 0 14px 38px rgba(0, 0, 0, .16);
  backdrop-filter: blur(12px);
}

.hero-rating-badge:hover {
  color: var(--white);
  transform: translateY(-2px);
}

.hero-rating-badge span {
  color: var(--white);
  font-size: 15px;
  font-weight: 900;
}

.hero-rating-badge small {
  color: #eeeeee;
  font-size: 13px;
  font-weight: 800;
}

.home .hero-inner,
.home-hero .hero-inner {
  grid-template-columns: 1fr;
  min-height: 720px;
}

.home .hero-copy,
.home-hero .hero-copy {
  max-width: 780px;
}

.badge,
.eyebrow {
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 22px;
  padding: 10px 14px;
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: 999px;
  background: rgba(255, 255, 255, .12);
}

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

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

h1 {
  margin: 0 0 22px;
  font-size: 68px;
  line-height: 1;
  letter-spacing: 0;
}

h2 {
  margin: 8px 0 0;
  font-size: 44px;
  line-height: 1.08;
  letter-spacing: 0;
}

h3 {
  font-size: 23px;
  line-height: 1.18;
  letter-spacing: 0;
}

.hero p {
  max-width: 650px;
  margin: 0;
  color: #eeeeee;
  font-size: 21px;
  line-height: 1.55;
}

.hero-panel {
  color: var(--ink);
  background: rgba(255, 255, 255, .95);
  border: 1px solid rgba(255, 255, 255, .58);
  border-radius: var(--radius-large);
  padding: 30px;
  box-shadow: 0 25px 80px rgba(0, 0, 0, .28);
  backdrop-filter: blur(10px);
}

.hero-panel h2 {
  margin: 0 0 18px;
  font-size: 25px;
}

.check {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin: 14px 0;
  color: #333333;
  line-height: 1.5;
}

.lm-icon {
  width: 28px;
  height: 28px;
  flex: 0 0 auto;
}

.check .lm-icon {
  width: 24px;
  height: 24px;
  padding: 4px;
  color: var(--white);
  background: var(--green);
  border-radius: 50%;
}

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.btn-row.compact {
  margin-top: 0;
}

.btn,
button.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 15px 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font: inherit;
  font-weight: 900;
  cursor: pointer;
  box-shadow: 0 10px 26px rgba(0, 0, 0, .055);
  transition: transform .2s ease, background-color .2s ease, box-shadow .2s ease, border-color .2s ease, color .2s ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 34px rgba(0, 0, 0, .12);
}

.btn:active {
  transform: translateY(0);
  box-shadow: 0 8px 18px rgba(0, 0, 0, .09);
}

.btn-primary {
  background: var(--green);
  color: var(--white);
  box-shadow: 0 13px 30px rgba(107, 180, 47, .22);
}

.btn-primary:hover {
  background: var(--green-dark);
  color: var(--white);
}

.btn-light {
  background: var(--white);
  color: var(--dark);
}

.btn-light:hover {
  color: var(--dark);
  box-shadow: var(--shadow);
}

.btn-outline {
  background: var(--white);
  border-color: var(--line);
  color: var(--dark);
}

.btn-outline:hover {
  border-color: var(--green);
  color: var(--dark);
}

.btn-whatsapp,
.whatsapp-btn {
  background: #25d366;
  color: var(--white);
  box-shadow: 0 13px 30px rgba(37, 211, 102, .22);
}

.btn-whatsapp:hover,
.whatsapp-btn:hover {
  background: #1fba58;
  color: var(--white);
}

.btn-icon,
.text-icon {
  width: 18px;
  height: 18px;
}

.section {
  max-width: 1240px;
  margin: 0 auto;
  padding: 86px 28px;
}

.soft-band {
  max-width: none;
  background: var(--soft);
}

.soft-band > .section-head,
.soft-band > .service-grid,
.soft-band > .scope-grid,
.soft-band > .value-grid,
.soft-band > .usp-grid,
.soft-band > .location-grid,
.soft-band > .work-grid,
.soft-band > .section-actions {
  max-width: 1184px;
  margin-left: auto;
  margin-right: auto;
}

.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 34px;
}

.lead {
  max-width: 670px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.6;
}

.service-grid,
.industry-grid,
.scope-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.service-card,
.industry-card,
.mini-card,
.usp-card,
.trust-box,
.value-card,
.faq-item,
.form-box,
.problem-card,
.case-box,
.post-card,
.location-card,
.result-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 26px;
  box-shadow: var(--shadow);
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.service-card,
.industry-card {
  min-height: 260px;
  padding: 30px;
}

.industry-card.has-industry-art {
  position: relative;
  overflow: hidden;
  min-height: 344px;
  padding: 0 30px 30px;
  display: flex;
  flex-direction: column;
}

.industry-card.has-industry-art::before {
  content: "";
  display: block;
  height: 184px;
  margin: 0 -30px 0;
  background: var(--industry-image) center / 100% 100% no-repeat, var(--soft);
  border-bottom: 1px solid var(--line);
}

.industry-card.has-industry-art .icon-wrap {
  margin-top: -32px;
  margin-bottom: 18px;
  background: var(--white);
  box-shadow: 0 14px 34px rgba(0, 0, 0, .12);
}

.industry-card.has-industry-art p {
  margin-bottom: 18px;
}

.industry-card.has-industry-art .card-link {
  margin-top: auto;
}

.service-card:hover,
.industry-card:hover,
.mini-card:hover,
.usp-card:hover,
.faq-item:hover,
.problem-card:hover,
.case-box:hover,
.post-card:hover,
.location-card:hover {
  transform: translateY(-5px);
  border-color: #d5ddb9;
  box-shadow: var(--shadow-strong);
}

.icon-wrap {
  width: 62px;
  height: 62px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  border-radius: 20px;
  background: var(--soft);
  color: var(--green);
}

.icon-wrap.small {
  width: 44px;
  height: 44px;
  margin: 0;
  border-radius: 16px;
}

.icon-wrap .lm-icon {
  width: 31px;
  height: 31px;
}

.service-card h3,
.industry-card h3 {
  margin: 0 0 12px;
}

.service-card p,
.industry-card p,
.mini-card p,
.case-box p,
.post-card p,
.location-card p {
  color: var(--muted);
  line-height: 1.55;
}

.card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 6px;
  color: var(--green);
  font-weight: 900;
}

.section-actions {
  display: flex;
  justify-content: center;
  margin-top: 30px;
}

.reference-landing-intro {
  padding-bottom: 38px;
}

.reference-feature-grid .case-box {
  padding: 0;
  overflow: hidden;
}

.reference-project-card h3,
.reference-project-card p,
.reference-project-card .card-link {
  margin-left: 28px;
  margin-right: 28px;
}

.reference-project-card .card-link {
  margin-bottom: 28px;
}

.works-hero .hero-inner,
.work-detail-hero .hero-inner {
  min-height: 430px;
  padding-top: 82px;
  padding-bottom: 76px;
}

.works-hero .hero-copy,
.work-detail-hero .hero-copy {
  max-width: 820px;
}

.work-showroom {
  padding-top: 70px;
}

.work-filter-bar {
  display: grid;
  gap: 18px;
  margin-bottom: 34px;
}

.work-filter-search {
  display: grid;
  gap: 8px;
  max-width: 520px;
}

.work-filter-search label {
  color: #444444;
  font-size: 14px;
  font-weight: 900;
}

.work-filter-search input {
  width: 100%;
  min-height: 54px;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 0 18px;
  background: #fafafa;
  color: var(--ink);
  font: inherit;
}

.work-filter-chips {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding: 2px 0 8px;
  scrollbar-width: thin;
}

.work-chip {
  --work-chip-color: var(--work-tone-neutral);
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  flex: 0 0 auto;
  padding: 10px 15px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  color: var(--ink);
  font: inherit;
  font-weight: 900;
  cursor: pointer;
}

.work-chip[data-tone="textile"] { --work-chip-color: var(--work-tone-textile); }
.work-chip[data-tone="print"] { --work-chip-color: var(--work-tone-print); }
.work-chip[data-tone="merch"] { --work-chip-color: var(--work-tone-merch); }
.work-chip[data-tone="signs"] { --work-chip-color: var(--work-tone-signs); }
.work-chip[data-tone="web"] { --work-chip-color: var(--work-tone-web); }

.work-chip small {
  min-width: 22px;
  padding: 3px 7px;
  border-radius: 999px;
  background: var(--soft);
  color: var(--muted);
  font-size: 12px;
}

.work-chip:hover,
.work-chip:focus-visible,
.work-chip.is-active {
  border-color: var(--work-chip-color);
  color: var(--work-chip-color);
}

.work-chip.is-active small {
  background: var(--work-chip-color);
  color: var(--white);
}

.work-result-status {
  margin-bottom: 18px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
}

.work-results-region[aria-busy="true"] {
  opacity: .62;
}

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

.work-showroom-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: start;
}

.work-archive-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
  align-items: stretch;
  grid-auto-flow: row;
}

.work-archive-grid .work-card {
  height: 100%;
  grid-row: auto;
  grid-column: auto;
}

.work-archive-grid .work-card-media,
.work-archive-grid .work-card.is-wide .work-card-media,
.work-archive-grid .work-card.is-portrait .work-card-media,
.work-archive-grid .work-card.is-square .work-card-media,
.work-archive-grid .work-card.is-featured .work-card-media {
  aspect-ratio: 4 / 3;
}

.work-archive-grid .work-card-body h3,
.work-archive-grid .work-card-body p {
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
}

.work-archive-grid .work-card-body h3 {
  -webkit-line-clamp: 2;
  line-clamp: 2;
}

.work-archive-grid .work-card-body p {
  -webkit-line-clamp: 2;
  line-clamp: 2;
}

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

.home-work-preview {
  padding-top: 74px;
  padding-bottom: 74px;
}

.work-carousel {
  --work-carousel-visible: 4;
  display: grid;
  gap: 18px;
}

.work-carousel-viewport {
  overflow: hidden;
  margin: 0 -10px;
  padding: 4px 10px 10px;
}

.work-carousel-track {
  display: flex;
  align-items: stretch;
  will-change: transform;
}

.work-carousel-slide {
  flex: 0 0 calc(100% / var(--work-carousel-visible));
  min-width: 0;
  padding: 0 10px;
}

.work-card.is-compact {
  height: 100%;
  min-height: 0;
  border-radius: 20px;
  background: var(--white);
}

.work-card.is-compact .work-card-media,
.work-card.is-compact.is-featured .work-card-media,
.work-card.is-compact.is-portrait .work-card-media,
.work-card.is-compact.is-square .work-card-media,
.work-card.is-compact.is-wide .work-card-media {
  height: 190px;
  aspect-ratio: auto;
}

.work-card.is-compact .work-card-body {
  min-height: 142px;
  padding: 16px;
}

.work-card.is-compact h3 {
  margin-bottom: 12px;
  font-size: 18px;
  line-height: 1.22;
}

.work-card.is-compact .work-badge {
  font-size: 11px;
}

.work-card.is-compact .card-link {
  font-size: 14px;
}

.work-carousel-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
}

.work-carousel-arrow {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  color: var(--ink);
  cursor: pointer;
  transition: transform .2s ease, border-color .2s ease, color .2s ease;
}

.work-carousel-arrow:hover,
.work-carousel-arrow:focus-visible {
  border-color: var(--green);
  color: var(--green);
  transform: translateY(-2px);
}

.work-carousel-arrow .lm-icon {
  width: 18px;
  height: 18px;
}

.work-carousel-arrow.is-prev .lm-icon {
  transform: rotate(180deg);
}

.work-carousel-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  min-height: 44px;
}

.work-carousel-dot {
  width: 8px;
  height: 8px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: #cfd6c7;
  cursor: pointer;
  transition: width .2s ease, background-color .2s ease;
}

.work-carousel-dot.is-active {
  width: 24px;
  background: var(--green);
}

.work-carousel.is-static .work-carousel-controls {
  display: none;
}

.work-card {
  min-height: 0;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: #fbfbfa;
  border: 1px solid rgba(231, 234, 223, .74);
  border-radius: 22px;
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.work-card:hover,
.work-card:focus-visible {
  transform: translateY(-4px);
  border-color: #d5ddb9;
  box-shadow: 0 18px 48px rgba(0, 0, 0, .12);
  color: var(--ink);
}

.work-card-media {
  position: relative;
  aspect-ratio: 4 / 3;
  margin: 0;
  overflow: hidden;
  background: var(--soft);
}

.work-card.is-wide .work-card-media {
  aspect-ratio: 16 / 9;
}

.work-card.is-portrait .work-card-media {
  aspect-ratio: 4 / 5;
}

.work-card.is-square .work-card-media {
  aspect-ratio: 1 / 1;
}

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

.work-card.is-featured .work-card-media {
  aspect-ratio: 4 / 5;
}

.work-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform .24s ease;
}

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

.work-card-placeholder {
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
  color: var(--green);
}

.work-card-placeholder .lm-icon {
  width: 46px;
  height: 46px;
}

.work-card-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 20px;
}

.work-card-body h3 {
  margin: 12px 0 8px;
  font-size: 21px;
}

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

.work-card-body .card-link {
  margin-top: auto;
  transition: transform .2s ease;
}

.work-card:hover .card-link,
.work-card:focus-visible .card-link {
  transform: translateX(3px);
}

.work-badge {
  --work-badge-color: var(--work-tone-neutral);
  align-self: flex-start;
  max-width: 100%;
  padding: 7px 10px;
  border-radius: 999px;
  background: var(--work-badge-color);
  color: var(--white);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.work-badge[data-tone="textile"] { --work-badge-color: var(--work-tone-textile); }
.work-badge[data-tone="print"] { --work-badge-color: var(--work-tone-print); }
.work-badge[data-tone="merch"] { --work-badge-color: var(--work-tone-merch); }
.work-badge[data-tone="signs"] { --work-badge-color: var(--work-tone-signs); }
.work-badge[data-tone="web"] { --work-badge-color: var(--work-tone-web); }

.work-empty {
  max-width: 720px;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--soft);
}

.work-empty h2 {
  margin-top: 0;
  font-size: 32px;
}

.work-empty p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.6;
}

.work-detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.85fr) minmax(300px, .95fr);
  gap: 36px;
  align-items: start;
}

.work-detail .content-prose {
  margin-top: 32px;
}

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

.work-gallery figure {
  margin: 0;
}

.work-gallery figcaption {
  margin-top: 8px;
  color: var(--muted);
  font-size: 14px;
}

.work-gallery-button {
  width: 100%;
  display: block;
  padding: 0;
  border: 0;
  border-radius: 18px;
  background: var(--soft);
  cursor: zoom-in;
  overflow: hidden;
}

.work-gallery-button img {
  width: 100%;
  height: 100%;
  min-height: 160px;
  object-fit: cover;
}

.work-gallery-button.is-portrait img {
  aspect-ratio: 4 / 5;
}

.work-gallery-button.is-square img {
  aspect-ratio: 1 / 1;
}

.work-gallery-button.is-landscape img {
  aspect-ratio: 4 / 3;
}

.work-gallery-button.is-wide img {
  aspect-ratio: 16 / 9;
}

.work-gallery-main {
  grid-column: 1 / -1;
}

.work-gallery-main .work-gallery-button {
  border-radius: 26px;
}

.work-gallery-main img {
  aspect-ratio: 16 / 9;
}

.work-info {
  position: sticky;
  top: 118px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.work-info h2 {
  margin-top: 8px;
  font-size: 28px;
}

.work-info ul {
  display: grid;
  gap: 14px;
  margin: 24px 0;
  padding: 0;
  list-style: none;
}

.work-info li {
  display: grid;
  gap: 4px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
}

.work-info strong {
  color: var(--muted);
  font-size: 13px;
  text-transform: uppercase;
}

.work-info p {
  color: var(--muted);
  line-height: 1.6;
}

.work-detail-cta {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 26px;
  align-items: center;
  padding: 34px;
  border-radius: 28px;
  background: var(--soft);
}

.work-detail-cta h2 {
  margin-top: 6px;
}

.work-detail-cta p {
  max-width: 680px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.6;
}

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

.work-lightbox {
  position: fixed;
  inset: 0;
  z-index: 5000;
  display: grid;
  place-items: center;
  padding: 24px;
}

.work-lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, .78);
}

.work-lightbox-panel {
  position: relative;
  z-index: 1;
  width: min(1120px, 100%);
  max-height: 92vh;
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr) 54px;
  gap: 14px;
  align-items: center;
}

.work-lightbox-panel figure {
  min-width: 0;
  grid-column: 2;
  grid-row: 1;
  margin: 0;
}

.work-lightbox-panel img {
  width: 100%;
  max-height: 82vh;
  object-fit: contain;
  border-radius: 18px;
  background: #111111;
}

.work-lightbox-panel figcaption,
.work-lightbox-count {
  margin-top: 10px;
  color: var(--white);
  text-align: center;
}

.work-lightbox-close,
.work-lightbox-nav {
  border: 1px solid rgba(255, 255, 255, .28);
  border-radius: 999px;
  background: rgba(255, 255, 255, .12);
  color: var(--white);
  cursor: pointer;
}

.work-lightbox-close {
  position: absolute;
  top: -18px;
  right: -18px;
  width: 46px;
  height: 46px;
  font-size: 30px;
  line-height: 1;
}

.work-lightbox-nav {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
}

.work-lightbox-nav.is-prev {
  grid-column: 1;
  grid-row: 1;
}

.work-lightbox-nav.is-next {
  grid-column: 3;
  grid-row: 1;
}

.work-lightbox-count {
  grid-column: 2;
  grid-row: 2;
}

.work-lightbox-nav .lm-icon {
  width: 20px;
  height: 20px;
}

.work-lightbox-nav.is-prev .lm-icon {
  transform: rotate(180deg);
}

.has-lightbox {
  overflow: hidden;
}

.trust {
  background: var(--soft);
}

.trust-grid,
.value-grid,
.location-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

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

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

.trust-box,
.value-card,
.location-card {
  padding: 26px;
}

.usp-card,
.confidence-card {
  min-height: 100%;
  padding: 26px;
}

.trust-box strong {
  display: block;
  margin-bottom: 7px;
  font-size: 28px;
}

.metric-card strong {
  color: var(--dark);
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1;
}

.metric-card {
  display: flex;
  flex-direction: column;
}

.metric-icon {
  width: 54px;
  height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  border-radius: 18px;
  background: var(--white);
  color: var(--green);
  box-shadow: 0 12px 26px rgba(0, 0, 0, .06);
  transition: transform .22s ease, color .22s ease, background-color .22s ease;
}

.metric-icon .lm-icon {
  width: 29px;
  height: 29px;
}

.metric-card:hover .metric-icon {
  color: #79c83a;
  background: #f9fff4;
  transform: scale(1.06);
}

.metric-card > span:not(.metric-icon),
.usp-card p,
.confidence-card p {
  color: var(--muted);
  line-height: 1.55;
}

.usp-card h3,
.confidence-card h3 {
  margin: 18px 0 10px;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 36px;
  align-items: center;
}

.image-card {
  min-height: 430px;
  border-radius: var(--radius-large);
  background: url("../images/about-office.jpg") center / cover no-repeat;
  box-shadow: var(--shadow-strong);
}

.content-prose {
  color: #2b2b2b;
  font-size: 18px;
  line-height: 1.75;
}

.content-prose > *:first-child {
  margin-top: 0;
}

.content-prose a {
  color: var(--green);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.legal-content {
  max-width: 920px;
}

.legal-content h2,
.legal-content h3,
.legal-content h4,
.legal-content h5 {
  margin-top: 34px;
  color: var(--ink);
}

.legal-content h2 {
  font-size: 30px;
}

.legal-content h3 {
  font-size: 23px;
}

.legal-content ul,
.legal-content ol {
  padding-left: 1.25em;
}

.legal-content details {
  margin: 16px 0;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--white);
}

.legal-content summary {
  cursor: pointer;
  font-weight: 900;
}

.seo-block,
.cta-band,
.solution-band,
.compare-section {
  border-radius: 34px;
  padding: 48px;
}

.seo-block {
  background: linear-gradient(135deg, var(--soft), var(--white));
  border: 1px solid var(--line);
}

.seo-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 24px;
}

.seo-columns ul {
  margin: 0;
  padding-left: 20px;
  line-height: 1.9;
}

.cta-band,
.solution-band {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 30px;
  align-items: center;
  background: var(--dark);
  color: var(--white);
}

.cta-band h2,
.solution-band h2 {
  margin: 0;
  color: var(--white);
}

.cta-band p,
.solution-band .lead {
  color: #dddddd;
}

.solution-band {
  grid-template-columns: 1fr 1fr;
}

.solution-list {
  display: grid;
  gap: 14px;
}

.solution-list div {
  display: flex;
  gap: 10px;
  align-items: center;
  padding: 16px 18px;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 18px;
  background: rgba(255, 255, 255, .08);
  font-weight: 800;
}

.solution-list .lm-icon {
  width: 20px;
  height: 20px;
  color: var(--green);
}

.review-section {
  max-width: none;
  background: linear-gradient(135deg, var(--soft), var(--white));
}

.review-wrap {
  max-width: 1184px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 28px;
}

.review-wrap-google {
  grid-template-columns: minmax(0, 760px);
  justify-content: center;
}

.review-score-card {
  position: relative;
  overflow: hidden;
  padding: 36px;
  border-radius: 34px;
  background: var(--dark);
  color: var(--white);
  box-shadow: 0 24px 80px rgba(0, 0, 0, .18);
}

.review-score-card h2 {
  color: var(--white);
}

.review-score {
  margin: 10px 0;
  color: var(--white);
  font-size: 76px;
  line-height: 1;
  font-weight: 900;
}

.review-score small {
  font-size: 28px;
  color: #dddddd;
}

.review-stars-big,
.rating-stars {
  display: flex;
  gap: 4px;
  color: #f6b800;
}

.review-stars-big .lm-icon,
.rating-stars .lm-icon {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

.review-google-rating {
  margin: 16px 0 10px;
  color: var(--white);
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1;
  font-weight: 900;
}

.review-google-count,
.review-google-note {
  max-width: 560px;
  margin: 12px 0 0;
  color: #eeeeee;
  font-size: 18px;
  line-height: 1.55;
}

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

.review-card {
  padding: 28px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 26px;
  box-shadow: var(--shadow);
}

.review-card:first-child {
  grid-column: 1 / -1;
}

.review-quote {
  margin: 12px 0 18px;
  color: #333333;
  font-size: 18px;
  line-height: 1.6;
}

.review-name {
  color: var(--dark);
  font-weight: 900;
}

.review-meta {
  margin-top: 4px;
  color: var(--muted);
  font-size: 13px;
}

.problem-grid,
.case-grid,
.post-grid,
.process-grid {
  display: grid;
  gap: 18px;
}

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

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

.problem-card,
.case-box,
.post-card,
.result-card {
  padding: 28px;
}

.case-box img,
.post-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 18px;
  margin-bottom: 18px;
}

.project-magazine {
  padding-top: 78px;
}

.project-stories-hero .hero-inner {
  min-height: 420px;
  padding-top: 86px;
  padding-bottom: 82px;
}

.project-stories-hero .hero-copy {
  max-width: 720px;
}

.project-stories-hero h1 {
  font-size: 58px;
}

.project-stories-hero.reference-taxonomy-hero .hero-copy {
  max-width: 860px;
}

.project-stories-editorial-intro {
  padding-top: 58px;
  padding-bottom: 0;
}

.project-stories-editorial-intro .content-prose {
  max-width: 860px;
}

.project-stories-editorial-intro .lead {
  margin-bottom: 18px;
  color: var(--dark);
  font-size: 25px;
  line-height: 1.45;
  font-weight: 900;
}

.project-filter-bar {
  margin-bottom: 30px;
}

.project-magazine-grid {
  gap: 28px;
  align-items: stretch;
}

.project-card {
  min-height: 0;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid rgba(231, 234, 223, .88);
  border-radius: 24px;
  background: var(--white);
  box-shadow: 0 12px 34px rgba(0, 0, 0, .045);
  transition: transform .24s ease, box-shadow .24s ease, border-color .24s ease;
}

.project-card:hover,
.project-card:focus-visible {
  transform: translateY(-4px);
  border-color: #d5ddb9;
  box-shadow: 0 22px 58px rgba(0, 0, 0, .12);
  color: var(--ink);
}

.project-card-media {
  position: relative;
  margin: 0;
  overflow: hidden;
  aspect-ratio: 16 / 11;
  background: var(--soft);
}

.project-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .36s ease;
}

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

.project-card-placeholder {
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
  color: var(--green);
}

.project-card-placeholder .lm-icon {
  width: 48px;
  height: 48px;
}

.project-card-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 22px;
}

.project-card-meta,
.project-story-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.project-card-meta span,
.project-story-meta span {
  padding: 7px 10px;
  border-radius: 999px;
  background: var(--soft);
}

.project-card-meta span:first-child,
.project-story-meta span:first-child {
  background: var(--dark);
  color: var(--white);
}

.project-card h3 {
  display: -webkit-box;
  overflow: hidden;
  margin: 16px 0 10px;
  font-size: 25px;
  line-height: 1.18;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-clamp: 2;
}

.project-card p {
  display: -webkit-box;
  overflow: hidden;
  margin: 0 0 18px;
  color: var(--muted);
  line-height: 1.55;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-clamp: 2;
}

.project-card .card-link {
  margin-top: auto;
}

.project-story-hero {
  padding-top: 58px;
  padding-bottom: 64px;
}

.project-story-hero-image {
  margin: 0;
  overflow: hidden;
  border-radius: 28px;
  background: var(--soft);
}

.project-story-hero-image img {
  width: 100%;
  max-height: 60vh;
  min-height: 360px;
  object-fit: cover;
  object-position: center;
}

.project-story-hero-copy {
  max-width: 920px;
  margin-top: 34px;
}

.project-story-hero-copy h1 {
  max-width: 860px;
  margin: 18px 0 0;
  color: var(--dark);
  font-size: 58px;
}

.project-story-subtitle {
  max-width: 760px;
  margin: 18px 0 0;
  color: var(--ink);
  font-size: 24px;
  line-height: 1.35;
  font-weight: 800;
}

.project-story-intro {
  max-width: 760px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 20px;
  line-height: 1.65;
}

.project-glance-section {
  padding-top: 0;
}

.project-glance-box,
.project-data-box {
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.project-glance-box {
  display: grid;
  grid-template-columns: minmax(240px, .72fr) minmax(0, 1.28fr);
  gap: 32px;
  align-items: start;
}

.project-glance-box h2,
.project-data-box h2 {
  margin-top: 8px;
  font-size: 34px;
}

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

.project-glance-item {
  min-width: 0;
  display: grid;
  gap: 7px;
  padding: 18px;
  border-radius: 18px;
  background: var(--soft);
}

.project-glance-item .icon-wrap {
  margin-bottom: 4px;
}

.project-glance-item strong {
  color: var(--muted);
  font-size: 12px;
  text-transform: uppercase;
}

.project-glance-item span:last-child {
  color: var(--ink);
  font-weight: 800;
  line-height: 1.35;
}

.project-story-body {
  max-width: 980px;
}

.project-chapter {
  margin-bottom: 70px;
}

.project-chapter-label {
  margin-bottom: 12px;
  color: var(--green);
  font-size: 13px;
  font-weight: 900;
}

.project-chapter h2 {
  max-width: 780px;
  margin: 0 0 20px;
  font-size: 46px;
}

.project-chapter .content-prose {
  max-width: 760px;
}

.project-quote {
  margin: 8px 0 76px;
  padding: 34px 0 34px 34px;
  border-left: 5px solid var(--green);
  color: var(--dark);
  font-size: 34px;
  line-height: 1.28;
  font-weight: 900;
}

.project-story-gallery {
  margin: 4px 0 76px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.project-story-gallery .work-gallery-main {
  grid-column: 1 / -1;
}

.project-story-gallery .work-gallery-button img {
  min-height: 240px;
}

.project-story-gallery .work-gallery-main img {
  min-height: 430px;
}

.project-data-box {
  display: grid;
  grid-template-columns: minmax(240px, .72fr) minmax(0, 1.28fr);
  gap: 34px;
  background: var(--soft);
}

.project-data-box dl {
  display: grid;
  gap: 0;
  margin: 0;
}

.project-data-box dl > div {
  display: grid;
  grid-template-columns: minmax(130px, .42fr) minmax(0, 1fr);
  gap: 18px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(17, 17, 17, .08);
}

.project-data-box dl > div:first-child {
  padding-top: 0;
}

.project-data-box dl > div:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.project-data-box dt {
  color: var(--muted);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.project-data-box dd {
  margin: 0;
  color: var(--ink);
  font-weight: 800;
  line-height: 1.45;
}

.project-related-section > .section-head,
.project-related-section > .project-related-block {
  max-width: 1184px;
  margin-left: auto;
  margin-right: auto;
}

.project-related-block {
  margin-top: 38px;
}

.project-related-block h3 {
  margin: 0 0 18px;
  font-size: 28px;
}

.post-card {
  padding: 0;
  overflow: hidden;
}

.post-card a {
  min-height: 100%;
  display: flex;
  flex-direction: column;
  color: inherit;
}

.post-card-body {
  min-height: 100%;
  padding: 26px;
  display: flex;
  flex-direction: column;
}

.post-card h2 {
  font-size: 26px;
}

.post-card p {
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}

.post-card .card-link {
  margin-top: auto;
}

.post-card-meta,
.post-single-details {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}

.post-card-meta {
  margin-bottom: 12px;
}

.post-card time,
.post-single-details {
  color: var(--green);
  font-weight: 900;
}

.post-category {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 5px 10px;
  border-radius: 999px;
  background: rgba(107, 180, 47, .12);
  color: var(--green);
  font-size: 13px;
  font-weight: 900;
}

.post-card.is-featured {
  grid-column: 1 / -1;
}

.post-card.is-featured img {
  height: clamp(300px, 42vw, 520px);
  margin-bottom: 0;
  border-radius: 0;
}

.post-card.is-featured .post-card-body {
  min-height: auto;
  padding: clamp(30px, 5vw, 56px);
}

.post-card.is-featured .post-card-meta {
  margin-bottom: 16px;
}

.post-card.is-featured h2 {
  max-width: 780px;
  font-size: clamp(34px, 4vw, 54px);
  line-height: 1.03;
}

.post-card.is-featured p {
  max-width: 680px;
  font-size: 18px;
  -webkit-line-clamp: 3;
}

.post-card.is-featured .card-link {
  align-self: flex-start;
  margin-top: 18px;
}

@media (max-width: 700px) {
  .post-card.is-featured img {
    height: 260px;
  }

  .post-card.is-featured .post-card-body {
    padding: 24px;
  }

  .post-card.is-featured h2 {
    font-size: 30px;
  }
}

.single-post-article {
  max-width: 980px;
}

.post-single-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  margin-bottom: 28px;
}

.post-back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--green);
  font-weight: 900;
}

.post-back-link .text-icon {
  transform: rotate(180deg);
}

.post-featured-media {
  margin: 0 0 34px;
  overflow: hidden;
  border-radius: 24px;
  box-shadow: var(--shadow);
}

.post-featured-media img {
  display: block;
  width: 100%;
  height: auto;
}

@media (max-width: 700px) {
  .post-single-meta {
    align-items: flex-start;
    flex-direction: column;
  }
}

.process-step {
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.process-number {
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  border-radius: 50%;
  background: var(--green);
  color: var(--white);
  font-weight: 900;
}

.mini-card {
  min-height: 126px;
  padding: 24px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.mini-card p {
  margin: 2px 0 0;
  font-weight: 800;
  color: var(--ink);
}

.faq-list {
  display: grid;
  gap: 14px;
}

.faq-item {
  padding: 0;
  overflow: hidden;
}

.faq-item summary {
  cursor: pointer;
  padding: 22px 24px;
  font-size: 20px;
  font-weight: 900;
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  float: right;
  color: var(--green);
  font-size: 24px;
}

.faq-item[open] summary::after {
  content: "-";
}

.faq-item div {
  padding: 0 24px 24px;
  color: var(--muted);
  line-height: 1.65;
}

.form-box {
  padding: 30px;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.form-grid label,
.form-box label.consent {
  display: grid;
  gap: 7px;
  color: #444444;
  font-size: 14px;
  font-weight: 800;
}

.form-grid label.full {
  grid-column: 1 / -1;
}

.form-box input,
.form-box select,
.form-box textarea {
  width: 100%;
  min-height: 50px;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 14px 15px;
  background: #fafafa;
  color: var(--ink);
  font: inherit;
}

.form-box textarea {
  min-height: 132px;
  resize: vertical;
}

.form-box .consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-top: 14px;
  line-height: 1.45;
  font-weight: 400;
}

.form-box .consent input {
  width: auto;
  min-height: 0;
  margin-top: 3px;
}

.form-box .btn {
  margin-top: 16px;
}

.hp-field {
  position: absolute !important;
  left: -9999px !important;
  opacity: 0 !important;
  height: 0 !important;
  overflow: hidden !important;
}

.micro-note {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

.form-status {
  margin-bottom: 16px;
  padding: 14px 16px;
  border-radius: 14px;
  font-weight: 800;
}

.form-status.success {
  background: var(--soft);
  color: #315e14;
}

.form-status.error {
  background: #fff4f4;
  color: #8b1f1f;
}

.contact-list {
  display: grid;
  gap: 12px;
  margin: 24px 0;
}

.contact-list a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--white);
  font-weight: 900;
}

.contact-list .lm-icon {
  color: var(--green);
}

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: end;
  gap: 14px;
  margin-bottom: 34px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--soft);
}

.filter-bar label {
  display: grid;
  gap: 7px;
  min-width: 220px;
  color: #444444;
  font-size: 14px;
  font-weight: 800;
}

.filter-bar select,
.filter-bar input[type="search"] {
  min-height: 50px;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 0 14px;
  background: var(--white);
  font: inherit;
}

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

.gallery-grid img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  border-radius: 24px;
  box-shadow: var(--shadow);
}

.location-card a {
  color: var(--green);
  font-weight: 900;
}

.claim-band {
  margin-top: 40px;
  padding: 70px 28px;
  text-align: center;
  background: var(--dark);
  color: var(--white);
}

.claim-band h2 {
  margin: 0;
  font-size: 72px;
  color: var(--white);
}

.claim-band p {
  color: #dddddd;
  font-size: 22px;
}

.site-footer {
  padding: 50px 28px;
  background: #0b0b0b;
  color: var(--white);
}

.footer-inner {
  max-width: 1240px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 30px;
  line-height: 1.7;
}

.footer-inner a {
  color: var(--white);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  list-style: none;
  padding: 0;
  margin: 16px 0 0;
}

.footer-legal strong {
  display: block;
  margin-bottom: 8px;
}

.footer-legal ul {
  display: grid;
  gap: 6px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.mobile-bar {
  display: none;
}

.floating-wa {
  position: fixed;
  right: 22px;
  bottom: 92px;
  width: 62px;
  height: 62px;
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #25d366;
  color: var(--white);
  box-shadow: 0 18px 45px rgba(0, 0, 0, .24);
}

.floating-wa .lm-icon {
  width: 28px;
  height: 28px;
}

.pagination,
.nav-links {
  display: flex;
  gap: 10px;
  justify-content: center;
  margin-top: 34px;
}

.page-numbers {
  min-width: 42px;
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-weight: 900;
}

.page-numbers.current {
  background: var(--green);
  color: var(--white);
  border-color: var(--green);
}

.reveal {
  opacity: 1;
  transform: none;
}

.has-js .reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .65s ease, transform .65s ease;
}

.has-js .reveal.is-visible {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition: none !important;
    animation: none !important;
  }
}

@media (max-width: 1050px) {
  .work-carousel {
    --work-carousel-visible: 2;
  }

  .service-grid,
  .industry-grid,
  .scope-grid,
  .problem-grid,
  .case-grid,
  .post-grid,
  .gallery-grid,
  .work-grid,
  .work-grid-large {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .trust-grid,
  .value-grid,
  .usp-grid,
  .confidence-grid,
  .process-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

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

@media (max-width: 900px) {
  body {
    padding-bottom: 72px;
  }

  .nav {
    min-height: 78px;
    padding: 14px 20px;
  }

  .logo img,
  .custom-logo {
    height: 47px;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .menu {
    position: fixed;
    inset: 78px 0 auto 0;
    max-height: calc(100vh - 78px);
    overflow: auto;
    display: none;
    padding: 18px 20px 28px;
    border-bottom: 1px solid var(--line);
    background: var(--white);
  }

  .menu.is-open {
    display: block;
  }

  .menu-list {
    display: grid;
    gap: 8px;
    font-size: 16px;
  }

  .menu-list a,
  .menu-list .nav-cta {
    width: 100%;
    justify-content: flex-start;
    min-height: 48px;
    padding: 12px 14px;
    border-radius: 14px;
  }

  .menu-list .nav-cta {
    justify-content: center;
  }

  .sub-menu {
    position: static;
    display: block;
    min-width: 0;
    max-height: none;
    overflow: visible;
    padding: 0 0 0 12px;
    border: 0;
    border-radius: 0;
    box-shadow: none;
  }

  .sub-menu a {
    white-space: normal;
  }

  .breadcrumbs {
    padding: 14px 22px 0;
  }

  .hero::after {
    background: linear-gradient(rgba(0, 0, 0, .3), rgba(0, 0, 0, .28));
  }

  .hero-inner,
  .home .hero-inner,
  .home-hero .hero-inner {
    min-height: 0;
    grid-template-columns: 1fr;
    padding: 70px 22px;
  }

  .hero-slider .hero-inner {
    padding-bottom: 94px;
  }

  .works-hero .hero-inner,
  .work-detail-hero .hero-inner,
  .project-stories-hero .hero-inner {
    min-height: 0;
    padding-top: 58px;
    padding-bottom: 58px;
  }

  .hero-dots {
    bottom: 26px;
  }

  .hero-rating-badge {
    max-width: 100%;
    flex-wrap: wrap;
  }

  h1 {
    font-size: 46px;
  }

  h2 {
    font-size: 34px;
  }

  .hero p {
    font-size: 19px;
  }

  .project-stories-hero h1 {
    font-size: 46px;
  }

  .section {
    padding: 66px 22px;
  }

  .section-head,
  .split,
  .work-detail-layout,
  .work-detail-cta,
  .review-wrap,
  .seo-columns,
  .cta-band,
  .solution-band,
  .location-grid,
  .form-grid {
    grid-template-columns: 1fr;
    display: grid;
  }

  .section-head {
    align-items: start;
  }

  .project-story-hero-copy h1 {
    font-size: 46px;
  }

  .project-glance-box,
  .project-data-box {
    grid-template-columns: 1fr;
  }

  .project-story-gallery .work-gallery-main img {
    min-height: 320px;
  }

  .cta-band,
  .solution-band,
  .seo-block {
    padding: 32px;
  }

  .btn-row.compact {
    margin-top: 18px;
  }

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

  .work-filter-search {
    max-width: none;
  }

  .work-info {
    position: static;
  }

  .work-detail-cta {
    align-items: start;
  }

  .work-lightbox-panel {
    grid-template-columns: 44px minmax(0, 1fr) 44px;
    gap: 8px;
  }

  .work-lightbox-nav {
    width: 44px;
    height: 44px;
  }

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

  .review-score {
    font-size: 58px;
  }

  .mobile-bar {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1000;
    display: flex;
    gap: 10px;
    padding: 10px;
    border-top: 1px solid var(--line);
    background: var(--white);
  }

  .mobile-bar a {
    flex: 1;
    min-height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 900;
  }

  .mobile-bar a:first-child {
    background: var(--green);
    color: var(--white);
  }

  .mobile-bar a:nth-child(2) {
    background: #25d366;
    color: var(--white);
  }

  .mobile-bar a:last-child {
    background: var(--dark);
    color: var(--white);
  }

  .mobile-bar .lm-icon {
    width: 19px;
    height: 19px;
  }

  .floating-wa {
    display: none;
  }
}

@media (max-width: 700px) {
  .work-carousel {
    --work-carousel-visible: 1;
  }

  .home-work-preview {
    padding-top: 58px;
    padding-bottom: 58px;
  }

  .work-card.is-compact .work-card-media,
  .work-card.is-compact.is-featured .work-card-media,
  .work-card.is-compact.is-portrait .work-card-media,
  .work-card.is-compact.is-square .work-card-media,
  .work-card.is-compact.is-wide .work-card-media {
    height: 184px;
  }

  .project-card h3 {
    font-size: 22px;
  }

  .project-stories-editorial-intro {
    padding-top: 42px;
  }

  .project-stories-editorial-intro .lead {
    font-size: 21px;
  }

  .project-stories-hero h1 {
    font-size: 38px;
  }

  .project-story-hero {
    padding-top: 42px;
    padding-bottom: 52px;
  }

  .project-story-hero-image {
    border-radius: 20px;
  }

  .project-story-hero-image img {
    min-height: 260px;
  }

  .project-story-hero-copy h1 {
    font-size: 38px;
  }

  .project-story-subtitle {
    font-size: 20px;
  }

  .project-story-intro {
    font-size: 18px;
  }

  .project-glance-grid,
  .project-story-gallery {
    grid-template-columns: 1fr;
  }

  .project-chapter {
    margin-bottom: 52px;
  }

  .project-chapter h2 {
    font-size: 34px;
  }

  .project-quote {
    margin-bottom: 58px;
    padding-left: 22px;
    font-size: 26px;
  }

  .project-data-box dl > div {
    grid-template-columns: 1fr;
    gap: 5px;
  }

  .service-grid,
  .industry-grid,
  .scope-grid,
  .trust-grid,
  .value-grid,
  .usp-grid,
  .confidence-grid,
  .process-grid,
  .problem-grid,
  .case-grid,
  .post-grid,
  .gallery-grid,
  .work-grid,
  .work-grid-large,
  .work-term-grid {
    grid-template-columns: 1fr;
  }

  .work-archive-grid {
    grid-template-columns: 1fr;
  }

  .hero-panel,
  .seo-block,
  .cta-band,
  .solution-band,
  .review-score-card,
  .form-box {
    border-radius: 24px;
  }

  .image-card {
    min-height: 320px;
  }

  .claim-band h2 {
    font-size: 46px;
  }

  .claim-band p {
    font-size: 18px;
  }

  .work-showroom {
    padding-top: 54px;
  }

  .work-filter-chips {
    margin-right: -22px;
    padding-right: 22px;
  }

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

  .work-gallery-main {
    grid-column: 1 / -1;
  }

  .work-lightbox {
    padding: 14px;
  }

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

  .work-lightbox-panel figure,
  .work-lightbox-count {
    grid-column: 1 / -1;
  }

  .work-lightbox-nav.is-prev,
  .work-lightbox-nav.is-next {
    grid-row: 3;
  }

  .work-lightbox-nav.is-prev {
    grid-column: 1;
    justify-self: end;
  }

  .work-lightbox-nav.is-next {
    grid-column: 2;
    justify-self: start;
  }
}

/* Projectstories editorial experience. */
.project-stories-hero::after {
  background: linear-gradient(90deg, rgba(0, 0, 0, .62), rgba(0, 0, 0, .3) 58%, rgba(107, 180, 47, .16));
}

.project-stories-hero .hero-inner {
  min-height: 390px;
  padding-top: 78px;
  padding-bottom: 78px;
}

.project-stories-hero .hero-copy {
  max-width: 780px;
}

.project-stories-hero.reference-taxonomy-hero .hero-copy {
  max-width: 860px;
}

.project-stories-editorial-intro {
  padding-top: 64px;
}

.project-stories-intro-grid {
  max-width: 1184px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(260px, .86fr) minmax(0, 1.14fr);
  gap: 56px;
  align-items: start;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--line);
}

.project-stories-editorial-intro .lead {
  margin: 0;
  font-size: 31px;
  line-height: 1.18;
}

.project-stories-intro-grid .content-prose {
  max-width: 640px;
  padding-top: 7px;
}

.project-stories-intro-grid .content-prose p {
  margin: 0;
  font-size: 18px;
}

.project-filter-wrap.is-editorial {
  max-width: 1184px;
  margin: 0 auto 34px;
}

.project-filter-heading {
  margin-bottom: 12px;
  color: var(--dark);
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.project-filter-wrap.is-editorial .project-filter-bar {
  margin-bottom: 0;
  padding: 16px;
  border-radius: 18px;
  background: #fbfcf8;
  box-shadow: none;
}

.project-filter-wrap.is-editorial .filter-bar label {
  min-width: 190px;
  color: #515151;
}

.project-filter-wrap.is-editorial .filter-bar select {
  min-height: 46px;
  border-radius: 13px;
  background: var(--white);
}

.project-editorial-grid {
  max-width: 1184px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 34px 28px;
  align-items: stretch;
}

.project-editorial-grid .project-card {
  grid-column: span 6;
  border-radius: 18px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, .042);
}

.project-editorial-grid .project-card:hover,
.project-editorial-grid .project-card:focus-visible {
  transform: translateY(-3px);
  box-shadow: 0 24px 54px rgba(0, 0, 0, .105);
}

.project-editorial-grid .project-card-media {
  aspect-ratio: 4 / 3;
}

.project-editorial-grid .project-card-body {
  padding: 24px;
}

.project-editorial-grid .project-card h3 {
  margin-top: 18px;
  font-size: 29px;
  line-height: 1.13;
}

.project-editorial-grid .project-card p {
  max-width: 560px;
  font-size: 16px;
}

.project-editorial-grid .project-card .card-link {
  align-self: flex-start;
  padding-bottom: 3px;
  border-bottom: 2px solid rgba(107, 180, 47, .36);
  color: var(--dark);
}

.project-editorial-grid .project-card.is-title-story,
.project-editorial-grid .project-card.is-wide-story,
.project-editorial-grid .project-card.is-feature-story {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(0, 1.38fr) minmax(320px, .82fr);
}

.project-editorial-grid .project-card.is-wide-story {
  grid-template-columns: minmax(320px, .86fr) minmax(0, 1.14fr);
}

.project-editorial-grid .project-card.is-feature-story {
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, .92fr);
}

.project-editorial-grid .project-card.is-title-story .project-card-media,
.project-editorial-grid .project-card.is-wide-story .project-card-media,
.project-editorial-grid .project-card.is-feature-story .project-card-media {
  height: 100%;
  min-height: 380px;
  aspect-ratio: auto;
}

.project-editorial-grid .project-card.is-title-story .project-card-body,
.project-editorial-grid .project-card.is-wide-story .project-card-body,
.project-editorial-grid .project-card.is-feature-story .project-card-body {
  min-height: 380px;
  padding: 38px;
  justify-content: flex-end;
}

.project-editorial-grid .project-card.is-title-story h3 {
  max-width: 520px;
  font-size: 46px;
  line-height: 1.05;
}

.project-editorial-grid .project-card.is-wide-story h3,
.project-editorial-grid .project-card.is-feature-story h3 {
  max-width: 620px;
  font-size: 36px;
  line-height: 1.09;
}

.project-card-placeholder {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  padding: 26px;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(107, 180, 47, .16), rgba(255, 255, 255, .78)),
    repeating-linear-gradient(90deg, rgba(17, 17, 17, .04) 0, rgba(17, 17, 17, .04) 1px, transparent 1px, transparent 34px);
  color: var(--dark);
}

.project-card-placeholder::after {
  content: "LENZMEDIA";
  position: absolute;
  right: 24px;
  bottom: 22px;
  color: rgba(17, 17, 17, .08);
  font-size: 28px;
  font-weight: 900;
}

.project-card-placeholder-label {
  position: relative;
  z-index: 1;
  padding: 7px 10px;
  border-radius: 999px;
  background: var(--white);
  color: var(--green);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.project-card-placeholder-title {
  position: relative;
  z-index: 1;
  max-width: 82%;
  color: var(--dark);
  font-size: 24px;
  line-height: 1.1;
  font-weight: 900;
}

.project-story {
  background: linear-gradient(180deg, #ffffff 0, #ffffff 58%, #fbfcf8 100%);
}

.project-story-hero {
  max-width: 1240px;
  margin: 0 auto;
  padding-top: 54px;
  padding-bottom: 70px;
}

.project-story-hero-image {
  border-radius: 22px;
}

.project-story-hero-image img {
  min-height: 420px;
}

.project-story-hero-copy {
  max-width: 940px;
  margin-top: 38px;
  padding-bottom: 34px;
  border-bottom: 1px solid var(--line);
}

.project-story-hero-copy h1 {
  max-width: 900px;
  font-size: 60px;
  line-height: 1.04;
}

.project-story-subtitle {
  max-width: 820px;
}

.project-story-intro {
  max-width: 760px;
}

.project-glance-box,
.project-data-box {
  max-width: 1184px;
  margin: 0 auto;
  border-width: 1px 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.project-glance-box {
  padding: 38px 0;
}

.project-glance-grid {
  gap: 0;
  border-top: 1px solid rgba(17, 17, 17, .08);
}

.project-glance-item {
  min-height: 128px;
  padding: 18px 18px 18px 0;
  border-radius: 0;
  border-bottom: 1px solid rgba(17, 17, 17, .08);
  background: transparent;
}

.project-glance-item .icon-wrap {
  display: none;
}

.project-story-body {
  max-width: 1080px;
}

.project-chapter {
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr);
  gap: 44px;
  margin-bottom: 78px;
}

.project-chapter-label {
  margin-bottom: 0;
  padding-top: 13px;
  border-top: 2px solid var(--green);
}

.project-chapter h2,
.project-chapter .content-prose {
  grid-column: 2;
}

.project-chapter h2 {
  max-width: 700px;
  font-size: 44px;
}

.project-chapter .content-prose {
  max-width: 720px;
}

.project-quote {
  position: relative;
  margin: 2px 0 82px 180px;
  padding: 40px 44px 42px;
  border-left: 0;
  border-radius: 20px;
  background: var(--soft);
  font-size: 33px;
  line-height: 1.24;
}

.project-quote::before {
  content: "Zitat";
  display: block;
  margin-bottom: 14px;
  color: var(--green);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.project-story-gallery {
  max-width: 1184px;
  margin: 10px auto 82px;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 16px;
}

.project-story-gallery .work-gallery-main {
  grid-column: span 4;
  grid-row: span 2;
}

.project-story-gallery .work-gallery-thumb {
  grid-column: span 2;
}

.project-story-gallery .work-gallery-button img {
  min-height: 230px;
}

.project-story-gallery .work-gallery-main img {
  min-height: 476px;
}

.project-data-section {
  padding-top: 0;
}

.project-data-box {
  padding: 40px 0;
}

.project-data-box dl > div {
  grid-template-columns: minmax(150px, .38fr) minmax(0, 1fr);
}

.project-related-section {
  background: #fbfcf8;
}

.project-related-block {
  margin-top: 44px;
}

.project-related-block h3 {
  margin-bottom: 20px;
}

.project-related-block.is-project-stories .project-magazine-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.project-related-block.is-project-stories .project-card h3 {
  font-size: 24px;
}

.project-related-block.is-project-stories .project-card-body {
  padding: 21px;
}

.project-related-block.is-catalog .service-card,
.project-related-block.is-catalog .industry-card {
  box-shadow: none;
}

@media (max-width: 1050px) {
  .project-stories-intro-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .project-stories-editorial-intro .lead {
    max-width: 720px;
  }

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

  .project-editorial-grid .project-card {
    grid-column: span 1;
  }

  .project-editorial-grid .project-card.is-title-story,
  .project-editorial-grid .project-card.is-wide-story,
  .project-editorial-grid .project-card.is-feature-story {
    grid-column: 1 / -1;
    grid-template-columns: 1fr;
  }

  .project-editorial-grid .project-card.is-title-story .project-card-media,
  .project-editorial-grid .project-card.is-wide-story .project-card-media,
  .project-editorial-grid .project-card.is-feature-story .project-card-media {
    min-height: 320px;
    aspect-ratio: 16 / 9;
  }

  .project-editorial-grid .project-card.is-title-story .project-card-body,
  .project-editorial-grid .project-card.is-wide-story .project-card-body,
  .project-editorial-grid .project-card.is-feature-story .project-card-body {
    min-height: 0;
  }

  .project-glance-box,
  .project-data-box {
    grid-template-columns: 1fr;
  }

  .project-chapter {
    grid-template-columns: 128px minmax(0, 1fr);
    gap: 30px;
  }

  .project-quote {
    margin-left: 128px;
  }

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

  .project-story-gallery .work-gallery-main,
  .project-story-gallery .work-gallery-thumb {
    grid-column: span 1;
    grid-row: auto;
  }

  .project-story-gallery .work-gallery-main {
    grid-column: 1 / -1;
  }

  .project-related-block.is-project-stories .project-magazine-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .project-stories-hero .hero-inner {
    min-height: 0;
    padding-top: 58px;
    padding-bottom: 58px;
  }

  .project-stories-hero h1 {
    font-size: 46px;
  }

  .project-stories-intro-grid {
    padding-bottom: 38px;
  }

  .project-story-hero-copy h1 {
    font-size: 46px;
  }

  .project-story-hero-image img {
    min-height: 320px;
  }

  .project-chapter {
    display: block;
  }

  .project-chapter-label {
    width: 84px;
    margin-bottom: 16px;
  }

  .project-quote {
    margin-left: 0;
  }
}

@media (max-width: 700px) {
  .project-stories-editorial-intro {
    padding-top: 42px;
  }

  .project-stories-editorial-intro .lead {
    font-size: 24px;
  }

  .project-filter-wrap.is-editorial .project-filter-bar {
    padding: 14px;
  }

  .project-editorial-grid,
  .project-related-block.is-project-stories .project-magazine-grid {
    grid-template-columns: 1fr;
  }

  .project-editorial-grid .project-card h3,
  .project-related-block.is-project-stories .project-card h3 {
    font-size: 24px;
  }

  .project-editorial-grid .project-card.is-title-story h3 {
    font-size: 32px;
  }

  .project-editorial-grid .project-card.is-wide-story h3,
  .project-editorial-grid .project-card.is-feature-story h3 {
    font-size: 28px;
  }

  .project-editorial-grid .project-card.is-title-story .project-card-body,
  .project-editorial-grid .project-card.is-wide-story .project-card-body,
  .project-editorial-grid .project-card.is-feature-story .project-card-body,
  .project-editorial-grid .project-card-body {
    padding: 22px;
  }

  .project-editorial-grid .project-card.is-title-story .project-card-media,
  .project-editorial-grid .project-card.is-wide-story .project-card-media,
  .project-editorial-grid .project-card.is-feature-story .project-card-media {
    min-height: 240px;
  }

  .project-card-placeholder {
    padding: 22px;
  }

  .project-story-hero {
    padding-top: 42px;
    padding-bottom: 52px;
  }

  .project-story-hero-image {
    border-radius: 20px;
  }

  .project-story-hero-image img {
    min-height: 260px;
  }

  .project-story-hero-copy h1 {
    font-size: 38px;
  }

  .project-story-subtitle {
    font-size: 20px;
  }

  .project-story-intro {
    font-size: 18px;
  }

  .project-glance-grid,
  .project-story-gallery {
    grid-template-columns: 1fr;
  }

  .project-chapter {
    margin-bottom: 52px;
  }

  .project-chapter h2 {
    font-size: 34px;
  }

  .project-quote {
    margin-bottom: 58px;
    padding: 30px 24px;
    font-size: 25px;
  }

  .project-data-box dl > div {
    grid-template-columns: 1fr;
    gap: 5px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-slide,
  .hero-dot {
    transition: none;
  }

  .hero-slide.is-active::before {
    animation: none;
    transform: scale(1.005) translate3d(0, 0, 0);
  }

  .work-card:hover .work-card-media img,
  .work-card:focus-visible .work-card-media img,
  .work-card:hover .card-link,
  .work-card:focus-visible .card-link,
  .work-carousel-track,
  .work-carousel-arrow,
  .work-carousel-dot {
    transform: none;
    transition: none;
  }
}

/* Projectstories v1.5 single experience. */
.project-story-hero {
  max-width: none;
  padding: 42px 28px 34px;
}

.project-story-hero-frame {
  position: relative;
  min-height: 620px;
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  align-items: end;
  overflow: hidden;
  border-radius: 28px;
  background: var(--dark);
  box-shadow: 0 28px 72px rgba(0, 0, 0, .18);
}

.project-story-hero-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, .76), rgba(0, 0, 0, .44) 54%, rgba(0, 0, 0, .18)),
    linear-gradient(0deg, rgba(0, 0, 0, .64), rgba(0, 0, 0, 0) 48%);
}

.project-story-hero-frame .project-story-hero-image {
  position: absolute;
  inset: 0;
  margin: 0;
  border-radius: 0;
}

.project-story-hero-frame .project-story-hero-image img {
  width: 100%;
  height: 100%;
  min-height: 0;
  max-height: none;
  object-fit: cover;
  object-position: center;
}

.project-story-hero-frame .project-story-hero-copy {
  position: relative;
  z-index: 2;
  max-width: 920px;
  margin: 0;
  padding: 58px;
  border-bottom: 0;
  color: var(--white);
}

.project-story-hero-frame .project-story-meta span {
  background: rgba(255, 255, 255, .16);
  color: var(--white);
  backdrop-filter: blur(10px);
}

.project-story-hero-frame .project-story-meta span:first-child {
  background: var(--green);
}

.project-story-hero-frame .project-story-hero-copy h1 {
  max-width: 880px;
  margin-top: 22px;
  color: var(--white);
  font-size: 64px;
  line-height: 1.02;
}

.project-story-hero-frame .project-story-subtitle {
  max-width: 760px;
  color: var(--white);
}

.project-story-hero-frame .project-story-intro {
  max-width: 720px;
  color: rgba(255, 255, 255, .84);
}

.project-story-hero-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 30px 0 0;
}

.project-story-hero-facts div {
  min-width: 150px;
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 16px;
  background: rgba(255, 255, 255, .12);
  backdrop-filter: blur(10px);
}

.project-story-hero-facts dt {
  color: rgba(255, 255, 255, .68);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.project-story-hero-facts dd {
  margin: 5px 0 0;
  color: var(--white);
  font-weight: 900;
  line-height: 1.25;
}

.project-info-section {
  padding-top: 18px;
  padding-bottom: 20px;
}

.project-info-strip {
  max-width: 1184px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.project-info-strip div {
  min-width: 0;
  padding: 22px 18px;
  border-right: 1px solid var(--line);
}

.project-info-strip div:last-child {
  border-right: 0;
}

.project-info-strip span {
  display: block;
  margin-bottom: 7px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.project-info-strip strong {
  display: block;
  color: var(--dark);
  line-height: 1.32;
}

.project-highlights-section {
  margin: -12px 0 76px;
}

.project-highlights {
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr);
  gap: 44px;
}

.project-highlights h2 {
  margin-top: 8px;
  font-size: 32px;
}

.project-highlight-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.project-highlight-card {
  min-width: 0;
  display: flex;
  gap: 14px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--white);
  box-shadow: 0 10px 26px rgba(0, 0, 0, .04);
}

.project-highlight-card span {
  flex: 0 0 auto;
  color: var(--green);
  font-size: 13px;
  font-weight: 900;
}

.project-highlight-card p {
  margin: 0;
  color: var(--ink);
  font-weight: 800;
  line-height: 1.45;
}

.project-story-body img {
  max-width: 100%;
  height: auto;
}

.project-related-block.is-project-stories .project-card {
  border-radius: 18px;
}

.project-story-nav-section {
  padding-top: 0;
}

.project-story-nav {
  max-width: 1184px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.project-story-nav-link {
  min-height: 132px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--white);
  box-shadow: 0 12px 32px rgba(0, 0, 0, .045);
}

.project-story-nav-link:only-child {
  grid-column: 1 / -1;
}

.project-story-nav-link.is-next {
  text-align: right;
}

.project-story-nav-link span {
  color: var(--green);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.project-story-nav-link strong {
  color: var(--dark);
  font-size: 24px;
  line-height: 1.15;
}

.project-story-nav-link:hover,
.project-story-nav-link:focus-visible {
  transform: translateY(-2px);
  border-color: #d5ddb9;
  box-shadow: 0 22px 48px rgba(0, 0, 0, .1);
}

@media (max-width: 1050px) {
  .project-story-hero-frame {
    min-height: 560px;
  }

  .project-story-hero-frame .project-story-hero-copy {
    padding: 42px;
  }

  .project-story-hero-frame .project-story-hero-copy h1 {
    font-size: 52px;
  }

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

  .project-info-strip div:nth-child(2n) {
    border-right: 0;
  }

  .project-info-strip div {
    border-bottom: 1px solid var(--line);
  }

  .project-info-strip div:nth-last-child(-n+2) {
    border-bottom: 0;
  }

  .project-highlights {
    grid-template-columns: 128px minmax(0, 1fr);
    gap: 30px;
  }
}

@media (max-width: 700px) {
  .project-story-hero {
    padding: 28px 18px 24px;
  }

  .project-story-hero-frame {
    min-height: 0;
    border-radius: 22px;
  }

  .project-story-hero-frame::after {
    background: linear-gradient(0deg, rgba(0, 0, 0, .78), rgba(0, 0, 0, .38));
  }

  .project-story-hero-frame .project-story-hero-image {
    position: relative;
    min-height: 260px;
  }

  .project-story-hero-frame .project-story-hero-copy {
    padding: 28px 22px 30px;
  }

  .project-story-hero-frame .project-story-hero-copy h1 {
    font-size: 38px;
  }

  .project-story-hero-facts {
    display: grid;
    grid-template-columns: 1fr;
  }

  .project-story-hero-facts div {
    min-width: 0;
  }

  .project-info-section {
    padding-top: 4px;
  }

  .project-info-strip {
    grid-template-columns: 1fr;
  }

  .project-info-strip div,
  .project-info-strip div:nth-child(2n),
  .project-info-strip div:nth-last-child(-n+2) {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .project-info-strip div:last-child {
    border-bottom: 0;
  }

  .project-highlights {
    display: block;
  }

  .project-highlights-head {
    margin-bottom: 18px;
  }

  .project-highlight-grid,
  .project-story-nav {
    grid-template-columns: 1fr;
  }

  .project-story-nav-link,
  .project-story-nav-link.is-next {
    text-align: left;
  }

  .project-story-nav-link strong {
    font-size: 22px;
  }
}

/* Projectstories v1.5.5 frontend polish. */
.project-card-meta span:first-child,
.project-story-meta span:first-child,
.project-card-placeholder-label {
  text-transform: none;
}

.project-story-hero-frame .project-story-hero-copy h1 {
  margin-top: 18px;
}

.project-story-hero-frame .project-story-subtitle,
.project-story-hero-frame .project-story-intro {
  margin-top: 16px;
}

.project-chapter {
  margin-bottom: 68px;
}

.project-chapter h2 {
  margin-bottom: 18px;
}

.project-highlights-section {
  margin: -6px 0 64px;
}

.project-highlights {
  gap: 36px;
}

.project-highlights h2 {
  margin-top: 4px;
  font-size: 30px;
}

.project-highlight-grid {
  gap: 10px;
}

.project-highlight-card {
  gap: 10px;
  padding: 15px 16px;
  border-radius: 14px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, .035);
}

.project-highlight-card span {
  font-size: 12px;
}

.project-highlight-card p {
  font-size: 15px;
  line-height: 1.38;
}

@media (max-width: 700px) {
  .project-story-hero {
    padding: 18px 16px 22px;
  }

  .project-story-hero-frame .project-story-hero-image {
    min-height: 230px;
  }

  .project-story-hero-frame .project-story-hero-copy {
    padding: 24px 20px 26px;
  }

  .project-story-hero-frame .project-story-hero-copy h1 {
    margin-top: 15px;
    font-size: 36px;
    line-height: 1.06;
  }

  .project-story-meta {
    gap: 6px;
  }

  .project-story-meta span {
    padding: 6px 9px;
  }

  .project-story-hero-frame .project-story-subtitle,
  .project-story-hero-frame .project-story-intro {
    margin-top: 13px;
  }

  .project-chapter {
    margin-bottom: 46px;
  }

  .project-chapter h2 {
    margin-bottom: 16px;
  }

  .project-highlights-section {
    margin: -2px 0 48px;
  }

  .project-highlights-head {
    margin-bottom: 14px;
  }

  .project-highlight-card {
    padding: 14px 15px;
  }
}

/* Projectstories v1.6 SEO architecture. */
.reference-taxonomy-links-section {
  padding-top: 0;
}

.reference-taxonomy-links,
.reference-taxonomy-archive-intro,
.reference-taxonomy-services {
  max-width: 1184px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(220px, .55fr) minmax(0, 1.45fr);
  gap: 24px;
  align-items: start;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--white);
  box-shadow: 0 10px 30px rgba(0, 0, 0, .04);
}

.reference-taxonomy-links h2,
.reference-taxonomy-archive-intro h2,
.reference-taxonomy-services h2 {
  margin: 8px 0 0;
  font-size: 28px;
}

.reference-taxonomy-link-groups {
  display: grid;
  gap: 18px;
}

.reference-taxonomy-group h3 {
  margin: 0 0 10px;
  color: var(--dark);
  font-size: 18px;
}

.reference-term-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.reference-term-chip {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--soft);
  color: var(--dark);
  font-size: 14px;
  font-weight: 900;
  transition: background .2s ease, border-color .2s ease, color .2s ease, transform .2s ease;
}

.reference-term-chip:hover,
.reference-term-chip:focus-visible {
  transform: translateY(-1px);
  border-color: var(--green);
  background: var(--green);
  color: var(--white);
}

.reference-taxonomy-services {
  align-items: center;
}

.reference-taxonomy-archive-intro .content-prose {
  max-width: 760px;
}

.reference-taxonomy-empty {
  max-width: 760px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--soft);
}

.reference-taxonomy-empty h2 {
  margin: 0 0 10px;
  font-size: 28px;
}

.reference-taxonomy-empty p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

@media (max-width: 900px) {
  .reference-taxonomy-links,
  .reference-taxonomy-archive-intro,
  .reference-taxonomy-services {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 700px) {
  .reference-taxonomy-links,
  .reference-taxonomy-archive-intro,
  .reference-taxonomy-services {
    padding: 20px;
    border-radius: 18px;
  }

  .reference-taxonomy-links h2,
  .reference-taxonomy-archive-intro h2,
  .reference-taxonomy-services h2 {
    font-size: 24px;
  }
}

.reference-taxonomy-hero .hero-copy h1 {
  font-size: clamp(42px, 4.5vw, 64px);
  line-height: 1;
  overflow-wrap: normal;
  word-break: normal;
  hyphens: none;
  max-width: none;
}

.reference-taxonomy-title {
  font-size: clamp(42px, 4.5vw, 64px);
  line-height: 1;
  overflow-wrap: normal;
  word-break: normal;
  hyphens: none;
  max-width: none;
}

.nav-action {
  gap: 7px;
  color: var(--green);
}

.nav-action:hover {
  color: var(--green-dark);
}

.nav-action-icon {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.current-action-landing {
  overflow: hidden;
  background: var(--white);
}

.current-action-landing .alignfull {
  width: 100%;
  max-width: none;
}

.current-action-landing .lm-action-hero {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 85vh;
  padding: 120px 28px 96px;
  color: var(--white);
}

.current-action-landing .lm-action-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, .52), rgba(0, 0, 0, .22) 55%, rgba(0, 0, 0, .12));
  pointer-events: none;
}

.current-action-landing .lm-action-hero .wp-block-cover__background {
  opacity: .34;
}

.current-action-landing .lm-action-hero .wp-block-cover__inner-container {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
}

.lm-action-hero-content {
  max-width: 760px;
}

.current-action-landing .lm-action-hero-layout {
  align-items: center;
  gap: clamp(28px, 5vw, 72px);
  width: 100%;
  margin: 0;
}

.current-action-landing .lm-action-hero-panel {
  padding: clamp(28px, 4vw, 54px);
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 32px;
  background: rgba(21, 24, 27, .68);
  box-shadow: 0 28px 80px rgba(0, 0, 0, .32);
  backdrop-filter: blur(16px);
}

.lm-action-hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}

.lm-action-hero-points li {
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .12);
  color: rgba(255, 255, 255, .88);
  font-size: 14px;
  font-weight: 800;
}

.lm-action-monitor-column {
  display: flex;
  justify-content: center;
}

.lm-action-monitor-mockup {
  width: min(100%, 520px);
  margin: 0;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: 34px;
  background: linear-gradient(145deg, rgba(255, 255, 255, .28), rgba(255, 255, 255, .08));
  box-shadow: 0 30px 90px rgba(0, 0, 0, .38);
  backdrop-filter: blur(18px);
}

.lm-action-monitor-screen {
  min-height: 360px;
  padding: clamp(24px, 4vw, 42px);
  border-radius: 24px;
  background: rgba(255, 255, 255, .96);
  color: var(--ink);
}

.lm-action-monitor-label {
  width: fit-content;
  margin: 0 0 18px;
  padding: 7px 11px;
  border-radius: 999px;
  background: rgba(107, 180, 47, .13);
  color: var(--green);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.lm-action-monitor-screen h3 {
  margin: 0 0 16px;
  color: var(--ink);
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1;
}

.lm-action-monitor-screen p:not(.lm-action-monitor-label) {
  margin: 0 0 22px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.55;
}

.lm-action-monitor-screen ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.lm-action-monitor-screen li {
  position: relative;
  padding-left: 24px;
  color: var(--ink);
  font-weight: 800;
}

.lm-action-monitor-screen li::before {
  content: "";
  position: absolute;
  top: .62em;
  left: 0;
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: var(--green);
}

.lm-action-badge {
  width: fit-content;
  margin: 0 0 22px;
  padding: 9px 14px;
  border: 1px solid rgba(255, 255, 255, .28);
  border-radius: 999px;
  background: rgba(255, 255, 255, .12);
  color: var(--white);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
  backdrop-filter: blur(12px);
}

.current-action-landing .lm-action-hero h1 {
  max-width: 900px;
  margin: 0;
  color: var(--white);
  font-size: clamp(54px, 7vw, 104px);
  line-height: .94;
  overflow-wrap: normal;
  word-break: normal;
  hyphens: none;
}

.lm-action-hero-text {
  max-width: 680px;
  margin: 26px 0 0;
  color: rgba(255, 255, 255, .9);
  font-size: clamp(20px, 2vw, 28px);
  line-height: 1.35;
}

.lm-action-hero-price {
  margin: 24px 0 0;
  color: var(--white);
  font-size: clamp(34px, 4vw, 58px);
  font-weight: 900;
  line-height: 1;
}

.lm-action-buttons {
  margin-top: 34px;
  gap: 14px;
}

.current-action-landing .wp-block-button__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 15px 24px;
  border-radius: 999px;
  border: 1px solid var(--green);
  background: var(--green);
  color: var(--white);
  font-weight: 900;
  text-decoration: none;
  box-shadow: 0 14px 32px rgba(107, 180, 47, .24);
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
}

.current-action-landing .wp-block-button__link:hover {
  transform: translateY(-2px);
  background: var(--green-dark);
  color: var(--white);
  box-shadow: 0 18px 38px rgba(107, 180, 47, .3);
}

.current-action-landing .lm-action-hero .is-style-outline .wp-block-button__link {
  border-color: rgba(255, 255, 255, .42);
  background: rgba(255, 255, 255, .1);
  color: var(--white);
  box-shadow: none;
  backdrop-filter: blur(10px);
}

.current-action-landing .lm-action-section .is-style-outline .wp-block-button__link {
  border-color: var(--green);
  background: transparent;
  color: var(--green);
  box-shadow: none;
}

.current-action-landing .lm-action-section {
  padding: 110px 28px;
}

.current-action-landing .lm-action-section > *,
.current-action-landing .lm-action-note-section > * {
  max-width: 1240px;
  margin-right: auto;
  margin-left: auto;
}

.lm-action-offer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, .8fr);
  gap: 42px;
  align-items: center;
}

.current-action-landing h2 {
  margin: 0 0 20px;
  font-size: clamp(34px, 4vw, 62px);
  line-height: 1.02;
}

.current-action-landing .lead {
  color: var(--muted);
  font-size: 21px;
  line-height: 1.55;
}

.lm-action-service-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 13px 22px;
  margin: 34px 0 0;
  padding: 0;
  list-style: none;
}

.lm-action-service-list li {
  position: relative;
  padding-left: 28px;
  color: var(--ink);
  font-weight: 800;
  line-height: 1.45;
}

.lm-action-service-list li::before {
  content: "";
  position: absolute;
  top: .58em;
  left: 0;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--green);
}

.lm-action-offer-box {
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: var(--white);
  box-shadow: var(--shadow-strong);
}

.lm-action-price-label {
  margin: 0 0 8px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.lm-action-price {
  margin: 0 0 22px;
  color: var(--green);
  font-size: clamp(32px, 4vw, 54px);
  line-height: 1;
}

.lm-action-price-subline {
  margin: 0 0 28px;
  color: var(--ink);
  font-size: 18px;
  font-weight: 800;
  line-height: 1.5;
}

.lm-action-offer-box ul {
  display: grid;
  gap: 12px;
  margin: 0 0 28px;
  padding: 0;
  list-style: none;
}

.lm-action-offer-box li {
  position: relative;
  padding-left: 28px;
  font-weight: 800;
}

.lm-action-offer-box li::before {
  content: "";
  position: absolute;
  top: .62em;
  left: 0;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--green);
}

.lm-action-benefits-section {
  background: var(--soft);
}

.lm-action-benefit-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
  margin-top: 42px;
  align-items: stretch;
  place-items: stretch;
  grid-auto-rows: 1fr;
}

.current-action-landing .benefits-grid {
  display: grid;
  align-items: stretch;
  place-items: stretch;
  grid-auto-rows: 1fr;
}

.lm-action-benefit-card,
.current-action-landing .benefit-card {
  height: 100%;
  min-height: 0;
  display: flex;
  flex-direction: column;
  align-self: stretch;
  justify-content: flex-start;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--white);
  box-shadow: var(--shadow);
  transition: transform .2s ease, box-shadow .2s ease;
}

.lm-action-benefit-grid > .lm-action-benefit-card,
.current-action-landing .benefits-grid > .benefit-card {
  margin-top: 0 !important;
  margin-block-start: 0 !important;
  align-self: stretch;
  box-sizing: border-box;
  min-height: 100%;
}

.current-action-landing .lm-action-benefit-grid > *,
.current-action-landing .benefits-grid > *,
.current-action-landing .lm-action-benefit-grid > * + *,
.current-action-landing .benefits-grid > * + * {
  margin-top: 0 !important;
  margin-block-start: 0 !important;
}

.lm-action-benefit-card:hover,
.current-action-landing .benefit-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-strong);
}

.lm-action-benefit-card > .lm-icon,
.current-action-landing .benefit-card > .lm-icon {
  width: 38px;
  height: 38px;
  margin-bottom: 22px;
  padding: 12px;
  box-sizing: content-box;
  border-radius: 999px;
  background: rgba(107, 180, 47, .12);
  color: var(--green);
}

.lm-action-benefit-card h3,
.current-action-landing .benefit-card h3 {
  margin: 0 0 10px;
  font-size: 23px;
}

.lm-action-benefit-card p,
.current-action-landing .benefit-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.lm-action-benefit-card .lm-action-card-icon {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0 0 22px;
  border-radius: 999px;
  background: rgba(107, 180, 47, .12);
  color: var(--green);
  font-size: 13px;
  font-weight: 900;
  line-height: 1;
}

.lm-action-step-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
  margin-top: 42px;
  align-items: stretch;
  place-items: stretch;
  grid-auto-rows: 1fr;
}

.lm-action-step-card {
  height: 100%;
  min-height: 0;
  display: flex;
  flex-direction: column;
  align-self: stretch;
  justify-content: flex-start;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.lm-action-step-grid > .lm-action-step-card {
  margin-top: 0 !important;
  margin-block-start: 0 !important;
  align-self: stretch;
  box-sizing: border-box;
  min-height: 100%;
}

.current-action-landing .lm-action-step-grid > *,
.current-action-landing .lm-action-step-grid > * + * {
  margin-top: 0 !important;
  margin-block-start: 0 !important;
}

.lm-action-step-number {
  width: 46px;
  height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0 0 22px;
  border-radius: 999px;
  background: rgba(107, 180, 47, .12);
  color: var(--green);
  font-weight: 900;
}

.lm-action-step-card h3 {
  margin: 0 0 10px;
  font-size: 22px;
}

.lm-action-step-card p:not(.lm-action-step-number) {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.lm-action-contact-section .form-box {
  max-width: 960px;
  margin: 38px auto 28px;
}

.lm-website-offer-form .form-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.lm-action-note-section {
  padding: 34px 28px 78px;
  color: var(--muted);
}

@media (max-width: 980px) {
  .current-action-landing .lm-action-hero-layout {
    flex-direction: column;
  }

  .current-action-landing .lm-action-hero-panel,
  .current-action-landing .lm-action-monitor-column {
    flex-basis: auto !important;
    width: 100%;
  }

  .lm-action-offer-grid,
  .lm-action-benefit-grid,
  .lm-action-step-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 760px) {
  .nav-action-icon {
    width: 20px;
    height: 20px;
  }

  .current-action-landing .lm-action-hero {
    min-height: 82vh;
    padding: 92px 22px 76px;
  }

  .current-action-landing .lm-action-hero::after {
    background: linear-gradient(rgba(0, 0, 0, .44), rgba(0, 0, 0, .28));
  }

  .current-action-landing .lm-action-hero h1 {
    font-size: clamp(42px, 14vw, 62px);
  }

  .lm-action-hero-text {
    font-size: 19px;
  }

  .lm-action-hero-price {
    font-size: clamp(32px, 10vw, 46px);
  }

  .current-action-landing .lm-action-section {
    padding: 74px 22px;
  }

  .lm-action-offer-grid,
  .lm-action-benefit-grid,
  .lm-action-step-grid,
  .lm-action-service-list,
  .lm-website-offer-form .form-grid {
    grid-template-columns: 1fr;
  }

  .lm-action-offer-box,
  .lm-action-benefit-card,
  .lm-action-step-card {
    padding: 24px;
  }
}
