:root {
  --lb-bg: #fffdf8;
  --lb-surface: #f3f4eb;
  --lb-surface-2: #eef0e3;
  --lb-text: #17392d;
  --lb-muted: #5c6f66;
  --lb-accent: #cde541;
  --lb-accent-2: #12592b;
  --lb-accent-3: #0d4a24;
  --lb-border: rgba(18, 89, 43, 0.12);
  --lb-shadow: 0 18px 48px rgba(27, 49, 36, 0.08);
  --lb-radius: 24px;
  --lb-shell: 1280px;
}

html {
  scroll-behavior: smooth;
}

body.lb-envato-site {
  background: #fff;
  color: var(--lb-text);
  font-family: "Bricolage Grotesque", "Inter", sans-serif;
}

.lb-shell {
  width: min(calc(100% - 32px), var(--lb-shell));
  margin: 0 auto;
}

.lb-main {
  display: block;
}

.lb-section {
  padding: 72px 0;
}

.lb-section--soft {
  background: var(--lb-bg);
}

.lb-button,
.lb-link-action,
.lb-site-nav a,
.lb-mobile-nav a {
  transition: color 0.2s ease, background-color 0.2s ease, border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.lb-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 14px;
  border: 1px solid transparent;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
}

.lb-button:hover {
  transform: translateY(-1px);
}

.lb-button--primary {
  background: var(--lb-accent-2);
  color: #fff;
}

.lb-button--accent {
  background: var(--lb-accent);
  color: var(--lb-accent-3);
}

.lb-button--ghost,
.lb-button--ghost-light {
  background: transparent;
  color: inherit;
}

.lb-button--ghost {
  border-color: var(--lb-border);
}

.lb-button--ghost-light {
  border-color: rgba(255, 255, 255, 0.2);
  color: #fff;
}

.lb-link-action {
  color: var(--lb-accent-2);
  font-weight: 700;
}

.lb-link-action--light {
  color: #fff;
}

.lb-link-action:hover {
  color: var(--lb-accent-3);
}

.lb-eyebrow {
  margin: 0 0 14px;
  color: var(--lb-accent-2);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.lb-section-heading {
  max-width: 700px;
  margin-bottom: 34px;
}

.lb-section-heading.is-centered,
.lb-page-hero .lb-section-heading {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.lb-section-heading--split {
  max-width: none;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
}

.lb-section-heading h2,
.lb-page-hero h2 {
  margin: 0;
  font-size: clamp(34px, 4vw, 58px);
  line-height: 1.03;
  letter-spacing: -0.03em;
}

.lb-section-heading p:last-child {
  margin-top: 16px;
  color: var(--lb-muted);
  font-size: 18px;
  line-height: 1.7;
}

.lb-site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
}

.lb-site-header.is-sticky {
  box-shadow: 0 10px 40px rgba(16, 44, 29, 0.08);
  border-color: rgba(16, 44, 29, 0.06);
}

.lb-site-header__inner {
  display: flex;
  align-items: center;
  gap: 28px;
  min-height: 78px;
}

.lb-site-brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
}

.lb-site-brand img {
  width: auto;
  max-width: 126px;
  max-height: 120px;
}

.lb-site-nav {
  flex: 1 1 auto;
}

.lb-site-nav__list,
.lb-mobile-nav__list,
.lb-site-submenu,
.lb-mobile-submenu,
.lb-check-list,
.lb-site-footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.lb-site-nav__list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 26px;
}

.lb-site-nav__item,
.lb-mobile-nav__item {
  position: relative;
}

.lb-site-nav__item.has-children {
  padding-bottom: 18px;
  margin-bottom: -18px;
}

.lb-site-nav a,
.lb-mobile-nav a {
  display: inline-flex;
  align-items: center;
  color: var(--lb-text);
  font-size: 15px;
  font-weight: 700;
}

.lb-site-nav__item.is-active > a,
.lb-site-submenu li.is-active > a,
.lb-mobile-nav__item.is-active > a {
  color: var(--lb-accent-2);
}

.lb-site-header__ctas {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-left: auto;
  flex: 0 0 auto;
}

.lb-phone-pill {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  min-height: 48px;
  padding: 8px 16px;
  border-radius: 14px;
  background: var(--lb-surface);
  color: var(--lb-text);
  line-height: 1.1;
}

