@charset "UTF-8";
@font-face {
  font-family: "Grift";
  src: url("./assets/Grift-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "JustSans";
  src: url("./assets/JUST Sans Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  background: #e5ded6;
}

body {
  font-family: "JustSans";
  background: #e5ded6;
  color: #1a1714;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

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

li {
  list-style: none;
}

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 56px;
  transition: background 0.35s, border-bottom 0.35s;
}
.nav.scrolled {
  background: rgba(229, 222, 214, 0.93);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid #b4aca4;
}
.nav__logo {
  width: 10%;
  height: 10%;
  cursor: pointer;
}
.nav__links {
  display: flex;
  gap: 36px;
}
.nav__links li {
  opacity: 0;
  transform: translateY(-8px);
}
.nav__links a {
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #565656;
  position: relative;
  transition: color 0.2s;
}
.nav__links a::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  height: 1px;
  width: 0;
  background: #669b90;
  transition: width 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.nav__links a:hover {
  color: #1a1714;
}
.nav__links a:hover::after {
  width: 100%;
}
.nav__cta {
  opacity: 0;
  transform: translateY(-8px);
}
.nav__cta a {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #f4f0eb;
  background: #669b90;
  padding: 9px 20px;
  border-radius: 2px;
  transition: background 0.2s, transform 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}
.nav__cta a:hover {
  background: #4a7a70;
  transform: translateY(-1px);
}

.nav-overlay {
  position: fixed;
  inset: 0;
  background: #e5ded6;
  z-index: 99;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 28px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}
.nav-overlay.open {
  opacity: 1;
  pointer-events: all;
}
.nav-overlay a {
  font-family: "JustSans";
  font-size: clamp(28px, 5vw, 44px);
  font-weight: 300;
  color: #1a1714;
  letter-spacing: -0.01em;
  transition: color 0.2s;
}
.nav-overlay a:hover {
  color: #669b90;
}

.nav-mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
}
.nav-mobile-toggle span {
  display: block;
  width: 22px;
  height: 1px;
  background: #1a1714;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s;
}
.nav-mobile-toggle.open span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}
.nav-mobile-toggle.open span:nth-child(2) {
  opacity: 0;
}
.nav-mobile-toggle.open span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.page {
  display: none;
}
.page.active {
  display: block;
}

.wrap {
  max-width: 1380px;
  margin: 0 auto;
}

.section-label {
  font-family: "JustSans";
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #4a7a70;
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}
.section-label::before {
  content: "";
  width: 18px;
  height: 1px;
  background: #669b90;
  flex-shrink: 0;
}

.h-rule {
  height: 1px;
  background: #b4aca4;
  transform-origin: left;
}

.hero {
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: calc(68px + 32px) 56px 64px;
  position: relative;
  overflow: hidden;
  background: #e5ded6;
}
.hero__content {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 48px;
  align-items: end;
}
.hero__tag {
  font-family: "JustSans";
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #4a7a70;
  margin-bottom: 28px;
  opacity: 0;
  transform: translateY(10px);
  display: flex;
  align-items: center;
  gap: 12px;
}
.hero__tag::before {
  content: "";
  width: 16px;
  height: 1px;
  background: #669b90;
}
.hero__headline {
  font-family: "JustSans";
  font-size: clamp(32px, 3.8vw, 58px);
  font-weight: 300;
  line-height: 1.08;
  letter-spacing: -0.025em;
  color: #1a1714;
  margin-bottom: 32px;
  max-width: 18ch;
}
.hero__headline .word {
  display: inline-block;
  overflow: hidden;
  vertical-align: bottom;
}
.hero__headline .word span {
  display: block;
  transform: translateY(110%);
  opacity: 0;
}
.hero__headline em {
  font-style: italic;
  font-family: "Grift";
  color: #669b90;
  font-weight: 400;
}
.hero__sub {
  font-family: "JustSans";
  font-size: 15px;
  font-weight: 300;
  line-height: 1.75;
  color: #565656;
  max-width: 44ch;
  opacity: 0;
  transform: translateY(14px);
  margin-bottom: 36px;
}
.hero__cta-row {
  display: flex;
  align-items: center;
  gap: 24px;
  opacity: 0;
  transform: translateY(14px);
}
.hero__cta-btn {
  font-family: "JustSans";
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #f4f0eb;
  background: #669b90;
  padding: 12px 28px;
  border-radius: 2px;
  transition: background 0.2s, transform 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.hero__cta-btn::after {
  content: "↗";
  font-size: 12px;
}
.hero__cta-btn:hover {
  background: #4a7a70;
  transform: translateY(-1px);
}
.hero__cta-link {
  font-family: "JustSans";
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #565656;
  border-bottom: 1px solid #b4aca4;
  padding-bottom: 2px;
  transition: color 0.2s, border-color 0.2s;
}
.hero__cta-link:hover {
  color: #669b90;
  border-color: #669b90;
}
.hero__right {
  display: flex;
  flex-direction: column;
  gap: 28px;
  padding-bottom: 4px;
}
.hero__stat {
  text-align: right;
  border-top: 1px solid #b4aca4;
  padding-top: 16px;
  min-width: 160px;
}
.hero__stat-num {
  font-family: "JustSans";
  font-size: 28px;
  font-weight: 200;
  letter-spacing: -0.03em;
  color: #1a1714;
  line-height: 1;
  margin-bottom: 6px;
}
.hero__stat-num em {
  font-style: normal;
  color: #669b90;
}
.hero__stat-label {
  font-family: "JustSans";
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #9a9490;
  line-height: 1.5;
}
.hero__scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0;
}
.hero__scroll-hint span {
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #9a9490;
}
.hero__scroll-hint-line {
  width: 1px;
  height: 40px;
  background: #b4aca4;
  position: relative;
  overflow: hidden;
}
.hero__scroll-hint-line::after {
  content: "";
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: #669b90;
  animation: scroll-drop 2.2s cubic-bezier(0.85, 0, 0.15, 1) infinite 1.5s;
}