.lb-phone-pill span {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--lb-muted);
}

.lb-phone-pill strong {
  font-size: 14px;
}

.lb-site-submenu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 240px;
  padding: 18px 14px 14px;
  background: #fff;
  border: 1px solid var(--lb-border);
  border-radius: 16px;
  box-shadow: var(--lb-shadow);
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
}

.lb-site-nav__item.has-children:hover > .lb-site-submenu,
.lb-site-nav__item.has-children:focus-within > .lb-site-submenu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.lb-site-submenu li + li,
.lb-mobile-submenu li + li {
  margin-top: 10px;
}

.lb-submenu-toggle,
.lb-mobile-toggle {
  display: none;
  border: 0;
  background: transparent;
}

.lb-home-hero {
  padding: 24px 0 40px;
}

.lb-home-hero__slider {
  position: relative;
  min-height: 640px;
  border-radius: 28px;
  overflow: hidden;
}

.lb-home-hero__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  background-position: center;
  background-size: cover;
  transition: opacity 0.45s ease;
}

.lb-home-hero__slide.is-active {
  opacity: 1;
  pointer-events: auto;
}

.lb-home-hero__panel {
  position: relative;
  min-height: 640px;
  padding: 88px 60px 54px;
  overflow: hidden;
}

.lb-home-hero__panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(14, 53, 30, 0.58) 0%, rgba(14, 53, 30, 0.24) 45%, rgba(14, 53, 30, 0.08) 100%);
}

.lb-home-hero__content {
  position: relative;
  max-width: 620px;
  color: #fff;
  text-shadow: 0 10px 30px rgba(7, 25, 14, 0.22);
}

.lb-home-hero__content h1,
.lb-home-hero__content h2,
.lb-home-hero__content p,
.lb-home-hero__content .lb-eyebrow,
.lb-home-hero__content a {
  color: #fff;
}

.lb-home-hero__content h1,
.lb-home-hero__content h2 {
  margin: 0;
  font-size: clamp(44px, 6vw, 78px);
  line-height: 0.98;
  letter-spacing: -0.04em;
}

.lb-home-hero__content p:not(.lb-eyebrow) {
  margin-top: 18px;
  font-size: 18px;
  line-height: 1.7;
}

.lb-home-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.lb-home-hero__nav {
  position: absolute;
  right: 28px;
  bottom: 26px;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 12px;
}

.lb-home-hero__arrow {
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--lb-accent-2);
  box-shadow: var(--lb-shadow);
}

.lb-home-hero__dots {
  display: flex;
  gap: 10px;
}

.lb-home-hero__dots button {
  width: 12px;
  height: 12px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.55);
}

.lb-home-hero__dots button.is-active {
  background: var(--lb-accent);
}

.lb-trust-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 18px;
}

.lb-trust-strip__item {
  padding: 18px 20px;
  border-radius: 18px;
  background: #fff;
  box-shadow: var(--lb-shadow);
  color: var(--lb-text);
  font-weight: 700;
  text-align: center;
}

.lb-about-split,
.lb-form-split,
.lb-service-layout,
.lb-contact-grid {
  display: grid;
  gap: 32px;
}

.lb-about-split {
  grid-template-columns: minmax(0, 1fr) 520px;
  align-items: center;
}

.lb-about-split__feature {
  display: grid;
  gap: 18px;
}

.lb-feature-card {
  padding: 20px;
  border-radius: 28px;
  background: var(--lb-surface);
  text-align: center;
}

.lb-feature-card img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 26px;
}

.lb-feature-card .lb-button {
  margin-top: 14px;
}

.lb-about-split__notes {
  display: grid;
  gap: 10px;
}

.lb-about-split__notes div {
  padding: 16px 18px;
  border-bottom: 1px solid rgba(23, 57, 45, 0.1);
}

.lb-about-split__notes strong {
  display: block;
  margin-bottom: 6px;
  color: var(--lb-text);
}

.lb-about-split__notes span {
  color: var(--lb-muted);
  line-height: 1.6;
}

.lb-home-story {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 380px 260px;
  gap: 28px;
  align-items: center;
}

.lb-home-story__notes {
  display: grid;
  gap: 12px;
}

.lb-home-story__notes div {
  padding: 14px 0;
  border-bottom: 1px solid rgba(23, 57, 45, 0.1);
}

.lb-home-story__notes strong {
  display: block;
  margin-bottom: 6px;
  color: var(--lb-text);
}

.lb-home-story__notes span {
  color: var(--lb-muted);
  line-height: 1.7;
}

.lb-feature-card--hero {
  position: relative;
  padding: 18px;
}

.lb-feature-card--hero::before {
  content: "";
  position: absolute;
  left: -24px;
  top: 34px;
  width: 88px;
  height: 120px;
  border-radius: 0 88px 88px 0;
  background: linear-gradient(180deg, rgba(205, 229, 65, 0.24), rgba(205, 229, 65, 0.62));
  z-index: 0;
}

.lb-feature-card--hero img,
.lb-feature-card--hero .lb-button {
  position: relative;
  z-index: 1;
}

.lb-panel {
  padding: 44px 36px;
  border-radius: 28px;
  background: var(--lb-bg);
}

.lb-scroll-wrap {
  position: relative;
}

.lb-rail-nav {
  position: absolute;
  top: 50%;
  z-index: 3;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 999px;
  background: #fff;
  box-shadow: var(--lb-shadow);
  color: var(--lb-accent-2);
  transform: translateY(-50%);
}

.lb-rail-nav--prev {
  left: -18px;
}

.lb-rail-nav--next {
  right: -18px;
}

.lb-about-split__media img,
.lb-service-media img,
.lb-post-single__image img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 28px;
}

.lb-check-list li {
  position: relative;
  padding-left: 26px;
  color: var(--lb-muted);
  line-height: 1.75;
}

.lb-check-list li + li {
  margin-top: 10px;
}

.lb-check-list li::before {
  content: "•";
  position: absolute;
  left: 6px;
  color: var(--lb-accent-2);
  font-size: 20px;
}

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

.lb-service-rail {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
}