@keyframes scroll-drop {
  0% {
    top: -100%;
  }
  50% {
    top: 0%;
  }
  100% {
    top: 100%;
  }
}
.marquee-band {
  overflow: hidden;
  padding: 13px 0;
  background: #669b90;
}
.marquee-band__track {
  display: flex;
  width: -moz-max-content;
  width: max-content;
  animation: marquee 38s linear infinite;
}
.marquee-band__item {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 0 32px;
  font-family: "JustSans";
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #f4f0eb;
  white-space: nowrap;
}
.marquee-band__item::after {
  content: "×";
  color: rgba(244, 240, 235, 0.4);
  font-size: 9px;
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
.reality {
  padding: 120px 56px;
  background: #e5ded6;
  border-top: 1px solid #b4aca4;
}
.reality__inner {
  max-width: 1380px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.reality__heading {
  font-family: "JustSans";
  font-size: clamp(26px, 3.2vw, 48px);
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: #1a1714;
  margin-bottom: 24px;
  max-width: 16ch;
}
.reality__heading em {
  font-style: italic;
  font-family: "Grift";
  color: #669b90;
}
.reality__body {
  font-family: "JustSans";
  font-size: 15px;
  font-weight: 300;
  line-height: 1.8;
  color: #565656;
  max-width: 38ch;
}
.reality__right {
  padding-top: 4px;
  display: flex;
  flex-direction: column;
  gap: 48px;
}
.reality__col-label {
  font-family: "JustSans";
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #9a9490;
  margin-bottom: 12px;
  padding-bottom: 10px;
  border-bottom: 1px solid #b4aca4;
}
.reality__have-list li {
  font-family: "JustSans";
  font-size: 17px;
  font-weight: 300;
  color: #cbc3ba;
  border-bottom: 1px solid #b4aca4;
  padding: 14px 0;
  display: flex;
  align-items: center;
  gap: 12px;
  transition: color 0.4s, padding-left 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}
.reality__have-list li::before {
  content: "✓";
  font-size: 10px;
  color: #669b90;
  flex-shrink: 0;
  opacity: 0;
  transition: opacity 0.4s;
}
.reality__have-list li.is-active {
  color: #2e2926;
  padding-left: 6px;
}
.reality__have-list li.is-active::before {
  opacity: 1;
}
.reality__problem-list li {
  font-family: "JustSans";
  font-size: 14px;
  font-weight: 300;
  color: #565656;
  border-bottom: 1px solid #b4aca4;
  padding: 16px 0;
  display: flex;
  gap: 12px;
  line-height: 1.55;
}
.reality__problem-list li::before {
  content: "→";
  color: #669b90;
  flex-shrink: 0;
  font-size: 12px;
  margin-top: 1px;
}

.services {
  padding: 120px 56px;
  background: #ddd6cd;
  border-top: 1px solid #b4aca4;
}
.services__inner {
  max-width: 1380px;
  margin: 0 auto;
}
.services__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 72px;
  gap: 48px;
  flex-wrap: wrap;
}
.services__heading {
  font-family: "JustSans";
  font-size: clamp(22px, 3vw, 42px);
  font-weight: 300;
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: #1a1714;
  margin-top: 12px;
}
.services__heading em {
  font-style: italic;
  font-family: "Grift";
  color: #669b90;
}
.services__intro {
  font-family: "JustSans";
  font-size: 14px;
  font-weight: 300;
  line-height: 1.8;
  color: #565656;
  max-width: 36ch;
  align-self: flex-end;
}
.services__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
}
.services__card {
  background: #e5ded6;
  padding: 48px 44px;
  position: relative;
  cursor: pointer;
  overflow: hidden;
  transition: background 0.3s;
}
.services__card::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: #669b90;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}
.services__card:hover {
  background: #f4f0eb;
}
.services__card:hover::after {
  transform: scaleX(1);
}
.services__card:hover .services__card-num {
  color: #669b90;
}
.services__card:hover .services__card-arrow {
  opacity: 1;
  transform: translate(3px, -3px);
}
.services__card:hover .services__card-list li::before {
  color: #669b90;
}
.services__card:hover .services__card-tags span {
  border-color: #8fb8b0;
  color: #4a7a70;
}
.services__card-arrow {
  position: absolute;
  top: 44px;
  right: 44px;
  font-size: 15px;
  color: #669b90;
  opacity: 0;
  transition: opacity 0.3s, transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.services__card-num {
  font-family: "JustSans";
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.18em;
  color: #b4aca4;
  margin-bottom: 22px;
  transition: color 0.3s;
}
.services__card-title {
  font-family: "JustSans";
  font-size: clamp(17px, 1.8vw, 24px);
  font-weight: 400;
  line-height: 1.15;
  color: #1a1714;
  margin-bottom: 14px;
  letter-spacing: -0.01em;
  padding-right: 32px;
}
.services__card-desc {
  font-family: "JustSans";
  font-size: 13px;
  font-weight: 300;
  line-height: 1.75;
  color: #565656;
  margin-bottom: 20px;
}
.services__card-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 24px;
}
.services__card-list li {
  font-family: "JustSans";
  font-size: 12px;
  font-weight: 300;
  color: #565656;
  padding: 7px 0;
  border-bottom: 1px solid rgba(180, 172, 164, 0.5);
  display: flex;
  align-items: baseline;
  gap: 10px;
  line-height: 1.5;
}
.services__card-list li:first-child {
  border-top: 1px solid rgba(180, 172, 164, 0.5);
}
.services__card-list li::before {
  content: "—";
  color: #b4aca4;
  font-size: 10px;
  flex-shrink: 0;
  transition: color 0.25s;
}
.services__card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.services__card-tags span {
  font-family: "JustSans";
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #9a9490;
  border: 1px solid #b4aca4;
  padding: 4px 10px;
  border-radius: 2px;
  transition: border-color 0.25s, color 0.25s;
}
.services__card--wide {
  grid-column: 1/-1;
  padding: 52px 56px;
}
.services__card--wide .services__card-title {
  font-size: clamp(20px, 2.2vw, 30px);
  padding-right: 0;
}
.services__card--wide .services__card-arrow {
  top: 52px;
  right: 56px;
}
.services__card-wide-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: start;
}
.services__card-wide-right {
  padding-top: 36px;
}