.lb-service-rail--grid {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.lb-service-card,
.lb-project-card,
.lb-review-card,
.lb-post-card,
.lb-step-card,
.lb-contact-card,
.lb-content-card,
.lb-side-card {
  background: #fff;
  border: 1px solid var(--lb-border);
  border-radius: 22px;
  box-shadow: var(--lb-shadow);
}

.lb-service-card {
  overflow: hidden;
}

.lb-service-card--envato {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 460px;
  padding: 18px;
  border-radius: 26px;
  background: var(--lb-accent);
  box-shadow: none;
}

.lb-service-card__image img,
.lb-project-card__image img,
.lb-post-card__image img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.lb-service-card__body,
.lb-project-card__body,
.lb-review-card,
.lb-post-card__body,
.lb-contact-card,
.lb-content-card,
.lb-side-card {
  padding: 22px;
}

.lb-service-card--envato .lb-service-card__top {
  min-height: 148px;
}

.lb-service-card--envato .lb-service-card__image {
  display: block;
  margin-top: 18px;
}

.lb-service-card--envato .lb-service-card__image img {
  border-radius: 140px 140px 18px 18px;
  aspect-ratio: 4 / 5;
}

.lb-service-card--envato .lb-service-card__link {
  display: inline-flex;
  margin-top: 16px;
  font-weight: 700;
  color: var(--lb-accent-3);
}

.lb-service-card h3,
.lb-project-card h3,
.lb-review-card h3,
.lb-post-card h3,
.lb-step-card h3,
.lb-contact-card h3 {
  margin: 0 0 10px;
  font-size: 24px;
  line-height: 1.1;
}

.lb-service-card p,
.lb-project-card p,
.lb-review-card p,
.lb-post-card p,
.lb-step-card p,
.lb-contact-card p,
.lb-content-card,
.lb-side-card,
.lb-admin-note {
  color: var(--lb-muted);
  line-height: 1.75;
}

.lb-content-card,
.lb-side-card {
  font-size: 16px;
}

.lb-content-card h2,
.lb-content-card h3,
.lb-side-card h2,
.lb-side-card h3 {
  margin-top: 0;
  color: var(--lb-text);
}

.lb-content-card ul,
.lb-content-card ol {
  padding-left: 22px;
}

.lb-service-card a:last-child,
.lb-post-card h3 a {
  color: var(--lb-accent-2);
  font-weight: 700;
}

.lb-benefit-wheel {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: center;
  gap: 24px;
}

.lb-benefit-wheel__center {
  grid-row: span 2;
}

.lb-benefit-wheel__center img {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 50%;
  border: 18px solid var(--lb-surface);
}

.lb-benefit-wheel__item {
  padding: 22px 20px;
  border-radius: 20px;
  background: var(--lb-surface);
  text-align: center;
  font-weight: 700;
}

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

.lb-step-card {
  padding: 24px;
}

.lb-step-card strong {
  display: inline-flex;
  width: 34px;
  height: 34px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: var(--lb-accent);
  color: var(--lb-accent-3);
  font-size: 15px;
}

.lb-project-row,
.lb-review-grid,
.lb-post-grid,
.lb-city-grid,
.lb-contact-grid {
  display: grid;
  gap: 20px;
}

.lb-project-row {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.lb-project-row--featured {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.lb-review-grid,
.lb-post-grid,
.lb-contact-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.lb-review-card__stars {
  color: #f4a628;
  letter-spacing: 0.22em;
  font-size: 14px;
}

.lb-review-card__meta,
.lb-post-card__meta,
.lb-project-card__body p {
  margin: 0 0 8px;
  color: var(--lb-accent-2);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.lb-area-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 34px;
  border-radius: 24px;
  background: linear-gradient(135deg, var(--lb-accent-3) 0%, var(--lb-accent-2) 100%);
  color: #fff;
}

.lb-area-banner h2,
.lb-form-split__copy h2,
.lb-form-split__copy-box h2 {
  margin: 0 0 12px;
  color: inherit;
}

.lb-area-banner p,
.lb-form-split__copy p,
.lb-form-split__copy-box p {
  margin: 0;
  color: rgba(255, 255, 255, 0.86);
}

.lb-area-banner__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.lb-form-split {
  grid-template-columns: 1.05fr 0.95fr;
  align-items: stretch;
}

.lb-form-split__media {
  min-height: 640px;
  padding: 46px;
  border-radius: 26px;
  background-position: center;
  background-size: cover;
  position: relative;
  overflow: hidden;
}

.lb-form-split__media::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(13, 74, 36, 0.82), rgba(13, 74, 36, 0.32));
}

.lb-form-split__copy {
  position: relative;
  max-width: 420px;
  color: #fff;
}

.lb-form-split__form .lb-form-card,
.lb-form-split--plain .lb-form-card {
  height: 100%;
  margin: 0;
}

.lb-form-split--plain {
  grid-template-columns: 380px minmax(0, 1fr);
}

.lb-form-split__copy-box {
  padding: 28px;
  border-radius: 22px;
  background: var(--lb-surface);
}

.lb-form-split__copy-box h2 {
  color: var(--lb-text);
}

.lb-form-split__copy-box p {
  color: var(--lb-muted);
}

.lb-form-split__copy-box .lb-button--ghost {
  color: var(--lb-accent-2);
}

.lb-page-hero {
  padding: 58px 0 38px;
}

.lb-gallery-shell {
  display: block;
}

.lb-gallery-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  justify-content: center;
  padding: 18px 0 30px;
  border-top: 1px solid rgba(23, 57, 45, 0.08);
}

.lb-gallery-filters button {
  padding: 0 0 10px;
  border: 0;
  border-bottom: 2px solid transparent;
  background: transparent;
  color: var(--lb-text);
  font-size: 16px;
  font-weight: 700;
}

.lb-gallery-filters button.is-active {
  color: var(--lb-accent-2);
  border-color: var(--lb-accent-2);
}

.lb-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 30px 24px;
  align-items: start;
}

.lb-project-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  box-shadow: none;
  border: 0;
  background: transparent;
}

.lb-project-card__image {
  display: block;
  overflow: hidden;
  border-radius: 22px;
  background: var(--lb-surface);
}

.lb-project-card__image img {
  border-radius: 22px;
  height: 420px;
  aspect-ratio: auto;
}

.lb-project-card__body {
  padding: 18px 0 0;
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
}

.lb-project-card__body h3 {
  font-size: 30px;
  min-height: 2.3em;
}

.lb-project-card[hidden] {
  display: none !important;
}

.lb-content-card--narrow,
.lb-post-single .lb-content-card {
  max-width: 900px;
  margin: 0 auto;
}

.lb-content-card--transparent {
  background: transparent;
  box-shadow: none;
  border: 0;
  padding: 0;
}

.lb-service-layout {
  grid-template-columns: minmax(0, 1fr) 320px;
}

.lb-service-layout__main {
  display: grid;
  gap: 24px;
}

.lb-side-card {
  position: sticky;
  top: 116px;
}

.lb-contact-grid {
  margin-bottom: 24px;
}

.lb-city-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin: 28px 0 34px;
}

.lb-city-pill {
  padding: 14px 18px;
  border: 1px solid var(--lb-border);
  border-radius: 999px;
  text-align: center;
  font-weight: 700;
}

.lb-post-single__image {
  max-width: 900px;
  margin: 0 auto 24px;
}

.lb-post-single__image img {
  border-radius: 24px;
}

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

.lb-admin-note {
  margin-top: 18px;
}

.lb-site-footer {
  padding: 36px 0 28px;
}

.lb-site-footer .lb-shell {
  padding: 34px;
  border-radius: 24px;
  background: #0f5e1f;
  color: #fff;
}

.lb-site-footer__top {
  display: grid;
  grid-template-columns: 1.2fr repeat(3, 1fr);
  gap: 28px;
}

.lb-site-footer__brand img {
  max-width: 160px;
  margin-bottom: 16px;
}

.lb-site-footer__brand h2,
.lb-site-footer__column h3 {
  color: #fff;
}

.lb-site-footer__brand p,
.lb-site-footer__column li,
.lb-site-footer__column a,
.lb-site-footer__bottom p {
  color: rgba(255, 255, 255, 0.86);
}

.lb-site-footer__column ul li + li,
.lb-site-footer__brand p {
  margin-top: 10px;
}

.lb-site-footer__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

.lb-site-footer__bottom {
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.lb-mobile-nav {
  padding: 0 0 20px;
  border-top: 1px solid rgba(23, 57, 45, 0.08);
  background: #fff;
}

.lb-mobile-nav__item + .lb-mobile-nav__item {
  margin-top: 14px;
}

.lb-mobile-nav__item.has-children {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 12px;
}

.lb-mobile-nav__item.has-children > .lb-mobile-submenu {
  grid-column: 1 / -1;
}

.lb-mobile-submenu {
  display: none;
  padding: 10px 0 0 18px;
}

.lb-mobile-nav__item.is-open > .lb-mobile-submenu {
  display: block;
}

.lb-mobile-nav__actions {
  display: grid;
  gap: 12px;
  margin-top: 22px;
}

.lb-honeypot {
  position: absolute;
  left: -9999px;
}

.lb-form-card {
  padding: 30px;
  border-radius: 24px;
  background: #fff;
  border: 1px solid var(--lb-border);
  box-shadow: var(--lb-shadow);
}

.lb-form-card__intro h2 {
  margin: 0 0 10px;
}

.lb-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 18px;
}

.lb-form-grid__full {
  grid-column: 1 / -1;
}

.lb-form-card label span {
  display: block;
  margin-bottom: 8px;
  font-size: 14px;
  font-weight: 700;
  color: var(--lb-text);
}

.lb-form-card input,
.lb-form-card select,
.lb-form-card textarea {
  width: 100%;
  border: 1px solid rgba(23, 57, 45, 0.12);
  border-radius: 14px;
  background: #fff;
  padding: 14px 16px;
  color: var(--lb-text);
}

.lb-form-status {
  margin-top: 16px;
  padding: 14px 16px;
  border-radius: 14px;
}

.lb-form-status--success {
  background: rgba(205, 229, 65, 0.22);
  color: var(--lb-accent-3);
}

.lb-form-status--error {
  background: rgba(180, 50, 50, 0.08);
  color: #8b2323;
}