@media (max-width: 1024px) {
  .services {
    padding-left: 32px;
    padding-right: 32px;
  }
  .services__grid {
    grid-template-columns: 1fr;
  }
  .services__card--wide {
    grid-column: auto;
    padding: 48px 44px;
  }
  .services__card-wide-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .services__card-wide-right {
    padding-top: 0;
  }
  .services__header {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }
  .services__intro {
    max-width: 100%;
  }
}
@media (max-width: 768px) {
  .services {
    padding-left: 20px;
    padding-right: 20px;
  }
  .services__card {
    padding: 36px 28px;
  }
  .services__card--wide {
    padding: 36px 28px;
  }
}
.dos {
  padding: 120px 56px;
  background: #e5ded6;
  border-top: 1px solid #b4aca4;
}
.dos__inner {
  max-width: 1380px;
  margin: 0 auto;
}
.dos__header {
  margin-bottom: 72px;
}
.dos__heading {
  font-family: "JustSans";
  font-size: clamp(22px, 3vw, 42px);
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: #1a1714;
  margin-bottom: 16px;
}
.dos__heading em {
  font-style: italic;
  font-family: "Grift";
  color: #669b90;
}
.dos__sub {
  font-family: "JustSans";
  font-size: 14px;
  font-weight: 300;
  line-height: 1.75;
  color: #565656;
  max-width: 56ch;
}
.dos__body {
  display: grid;
  grid-template-columns: 1fr 1px 1fr;
  gap: 72px;
  align-items: start;
}
.dos__divider {
  background: #b4aca4;
  align-self: stretch;
  min-height: 480px;
}
.dos__col-label {
  font-family: "JustSans";
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #121212;
  margin-bottom: 24px;
  padding-bottom: 10px;
  border-bottom: 1px solid #b4aca4;
}
.dos__col-caption {
  font-family: "JustSans";
  font-size: 14px;
  font-weight: 400;
  font-style: italic;
  color: #565656;
  margin-top: 20px;
}
.dos__footnote {
  margin-top: 56px;
  padding-top: 24px;
  border-top: 1px solid #b4aca4;
  font-family: "JustSans";
  font-size: 18px;
  font-weight: 400;
  color: #565656;
  font-style: italic;
}
.dos__footnote strong {
  font-weight: 500;
  color: #1a1714;
  font-style: normal;
}

.dos-tools {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 28px;
}
.dos-tools__pill {
  font-family: "JustSans";
  font-size: 11px;
  font-weight: 400;
  color: #565656;
  border: 1px solid #b4aca4;
  padding: 6px 14px;
  border-radius: 20px;
  background: #e5ded6;
  transition: border-color 0.25s, color 0.25s, background 0.25s;
}
.dos-tools__pill:hover {
  border-color: #8fb8b0;
  color: #1a1714;
  background: rgba(102, 155, 144, 0.06);
}

.dos-problems li {
  font-family: "JustSans";
  font-size: 13px;
  font-weight: 300;
  color: #565656;
  padding: 11px 0;
  border-bottom: 1px solid #b4aca4;
  display: flex;
  gap: 10px;
  line-height: 1.5;
}
.dos-problems li::before {
  content: "—";
  color: rgba(154, 148, 144, 0.5);
  flex-shrink: 0;
  font-size: 11px;
  margin-top: 1px;
}

.dos-flow {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 28px;
}

.dos-step {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  position: relative;
}
.dos-step:hover .dos-step__icon-wrap {
  background: #669b90;
  border-color: #669b90;
}
.dos-step:hover .dos-step__icon-wrap svg {
  stroke: #f4f0eb;
}
.dos-step:hover .dos-step__name {
  color: #1a1714;
}
.dos-step__track {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
  width: 52px;
}
.dos-step__icon-wrap {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: #1a1714;
  border: 1px solid rgba(26, 23, 20, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.25s, border-color 0.25s;
}
.dos-step__icon-wrap svg {
  stroke: rgba(244, 240, 235, 0.75);
  transition: stroke 0.25s;
}
.dos-step__line {
  width: 1px;
  flex: 1;
  min-height: 28px;
  background: repeating-linear-gradient(to bottom, #b4aca4 0px, #b4aca4 4px, transparent 4px, transparent 8px);
  margin-top: 2px;
  margin-bottom: 2px;
}
.dos-step__content {
  padding-top: 14px;
  padding-bottom: 24px;
}
.dos-step__name {
  font-family: "JustSans";
  font-size: 15px;
  font-weight: 400;
  color: #2e2926;
  letter-spacing: -0.01em;
  margin-bottom: 4px;
  transition: color 0.25s;
}
.dos-step__desc {
  font-family: "JustSans";
  font-size: 12px;
  font-weight: 300;
  color: #565656;
  line-height: 1.55;
}
.dos-step--last .dos-step__content {
  padding-bottom: 0;
}

.dos-outcomes li {
  font-family: "JustSans";
  font-size: 13px;
  font-weight: 300;
  color: #565656;
  padding: 10px 0;
  border-bottom: 1px solid #b4aca4;
  display: flex;
  gap: 10px;
  line-height: 1.5;
}
.dos-outcomes li::before {
  content: "→";
  color: #669b90;
  flex-shrink: 0;
  font-size: 11px;
  margin-top: 1px;
}

@media (max-width: 1024px) {
  .dos {
    padding-left: 32px;
    padding-right: 32px;
  }
  .dos__body {
    grid-template-columns: 1fr;
  }
  .dos__divider {
    display: none;
  }
}
@media (max-width: 768px) {
  .dos {
    padding-left: 20px;
    padding-right: 20px;
  }
  .dos-step__icon-wrap {
    width: 44px;
    height: 44px;
    border-radius: 10px;
  }
  .dos-step__track {
    width: 44px;
  }
}
.work {
  padding: 120px 56px;
  background: #ddd6cd;
  border-top: 1px solid #b4aca4;
}
.work__inner {
  max-width: 1380px;
  margin: 0 auto;
}
.work__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 48px;
  gap: 32px;
}
.work__heading {
  font-family: "JustSans";
  font-size: clamp(24px, 3vw, 44px);
  font-weight: 300;
  letter-spacing: -0.02em;
  color: #1a1714;
}
.work__heading em {
  font-style: italic;
  font-family: "Grift";
  color: #669b90;
}
.work__view-all {
  font-family: "JustSans";
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #565656;
  border-bottom: 1px solid #b4aca4;
  padding-bottom: 3px;
  transition: color 0.2s, border-color 0.2s;
  white-space: nowrap;
}
.work__view-all:hover {
  color: #669b90;
  border-color: #669b90;
}
.work__list {
  display: flex;
  flex-direction: column;
}
.work__item {
  display: grid;
  grid-template-columns: 60px 1fr 180px 130px 28px;
  align-items: center;
  gap: 28px;
  padding: 26px 0;
  border-bottom: 1px solid #b4aca4;
  cursor: pointer;
  transition: padding-left 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}
.work__item:first-child {
  border-top: 1px solid #b4aca4;
}
.work__item:hover {
  padding-left: 16px;
}
.work__item:hover .work__item-num {
  color: #669b90;
}
.work__item:hover .work__item-title {
  color: #1a1714;
}
.work__item:hover .work__item-arrow {
  opacity: 1;
  color: #669b90;
  transform: translate(2px, -2px);
}
.work__item-num {
  font-family: "JustSans";
  font-size: 10px;
  letter-spacing: 0.14em;
  color: #b4aca4;
  transition: color 0.25s;
}
.work__item-title {
  font-family: "JustSans";
  font-size: clamp(16px, 1.6vw, 22px);
  font-weight: 300;
  color: #2e2926;
  letter-spacing: -0.01em;
  transition: color 0.25s;
}
.work__item-tag {
  font-family: "JustSans";
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #565656;
  border: 1px solid #b4aca4;
  padding: 5px 12px;
  border-radius: 2px;
  justify-self: start;
}
.work__item-status {
  font-family: "JustSans";
  font-size: 10px;
  color: #9a9490;
  letter-spacing: 0.05em;
}
.work__item-arrow {
  font-size: 16px;
  color: #b4aca4;
  opacity: 0.4;
  transition: opacity 0.25s, color 0.25s, transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.lab {
  padding: 120px 56px;
  background: #e5ded6;
  border-top: 1px solid #b4aca4;
  position: relative;
  overflow: hidden;
}
.lab__watermark {
  position: absolute;
  right: -0.04em;
  top: 50%;
  transform: translateY(-50%);
  font-family: "JustSans";
  font-size: clamp(160px, 20vw, 300px);
  font-weight: 200;
  color: #d4ccc3;
  line-height: 1;
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  letter-spacing: -0.05em;
}
.lab__inner {
  max-width: 1380px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
.lab__heading {
  font-family: "JustSans";
  font-size: clamp(24px, 3vw, 44px);
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: #1a1714;
  margin-bottom: 12px;
}
.lab__heading em {
  font-style: italic;
  font-family: "Grift";
  color: #669b90;
}
.lab__sub {
  font-family: "JustSans";
  font-size: 14px;
  font-weight: 300;
  color: #565656;
  max-width: 48ch;
  line-height: 1.75;
  margin-bottom: 64px;
}
.lab__experiments {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
}
.lab__exp {
  background: #ddd6cd;
  padding: 44px 40px;
  transition: background 0.3s;
}
.lab__exp:hover {
  background: #f4f0eb;
}
.lab__exp:hover .lab__exp-dot {
  background: #669b90;
  transform: scale(1.4);
}
.lab__exp-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
}
.lab__exp-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #b4aca4;
  transition: background 0.25s, transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.lab__exp-tag {
  font-family: "JustSans";
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #9a9490;
}
.lab__exp-title {
  font-family: "JustSans";
  font-size: clamp(17px, 1.7vw, 24px);
  font-weight: 400;
  color: #1a1714;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
  line-height: 1.2;
}
.lab__exp-desc {
  font-family: "JustSans";
  font-size: 13px;
  font-weight: 300;
  line-height: 1.7;
  color: #565656;
}

.cta-section {
  padding: 140px 56px;
  background: #ddd6cd;
  border-top: 1px solid #b4aca4;
  position: relative;
  overflow: hidden;
}
.cta-section__inner {
  max-width: 1380px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 2;
}
.cta-section__eyebrow {
  font-family: "JustSans";
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #4a7a70;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.cta-section__eyebrow::before {
  content: "";
  width: 16px;
  height: 1px;
  background: #669b90;
}
.cta-section__heading {
  font-family: "JustSans";
  font-size: clamp(28px, 3.5vw, 52px);
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: -0.025em;
  color: #1a1714;
  margin-bottom: 20px;
}
.cta-section__heading em {
  font-style: italic;
  font-family: "Grift";
  color: #669b90;
}
.cta-section__sub {
  font-family: "JustSans";
  font-size: 14px;
  font-weight: 300;
  line-height: 1.75;
  color: #565656;
  max-width: 46ch;
}
.cta-section__right {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  min-width: 200px;
}
.cta-section .contact-form {
  max-width: 560px;
  margin: 0 auto;
  display: flex;
  gap: 12px;
  padding: 8px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(17, 17, 17, 0.08);
}
.cta-section .contact-form input {
  flex: 1;
  min-width: 0;
  height: 40px;
  border: none;
  outline: none;
  background: var(--input);
  border-radius: 14px;
  padding: 0 18px;
  font-size: 0.98rem;
  color: var(--text);
}
.cta-section__btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: "JustSans";
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #f4f0eb;
  background: #669b90;
  padding: 12px 28px;
  border-radius: 2px;
  transition: background 0.2s, transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), gap 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  border: none;
  outline: none;
}
.cta-section__btn::after {
  content: "→";
  font-size: 13px;
}
.cta-section__btn:hover {
  background: #4a7a70;
  transform: translateY(-1px);
  gap: 18px;
}
.cta-section__note {
  font-family: "JustSans";
  font-size: 11px;
  font-weight: 300;
  color: #9a9490;
  font-style: italic;
}