.lb-form-card small {
  display: block;
  margin-top: 6px;
  color: #8b2323;
}

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

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

  .lb-site-nav,
  .lb-phone-pill,
  .lb-site-header__ctas > .lb-button {
    display: none;
  }

  .lb-mobile-toggle {
    display: inline-flex;
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: var(--lb-accent-2);
    box-shadow: 0 14px 28px rgba(18, 89, 43, 0.18);
  }

  .lb-mobile-nav .lb-submenu-toggle {
    display: inline-flex;
    width: 38px;
    height: 38px;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: var(--lb-surface);
    color: var(--lb-accent-2);
  }

  .lb-mobile-nav .lb-submenu-toggle::before {
    content: "+";
    font-size: 22px;
    line-height: 1;
  }

  .lb-mobile-nav__item.is-open > .lb-submenu-toggle::before {
    content: "−";
  }

  .lb-mobile-toggle span:not(.screen-reader-text) {
    display: block;
    width: 18px;
    height: 2px;
    margin: 2.5px 0;
    background: #fff;
  }

  .lb-about-split,
  .lb-home-story,
  .lb-form-split,
  .lb-form-split--plain,
  .lb-service-layout,
  .lb-site-footer__top,
  .lb-city-grid {
    grid-template-columns: 1fr;
  }

  .lb-trust-strip,
  .lb-steps-grid,
  .lb-review-grid,
  .lb-post-grid,
  .lb-contact-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .lb-rail-nav {
    display: none;
  }
}

@media (max-width: 767px) {
  .lb-section,
  .lb-page-hero {
    padding: 54px 0;
  }

  .lb-home-hero {
    padding-top: 18px;
  }

  .lb-site-header__inner {
    min-height: 72px;
    gap: 12px;
    justify-content: space-between;
  }

  .lb-site-brand img {
    max-width: 96px;
    max-height: 56px;
  }

  .lb-home-hero__slider,
  .lb-home-hero__panel {
    min-height: 540px;
  }

  .lb-home-hero__panel {
    padding: 68px 22px 26px;
    border-radius: 22px;
  }

  .lb-home-hero__content h1 {
    font-size: 42px;
  }

  .lb-trust-strip,
  .lb-service-grid,
  .lb-project-row,
  .lb-service-rail,
  .lb-review-grid,
  .lb-post-grid,
  .lb-steps-grid,
  .lb-contact-grid,
  .lb-gallery-grid,
  .lb-form-grid {
    grid-template-columns: 1fr;
  }

  .lb-project-card__image img {
    height: 300px;
  }

  .lb-project-card__body h3 {
    min-height: 0;
  }

  .lb-service-rail,
  .lb-benefit-wheel {
    grid-template-columns: 1fr;
  }

  .lb-benefit-wheel__center {
    grid-row: auto;
    order: -1;
  }

  .lb-section-heading--split,
  .lb-area-banner,
  .lb-home-hero__actions,
  .lb-site-footer__actions,
  .lb-area-banner__actions {
    display: grid;
    justify-content: stretch;
  }

  .lb-gallery-filters {
    justify-content: flex-start;
  }

  .lb-home-hero__nav {
    right: 18px;
    bottom: 18px;
  }

  .lb-home-hero__arrow {
    display: none;
  }

  .lb-form-card {
    padding: 22px;
  }

  .lb-site-footer .lb-shell {
    padding: 24px;
  }
}

/* Final visual tightening */
.lb-section {
  padding: 60px 0;
}

.lb-page-hero {
  padding: 50px 0 24px;
}

.lb-panel {
  padding: 38px 32px;
}

.lb-home-hero__slider,
.lb-home-hero__panel {
  min-height: 590px;
}

.lb-home-hero__panel {
  padding: 78px 56px 48px;
}

.lb-home-hero__content h1,
.lb-home-hero__content h2 {
  font-size: clamp(40px, 5.3vw, 68px);
}

.lb-home-hero__content p:not(.lb-eyebrow) {
  max-width: 560px;
  font-size: 17px;
  line-height: 1.65;
}

.lb-trust-strip__item {
  padding: 16px 18px;
  font-size: 14px;
}

.lb-service-card--envato {
  min-height: 410px;
}

.lb-service-card--envato .lb-service-card__top {
  min-height: 126px;
}

.lb-service-card h3,
.lb-project-card h3,
.lb-review-card h3,
.lb-post-card h3,
.lb-step-card h3,
.lb-contact-card h3 {
  font-size: 23px;
}

.lb-content-card h2,
.lb-content-card h3 {
  margin-bottom: 14px;
}

.lb-content-card p + h2,
.lb-content-card p + h3,
.lb-content-card ul + h2,
.lb-content-card ul + h3 {
  margin-top: 26px;
}

.lb-about-page,
.lb-split-panel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 34px;
  align-items: center;
}

.lb-about-page__text p + p {
  margin-top: 14px;
}

.lb-trust-badges {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 24px;
}

.lb-mini-pill {
  padding: 14px 16px;
  border-radius: 16px;
  background: #fff;
  border: 1px solid var(--lb-border);
  box-shadow: var(--lb-shadow);
  font-weight: 700;
}

.lb-image-stack {
  position: relative;
  padding: 0 0 56px 28px;
}

.lb-image-stack__main,
.lb-image-stack__accent,
.lb-split-panel__media img {
  display: block;
  width: 100%;
  object-fit: cover;
  border-radius: 26px;
}

.lb-image-stack__main {
  aspect-ratio: 4 / 5;
}

.lb-image-stack__accent {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 38%;
  aspect-ratio: 4 / 5;
  border: 8px solid #fff;
  box-shadow: var(--lb-shadow);
}

.lb-image-stack__card {
  position: absolute;
  right: 0;
  bottom: 26px;
  max-width: 270px;
  padding: 20px;
  border-radius: 22px;
  background: #fff;
  border: 1px solid var(--lb-border);
  box-shadow: var(--lb-shadow);
}

.lb-image-stack__card strong,
.lb-value-card h3,
.lb-advantage-card strong {
  display: block;
  margin-bottom: 8px;
  color: var(--lb-text);
}

.lb-image-stack__card span,
.lb-value-card p,
.lb-advantage-card span,
.lb-about-page__text p {
  color: var(--lb-muted);
  line-height: 1.7;
}

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

.lb-value-card {
  padding: 28px 24px;
  border: 1px solid var(--lb-border);
  border-radius: 24px;
  background: #fff;
  box-shadow: var(--lb-shadow);
}

.lb-dark-band {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr auto;
  gap: 28px;
  align-items: center;
  padding: 36px;
  border-radius: 28px;
  background: linear-gradient(135deg, var(--lb-accent-3) 0%, #0f6a28 100%);
  color: #fff;
}

.lb-dark-band h2 {
  margin: 0 0 12px;
  color: #fff;
}

.lb-dark-band p,
.lb-dark-band .lb-check-list li {
  color: rgba(255, 255, 255, 0.88);
}

.lb-dark-band .lb-check-list li::before {
  color: var(--lb-accent);
}

.lb-dark-band__actions {
  display: grid;
  gap: 12px;
}

.lb-advantage-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 34px;
  align-items: start;
}

.lb-advantage-layout__copy {
  position: sticky;
  top: 110px;
}

.lb-advantage-layout__panel {
  display: grid;
  gap: 22px;
}

.lb-advantage-layout__media img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: 28px;
}

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

.lb-advantage-card {
  padding: 22px 20px;
  border-radius: 22px;
  border: 1px solid var(--lb-border);
  background: #fff;
  box-shadow: var(--lb-shadow);
}

.lb-form-split__media {
  min-height: 560px;
}

.lb-form-split__media--service {
  min-height: 100%;
}

.lb-split-panel__media img {
  aspect-ratio: 4 / 3;
}

.lb-contact-card {
  min-height: 120px;
}

.lb-contact-card p,
.lb-contact-card p a {
  color: var(--lb-muted);
}