.footer {
  background: #1a1714;
  padding: 64px 56px 40px;
}
.footer__inner {
  max-width: 1380px;
  margin: 0 auto;
}
.footer__top {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(244, 240, 235, 0.1);
}
.footer__logo {
  width: 40%;
  height: auto;
  margin-bottom: 20px;
  cursor: pointer;
}
.footer__tagline {
  font-family: "JustSans";
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  color: #e4e4e4;
  line-height: 1.6;
  max-width: 28ch;
}
.footer__col-label {
  font-family: "JustSans";
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(244, 240, 235, 0.35);
  margin-bottom: 16px;
}
.footer__nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer__nav a {
  font-family: "JustSans";
  font-size: 13px;
  font-weight: 300;
  color: rgba(244, 240, 235, 0.6);
  transition: color 0.2s;
}
.footer__nav a:hover {
  color: #f4f0eb;
}
.footer__contact-line {
  font-family: "JustSans";
  font-size: 13px;
  font-weight: 300;
  color: rgba(244, 240, 235, 0.6);
  margin-bottom: 6px;
  transition: color 0.2s;
}
.footer__contact-line--link:hover {
  color: #8fb8b0;
}
.footer__contact-line:last-child {
  margin-top: 20px;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  color: #fff;
}
.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 28px;
  gap: 20px;
  flex-wrap: wrap;
}
.footer__copy {
  font-family: "JustSans";
  font-size: 11px;
  font-weight: 300;
  color: rgba(244, 240, 235, 0.25);
  letter-spacing: 0.04em;
}
.footer__credit {
  font-family: "JustSans";
  font-size: 11px;
  font-weight: 300;
  color: rgba(244, 240, 235, 0.25);
  font-style: italic;
  font-family: "Grift";
}

.about-hero {
  min-height: 52vh;
  display: flex;
  align-items: flex-end;
  padding: calc(68px + 48px) 56px 64px;
  background: #e5ded6;
  border-bottom: 1px solid #b4aca4;
  position: relative;
  overflow: hidden;
}
.about-hero__bg-text {
  position: absolute;
  left: -0.04em;
  bottom: -0.08em;
  font-family: "JustSans";
  font-size: clamp(90px, 14vw, 200px);
  font-weight: 200;
  color: #d4ccc3;
  pointer-events: none;
  letter-spacing: -0.04em;
  line-height: 1;
}
.about-hero__inner {
  max-width: 1380px;
  margin: 0 auto;
  width: 100%;
  position: relative;
  z-index: 2;
}
.about-hero__heading {
  font-family: "JustSans";
  font-size: clamp(30px, 4vw, 58px);
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: -0.025em;
  color: #1a1714;
  max-width: 20ch;
}
.about-hero__heading em {
  font-style: italic;
  font-family: "Grift";
  color: #669b90;
}

.about-content {
  padding: 100px 56px;
  background: #e5ded6;
}
.about-content__inner {
  max-width: 1380px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 100px;
  align-items: start;
}
.about-content__sidebar {
  position: sticky;
  top: 100px;
}
.about-content__sidebar-label {
  font-family: "JustSans";
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #4a7a70;
  margin-bottom: 20px;
}
.about-content__toc li {
  border-top: 1px solid #b4aca4;
}
.about-content__toc li:last-child {
  border-bottom: 1px solid #b4aca4;
}
.about-content__toc a {
  font-family: "JustSans";
  font-size: 13px;
  font-weight: 300;
  color: #565656;
  display: block;
  padding: 12px 0;
  transition: color 0.2s, padding-left 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.about-content__toc a:hover {
  color: #669b90;
  padding-left: 6px;
}
.about-content__body {
  display: flex;
  flex-direction: column;
  gap: 64px;
}
.about-content__section {
  border-top: 1px solid #b4aca4;
  padding-top: 44px;
}
.about-content__section-heading {
  font-family: "JustSans";
  font-size: clamp(20px, 2.4vw, 34px);
  font-weight: 300;
  letter-spacing: -0.02em;
  color: #1a1714;
  margin-bottom: 20px;
}
.about-content__section-heading em {
  font-style: italic;
  font-family: "Grift";
  color: #669b90;
}
.about-content__section-body {
  font-family: "JustSans";
  font-size: 15px;
  font-weight: 300;
  line-height: 1.85;
  color: #565656;
  max-width: 56ch;
}
.about-content__ideas {
  display: flex;
  flex-direction: column;
  margin-top: 36px;
}
.about-content__idea {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 24px;
  align-items: start;
  padding: 24px 0;
  border-bottom: 1px solid #b4aca4;
}
.about-content__idea:first-child {
  border-top: 1px solid #b4aca4;
}
.about-content__idea-num {
  font-family: "JustSans";
  font-size: 24px;
  font-weight: 200;
  color: #8fb8b0;
  line-height: 1.1;
}
.about-content__idea-title {
  font-family: "JustSans";
  font-size: 10px;
  font-weight: 600;
  color: #1a1714;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.09em;
}
.about-content__idea-body {
  font-family: "JustSans";
  font-size: 13px;
  font-weight: 300;
  line-height: 1.75;
  color: #565656;
}
.about-content__who {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 20px;
}
.about-content__who li {
  font-family: "JustSans";
  font-size: 14px;
  font-weight: 300;
  color: #565656;
  padding: 12px 0;
  border-bottom: 1px solid #b4aca4;
  display: flex;
  gap: 12px;
}
.about-content__who li:first-child {
  border-top: 1px solid #b4aca4;
}
.about-content__who li::before {
  content: "—";
  color: #669b90;
  font-size: 11px;
  flex-shrink: 0;
  margin-top: 2px;
}

.work-page-hero {
  min-height: 46vh;
  display: flex;
  align-items: flex-end;
  padding: calc(68px + 48px) 56px 60px;
  background: #e5ded6;
  border-bottom: 1px solid #b4aca4;
}
.work-page-hero__inner {
  max-width: 1380px;
  margin: 0 auto;
  width: 100%;
}
.work-page-hero__heading {
  font-family: "JustSans";
  font-size: clamp(30px, 4vw, 56px);
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: -0.025em;
  color: #1a1714;
}
.work-page-hero__heading em {
  font-style: italic;
  font-family: "Grift";
  color: #669b90;
}

.work-cases {
  padding: 72px 56px 120px;
  background: #e5ded6;
}
.work-cases__inner {
  max-width: 1380px;
  margin: 0 auto;
}
.work-cases__case {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: start;
  padding: 60px 0;
  border-bottom: 1px solid #b4aca4;
  position: relative;
}
.work-cases__case::before {
  content: "";
  position: absolute;
  left: -56px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: #669b90;
  opacity: 0;
  transition: opacity 0.35s;
}
.work-cases__case:hover::before {
  opacity: 1;
}
.work-cases__case-label {
  font-family: "JustSans";
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #4a7a70;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.work-cases__case-label::before {
  content: "";
  width: 14px;
  height: 1px;
  background: #669b90;
}
.work-cases__case-title {
  font-family: "JustSans";
  font-size: clamp(22px, 2.5vw, 36px);
  font-weight: 300;
  line-height: 1.1;
  color: #1a1714;
  letter-spacing: -0.02em;
  margin-bottom: 14px;
}
.work-cases__case-desc {
  font-family: "JustSans";
  font-size: 14px;
  font-weight: 300;
  line-height: 1.7;
  color: #565656;
}
.work-cases__case-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 24px;
}
.work-cases__case-tags span {
  font-family: "JustSans";
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #565656;
  border: 1px solid #b4aca4;
  padding: 4px 10px;
  border-radius: 2px;
}
.work-cases__case-right {
  display: flex;
  flex-direction: column;
}
.work-cases__case-block {
  border-top: 1px solid #b4aca4;
  padding: 18px 0;
}
.work-cases__case-block:last-child {
  border-bottom: 1px solid #b4aca4;
}
.work-cases__case-block-label {
  font-family: "JustSans";
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #4a7a70;
  margin-bottom: 8px;
}
.work-cases__case-block-text {
  font-family: "JustSans";
  font-size: 13px;
  font-weight: 300;
  line-height: 1.75;
  color: #565656;
}