@media (max-width: 1180px) {
  .lb-about-page,
  .lb-split-panel,
  .lb-advantage-layout,
  .lb-value-grid,
  .lb-dark-band {
    grid-template-columns: 1fr;
  }

  .lb-advantage-layout__copy {
    position: static;
  }

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

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

@media (max-width: 767px) {
  .lb-section,
  .lb-page-hero {
    padding: 44px 0;
  }

  .lb-home-hero__slider,
  .lb-home-hero__panel {
    min-height: 480px;
  }

  .lb-home-hero__panel {
    padding: 56px 20px 22px;
  }

  .lb-home-hero__content h1 {
    font-size: 34px;
  }

  .lb-panel {
    padding: 28px 18px;
  }

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

  .lb-trust-badges,
  .lb-value-grid,
  .lb-advantage-grid,
  .lb-contact-grid,
  .lb-home-story__notes {
    grid-template-columns: 1fr;
  }

  .home .lb-service-grid,
  .home .lb-project-row--featured,
  .home .lb-post-grid {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: 84%;
    gap: 16px;
    overflow-x: auto;
    padding-bottom: 10px;
    scroll-snap-type: x mandatory;
  }

  .home .lb-service-card--envato,
  .home .lb-project-card,
  .home .lb-post-card {
    scroll-snap-align: start;
  }

  .lb-service-card--envato {
    min-height: 372px;
  }

  .lb-service-card--envato .lb-service-card__top {
    min-height: auto;
  }

  .lb-image-stack {
    padding: 0;
  }

  .lb-home-story__feature {
    order: -1;
  }

  .lb-image-stack__card,
  .lb-image-stack__accent {
    position: static;
    width: 100%;
    max-width: none;
    margin-top: 16px;
  }

  .lb-form-split__media {
    min-height: 340px;
    padding: 28px 20px;
  }

  .lb-contact-card {
    min-height: 0;
  }
}

/* Tight pass after 8082 verification */
.lb-page-hero {
  padding: 42px 0 12px;
}

.lb-page-hero + .lb-section,
.lb-page-hero + .lb-section.lb-section--soft {
  padding-top: 18px;
}

.lb-contact-grid {
  gap: 16px;
  margin-bottom: 18px;
}

.lb-contact-card {
  min-height: 96px;
}

.lb-site-footer .lb-shell {
  padding: 28px;
}

.lb-site-footer__brand img {
  max-width: 165px;
  margin-bottom: 14px;
}

.lb-site-footer__brand h2 {
  margin: 0 0 12px;
  font-size: 48px;
  line-height: 0.98;
  letter-spacing: -0.03em;
}

@media (max-width: 767px) {
  .lb-page-hero {
    padding: 34px 0 6px;
  }

  .lb-site-footer__brand h2 {
    font-size: 36px;
  }
}

/* Final consistency pass */
.lb-area-banner__actions .lb-button,
.lb-dark-band__actions .lb-button {
  min-width: 170px;
  justify-content: center;
}

.lb-area-banner__actions .lb-button--ghost,
.lb-dark-band__actions .lb-button--ghost-light {
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.lb-area-banner__actions .lb-button--primary,
.lb-dark-band__actions .lb-button--accent {
  background: var(--lb-accent);
  color: var(--lb-accent-3);
  border-color: transparent;
}

.home .lb-project-row--featured,
.home .lb-post-grid {
  align-items: stretch;
}

.home .lb-project-row--featured .lb-project-card,
.home .lb-post-grid .lb-post-card {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.home .lb-project-row--featured .lb-project-card__image,
.home .lb-post-grid .lb-post-card__image {
  display: block;
  overflow: hidden;
  border-radius: 22px;
  background: var(--lb-surface);
}

.home .lb-project-row--featured .lb-project-card__image img {
  height: clamp(300px, 31vw, 420px);
  aspect-ratio: auto;
}

.home .lb-post-grid .lb-post-card__image img {
  height: clamp(280px, 28vw, 380px);
  aspect-ratio: auto;
}

.home .lb-project-row--featured .lb-project-card__body,
.home .lb-post-grid .lb-post-card__body {
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
}

.home .lb-project-row--featured .lb-project-card__body h3 {
  min-height: 2.45em;
}

.home .lb-post-grid .lb-post-card__body h3 {
  min-height: 3.2em;
  font-size: 22px;
}

.home .lb-post-grid .lb-post-card__body p:not(.lb-post-card__meta) {
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.home .lb-post-grid .lb-post-card__body p:last-child {
  margin-top: auto;
}

@media (max-width: 767px) {
  .home .lb-project-row--featured .lb-project-card__image img,
  .home .lb-post-grid .lb-post-card__image img {
    height: 260px;
  }

  .home .lb-project-row--featured .lb-project-card__body h3,
  .home .lb-post-grid .lb-post-card__body h3 {
    min-height: 0;
  }

  .lb-area-banner__actions .lb-button,
  .lb-dark-band__actions .lb-button {
    min-width: 0;
    width: 100%;
  }
}