.lab-page-hero {
  min-height: 46vh;
  display: flex;
  align-items: flex-end;
  padding: calc(68px + 48px) 56px 60px;
  background: #e5ded6;
  border-bottom: 1px solid #b4aca4;
  position: relative;
  overflow: hidden;
}
.lab-page-hero__watermark {
  position: absolute;
  right: -0.04em;
  bottom: -0.12em;
  font-family: "JustSans";
  font-size: clamp(70px, 10vw, 160px);
  font-weight: 200;
  color: #d4ccc3;
  letter-spacing: -0.03em;
  pointer-events: none;
}
.lab-page-hero__inner {
  max-width: 1380px;
  margin: 0 auto;
  width: 100%;
  position: relative;
  z-index: 2;
}
.lab-page-hero__heading {
  font-family: "JustSans";
  font-size: clamp(30px, 4vw, 56px);
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: -0.025em;
  color: #1a1714;
}
.lab-page-hero__heading em {
  font-style: italic;
  font-family: "Grift";
  color: #669b90;
}
.lab-page-hero__sub {
  font-family: "JustSans";
  font-size: 14px;
  font-weight: 300;
  line-height: 1.75;
  color: #565656;
  max-width: 50ch;
  margin-top: 24px;
}

.lab-page-grid {
  padding: 72px 56px 120px;
  background: #e5ded6;
}
.lab-page-grid__inner {
  max-width: 1380px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
}
.lab-page-grid__item {
  background: #ddd6cd;
  padding: 48px 44px;
  border-bottom: 1px solid #b4aca4;
  transition: background 0.3s;
}
.lab-page-grid__item:hover {
  background: #f4f0eb;
}
.lab-page-grid__item:hover .lab-page-grid__item-status {
  background: #669b90;
  color: #f4f0eb;
  border-color: #669b90;
}
.lab-page-grid__item-status {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: "JustSans";
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #565656;
  border: 1px solid #b4aca4;
  padding: 4px 10px;
  border-radius: 2px;
  margin-bottom: 24px;
  transition: background 0.25s, color 0.25s, border-color 0.25s;
}
.lab-page-grid__item-status::before {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #669b90;
}
.lab-page-grid__item-title {
  font-family: "JustSans";
  font-size: clamp(17px, 1.7vw, 24px);
  font-weight: 400;
  color: #1a1714;
  letter-spacing: -0.01em;
  margin-bottom: 12px;
  line-height: 1.15;
}
.lab-page-grid__item-desc {
  font-family: "JustSans";
  font-size: 13px;
  font-weight: 300;
  line-height: 1.75;
  color: #565656;
}

.services-page-hero {
  min-height: 46vh;
  display: flex;
  align-items: flex-end;
  padding: calc(68px + 48px) 56px 60px;
  background: #e5ded6;
  border-bottom: 1px solid #b4aca4;
}
.services-page-hero__inner {
  max-width: 1380px;
  margin: 0 auto;
  width: 100%;
}
.services-page-hero__heading {
  font-family: "JustSans";
  font-size: clamp(30px, 4vw, 56px);
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: -0.025em;
  color: #1a1714;
}
.services-page-hero__heading em {
  font-style: italic;
  font-family: "Grift";
  color: #669b90;
}
.services-page-hero__sub {
  font-family: "JustSans";
  font-size: 14px;
  font-weight: 300;
  line-height: 1.75;
  color: #565656;
  max-width: 50ch;
  margin-top: 24px;
}

.services-page-list {
  padding: 72px 56px 120px;
  background: #e5ded6;
}
.services-page-list__inner {
  max-width: 1380px;
  margin: 0 auto;
}
.services-page-list__item {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 72px;
  align-items: start;
  padding: 56px 0;
  border-bottom: 1px solid #b4aca4;
}
.services-page-list__item-num {
  font-family: "JustSans";
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.18em;
  color: #b4aca4;
  margin-bottom: 16px;
  text-transform: uppercase;
}
.services-page-list__item-title {
  font-family: "JustSans";
  font-size: clamp(22px, 2.4vw, 36px);
  font-weight: 300;
  color: #1a1714;
  letter-spacing: -0.02em;
  line-height: 1.1;
}
.services-page-list__item-title em {
  font-style: italic;
  font-family: "Grift";
  color: #669b90;
}
.services-page-list__item-right {
  padding-top: 2px;
}
.services-page-list__item-desc {
  font-family: "JustSans";
  font-size: 15px;
  font-weight: 300;
  line-height: 1.85;
  color: #565656;
  margin-bottom: 28px;
  max-width: 54ch;
}
.services-page-list__item-includes li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-family: "JustSans";
  font-size: 13px;
  font-weight: 300;
  color: #565656;
  padding: 9px 0;
  border-bottom: 1px solid rgba(180, 172, 164, 0.5);
  line-height: 1.5;
}
.services-page-list__item-includes li:last-child {
  border-bottom: none;
}
.services-page-list__item-includes li::before {
  content: "—";
  color: #669b90;
  flex-shrink: 0;
  font-size: 11px;
  margin-top: 2px;
}

@media (max-width: 1024px) {
  .nav {
    padding: 0 32px;
  }
  .hero {
    padding: 92px 32px 56px;
  }
  .reality,
  .services,
  .dos,
  .work,
  .lab,
  .cta-section {
    padding-left: 32px;
    padding-right: 32px;
  }
  .footer {
    padding: 56px 32px 32px;
  }
  .reality__inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .services__grid {
    grid-template-columns: 1fr;
  }
  .dos__body {
    grid-template-columns: 1fr;
  }
  .dos__body .dos__divider {
    display: none;
  }
  .cta-section__inner {
    grid-template-columns: 1fr;
  }
  .footer__top {
    grid-template-columns: 1fr 1fr;
  }
  .work__item {
    grid-template-columns: 48px 1fr 28px;
  }
  .work__item .work__item-tag,
  .work__item .work__item-status {
    display: none;
  }
  .lab__experiments {
    grid-template-columns: 1fr;
  }
  .work-cases__case {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .lab-page-grid__inner {
    grid-template-columns: 1fr;
  }
  .services-page-list__item {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .about-content__inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .about-content__inner .about-content__sidebar {
    position: static;
  }
  .hero__content {
    grid-template-columns: 1fr;
  }
  .hero__right {
    flex-direction: row;
    gap: 20px;
  }
}
@media (max-width: 768px) {
  .nav__links,
  .nav__cta {
    display: none;
  }
  .nav-mobile-toggle {
    display: flex;
  }
  .services__header {
    flex-direction: column;
    align-items: flex-start;
  }
  .footer__top {
    grid-template-columns: 1fr;
  }
  .footer__inner {
    padding: 0;
  }
  .work__header {
    flex-direction: column;
    align-items: flex-start;
  }
  .hero__stat {
    display: none;
  }
}/*# sourceMappingURL=style.css.map */