:root {
  --bg: #000000;
  --bg-soft: #050505;
  --surface: #121212;
  --surface-2: #1c1c1c;
  --line: #202020;
  --line-strong: #333333;
  --text: #f5f5f2;
  --muted: #9a9a95;
  --dim: #565652;
  --ghost: #2a2a2a;
  --accent: #9817b9;
  --max: 1760px;
  --gutter: 42px;
}

* {
  box-sizing: border-box;
}

html {
  background: var(--bg);
  color: var(--text);
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-size: 17px;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.45;
  overflow-x: hidden;
}

body,
button,
a,
input,
textarea {
  font-weight: 400;
}

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

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

button {
  border: 0;
  color: inherit;
  font: inherit;
}

::selection {
  background: var(--accent);
  color: #000;
}

.intro {
  position: fixed;
  inset: 0;
  z-index: 40;
  overflow: hidden;
  background: #000;
  transition:
    background-color 450ms ease,
    opacity 700ms ease,
    visibility 700ms ease;
}

.intro-single {
  position: absolute;
  top: 50%;
  left: 50%;
  color: var(--text);
  font-size: 56px;
  line-height: 0.9;
  transform: translate(-50%, -50%);
  transform-origin: center;
  transition: opacity 500ms ease, transform 700ms ease;
  white-space: nowrap;
}

.intro-marek {
  opacity: 0;
  transform: translate(-50%, -50%) rotateX(86deg);
}

.intro-lockup {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 10;
  width: 430px;
  opacity: 0;
  transform: translate(-50%, -40%) scale(0.94);
  transform-origin: center;
  transition:
    top 1000ms cubic-bezier(0.2, 0.8, 0.2, 1),
    left 1000ms cubic-bezier(0.2, 0.8, 0.2, 1),
    opacity 500ms ease,
    transform 1000ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.wordmark {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-end;
  color: var(--text);
  font-size: 17px;
  line-height: 0.9;
  text-align: right;
}

.wordmark-top,
.wordmark-bottom {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  width: 100%;
}

.intro-lockup.wordmark {
  font-size: 56px;
}

.wordmark-rule {
  display: inline-block;
  width: 112px;
  height: 8px;
  margin-right: 20px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 500ms ease;
}

.brand .wordmark-rule {
  width: auto;
  height: 3px;
  margin-right: 0;
  transform: scaleX(1);
}

.brand.wordmark {
  display: inline-grid;
  grid-template-columns: 1fr auto;
  row-gap: 0;
  align-items: center;
  width: max-content;
}

.brand .wordmark-top {
  grid-column: 1 / -1;
  display: block;
  width: auto;
}

.brand .wordmark-bottom {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1fr auto;
  column-gap: 7px;
  width: 100%;
}

.intro-skip {
  position: absolute;
  right: 28px;
  bottom: 24px;
  z-index: 4;
  padding: 10px 14px;
  border-radius: 4px;
  background: rgba(28, 28, 28, 0.8);
  color: var(--muted);
  cursor: pointer;
  font-size: 12px;
}

body.intro-flip .intro-kreowanie {
  opacity: 0;
  transform: translate(-50%, -50%) rotateX(-88deg);
}

body.intro-flip .intro-marek {
  opacity: 1;
  transform: translate(-50%, -50%) rotateX(0);
}

body.intro-assembled .intro-marek,
body.intro-assembled .intro-kreowanie {
  opacity: 0;
}

body.intro-assembled .intro-lockup {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

body.intro-assembled .intro-lockup .wordmark-rule {
  transform: scaleX(1);
}

body.phase-rise .intro-lockup {
  transform: translate(-50%, -46vh) scale(0.48);
}

body.phase-menu .intro {
  background: transparent;
}

body.phase-corner .intro-lockup {
  top: 53px;
  left: 17px;
  opacity: 1;
  transform-origin: left center;
  transform: translate(0, -50%) scale(0.27);
}

body.intro-finished .intro {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.site-header {
  position: fixed;
  top: 24px;
  left: 50%;
  z-index: 30;
  display: grid;
  grid-template-columns: minmax(150px, 1fr) auto minmax(150px, 1fr);
  align-items: center;
  width: min(calc(100% - 48px), var(--max));
  min-height: 58px;
  padding: 11px 14px 11px 22px;
  border-radius: 4px;
  background: rgba(18, 18, 18, 0.86);
  backdrop-filter: blur(18px);
  color: var(--text);
  opacity: 0;
  transform: translate(calc(-50% - 110vw), 0);
  transition:
    opacity 500ms ease,
    transform 900ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

body.phase-menu .site-header,
body.intro-finished .site-header,
body.skip-intro .site-header {
  opacity: 1;
  transform: translate(-50%, 0);
}

.brand {
  position: relative;
  z-index: 10;
  width: max-content;
  font-size: 15px;
  opacity: 0;
  transition: opacity 220ms ease;
}

body.intro-finished .brand,
body.skip-intro .brand {
  opacity: 1;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 42px;
  color: #d9d9d4;
  font-size: 14px;
}

.main-nav a,
.header-actions a {
  transition: color 180ms ease;
}

.main-nav a:hover,
.header-actions a:hover {
  color: #fff;
}

.header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 18px;
  color: var(--muted);
  font-size: 13px;
}

.contact-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 36px;
  padding: 0 14px;
  border-radius: 4px;
  background: #242424;
  color: #d8d8d4;
}

.contact-link::before,
.text-cta::before {
  content: "";
  display: inline-block;
  width: 9px;
  height: 9px;
  background: var(--accent);
}

.hero {
  position: relative;
  display: grid;
  min-height: 100vh;
  padding: 150px var(--gutter) 74px;
  overflow: hidden;
  background: #000;
}

.hero-media {
  position: absolute;
  inset: 0;
  width: 100%;
  min-width: 0;
  opacity: 0;
  transform: translateX(-14vw);
  transition:
    opacity 1200ms ease,
    transform 1600ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.96) 0%, rgba(0, 0, 0, 0.88) 36%, rgba(0, 0, 0, 0.46) 58%, rgba(0, 0, 0, 0.08) 100%),
    linear-gradient(0deg, rgba(0, 0, 0, 0.46), transparent 52%);
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 70% top;
}

body.phase-corner .hero-media,
body.intro-finished .hero-media,
body.skip-intro .hero-media {
  opacity: 1;
  transform: translateX(0);
}

.hero-copy {
  position: relative;
  z-index: 1;
  align-self: end;
  max-width: 1040px;
  margin-left: 0;
  opacity: 0;
  transform: translateX(-24px);
  transition: opacity 700ms ease, transform 700ms ease;
}

body.phase-hero-copy .hero-copy,
body.intro-finished .hero-copy,
body.skip-intro .hero-copy {
  opacity: 1;
  transform: translateX(0);
}

.hero-copy h1,
.contact-section h2,
.works-topline h2,
.reasons-section h2 {
  margin: 0;
  color: var(--text);
  font-size: 60px;
  font-weight: 400;
  line-height: 0.98;
}

.hero-copy p {
  max-width: 475px;
  margin: 24px 0 0;
  color: #d5d5cf;
  font-size: 20px;
  line-height: 1.38;
}

.text-fade {
  opacity: 0;
  transform: translateY(14px);
  transition:
    opacity 700ms ease 500ms,
    transform 700ms ease 500ms;
}

.text-fade.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.text-cta {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  min-height: 42px;
  margin-top: 38px;
  padding: 0 18px;
  border-radius: 4px;
  background: #242424;
  color: #d8d8d4;
  font-size: 13px;
}

.trust-strip {
  --trust-gap: 72px;
  position: relative;
  display: grid;
  grid-template-columns: minmax(140px, 0.22fr) minmax(0, 1fr);
  gap: 38px;
  align-items: center;
  min-height: 118px;
  padding: 0 0 0 var(--gutter);
  overflow: hidden;
  background: #000;
}

.trust-strip::before,
.trust-strip::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--line);
  opacity: 0;
  transform: scaleX(0);
  transform-origin: left center;
  transition:
    transform 900ms cubic-bezier(0.22, 1, 0.36, 1),
    opacity 900ms ease;
  pointer-events: none;
}

.trust-strip::before {
  top: 0;
}

.trust-strip::after {
  bottom: 0;
}

.trust-strip.is-line-visible::before,
.trust-strip.is-line-visible::after {
  opacity: 1;
  transform: scaleX(1);
}

.trust-strip h2 {
  margin: 0;
  color: var(--dim);
  font-size: 13px;
  font-weight: 400;
  line-height: 1;
}

.trust-marquee {
  display: flex;
  gap: var(--trust-gap);
  overflow: hidden;
}

.trust-track {
  display: flex;
  flex: 0 0 auto;
  gap: var(--trust-gap);
  min-width: max-content;
  animation: trust-marquee 28s linear infinite;
}

.trust-strip:hover .trust-track {
  animation-play-state: paused;
}

.trust-track span {
  color: #777773;
  font-size: 22px;
  line-height: 1;
  white-space: nowrap;
}

@keyframes trust-marquee {
  to {
    transform: translateX(calc(-100% - var(--trust-gap)));
  }
}

.about-reveal {
  position: relative;
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 8vw;
  min-height: 100vh;
  padding: 138px var(--gutter);
  border-top: 0;
  background: #000;
}

.about-reveal::before,
.works-section::before,
.works-list::before,
.work-row::after,
.reasons-section::before,
.reasons-section::after,
.reasons-list article::after,
.site-footer::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--line);
  opacity: 0;
  transform: scaleX(0);
  transform-origin: left center;
  transition:
    transform 900ms cubic-bezier(0.22, 1, 0.36, 1),
    opacity 900ms ease;
  pointer-events: none;
}

.about-reveal::before,
.works-section::before,
.works-list::before,
.reasons-section::before,
.site-footer::before {
  top: 0;
}

.work-row::after,
.reasons-list article::after,
.reasons-section::after {
  bottom: 0;
}

.about-reveal.is-line-visible::before,
.works-section.is-line-visible::before,
.works-list.is-line-visible::before,
.work-row.is-line-visible::after,
.reasons-section.is-line-visible::before,
.reasons-section.is-line-visible::after,
.reasons-list article.is-line-visible::after,
.site-footer.is-line-visible::before {
  opacity: 1;
  transform: scaleX(1);
}

.section-marker {
  position: absolute;
  left: var(--gutter);
  top: 50%;
  color: var(--dim);
  font-size: 11px;
}

.about-heading {
  align-self: start;
  color: #242424;
  font-size: 50px;
  line-height: 1.04;
}

.about-heading p {
  margin: 0;
  color: #242424;
  transition: color 260ms ease;
}

.about-heading p.is-pulse {
  color: var(--accent);
}

.about-heading p.is-final {
  color: var(--accent);
}

.reveal-copy {
  align-self: center;
  max-width: 790px;
  margin: 0;
  color: var(--ghost);
  font-size: 22px;
  line-height: 1.36;
}

.reveal-word {
  color: #2f2f2d;
  transition: color 180ms linear;
}

.reveal-word.is-lit {
  color: var(--text);
}

.works-section {
  position: relative;
  padding: 122px var(--gutter) 110px;
  border-top: 0;
  background: #000;
}

.works-topline {
  display: grid;
  grid-template-columns: minmax(260px, 0.65fr) minmax(280px, 1fr) auto;
  gap: 28px;
  align-items: end;
  margin-bottom: 46px;
}

.works-topline h2 span {
  color: var(--muted);
  font-size: 18px;
  vertical-align: top;
}

.works-topline p {
  margin: 0 0 9px;
  color: var(--dim);
  font-size: 12px;
}

.view-toggle {
  margin-bottom: 4px;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  font-size: 12px;
}

.works-list {
  position: relative;
  border-top: 0;
}

.work-row {
  position: relative;
  display: grid;
  grid-template-columns: minmax(220px, 0.65fr) minmax(180px, 0.45fr) minmax(320px, 0.8fr) 28px;
  gap: 24px;
  align-items: center;
  min-height: 96px;
  border-bottom: 0;
  color: var(--dim);
  outline: none;
  transition: color 180ms ease;
}

a.work-row {
  text-decoration: none;
}

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

.work-row:hover::after,
.work-row:focus-visible::after,
.work-row.is-active::after {
  background: var(--line-strong);
}

.work-row h3 {
  margin: 0;
  font-size: 32px;
  font-weight: 400;
  line-height: 1;
}

.work-row p {
  margin: 0;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.3;
}

.work-preview {
  display: flex;
  align-items: center;
  gap: 7px;
  opacity: 0;
  transform: translateX(-8px);
  transition: opacity 220ms ease, transform 220ms ease;
}

.work-row:hover .work-preview,
.work-row:focus-visible .work-preview,
.work-row.is-active .work-preview {
  opacity: 1;
  transform: translateX(0);
}

.work-preview img {
  width: 128px;
  height: 76px;
  border-radius: 3px;
  opacity: 0.86;
  object-fit: cover;
}

.work-plus {
  justify-self: end;
  color: var(--muted);
  font-size: 22px;
}

.subpage-main {
  min-height: 100vh;
  padding-top: 106px;
  background: #000;
}

.page-hero,
.project-hero,
.project-detail,
.project-gallery {
  position: relative;
}

.page-hero {
  display: grid;
  align-content: end;
  min-height: 56vh;
  padding: 96px var(--gutter) 78px;
}

.page-hero h1,
.project-hero h1 {
  max-width: 980px;
  margin: 0;
  color: var(--text);
  font-size: 60px;
  font-weight: 400;
  line-height: 0.98;
}

.page-hero p {
  max-width: 690px;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: 20px;
  line-height: 1.42;
}

.works-page {
  padding-top: 68px;
}

.project-hero {
  display: grid;
  grid-template-columns: minmax(320px, 0.9fr) minmax(280px, 0.55fr);
  gap: 7vw;
  align-items: end;
  min-height: 62vh;
  padding: 104px var(--gutter) 82px;
}

.project-hero p {
  margin: 0 0 6px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 34px;
  color: var(--muted);
  font-size: 13px;
}

.back-link::before {
  content: "";
  width: 9px;
  height: 9px;
  background: var(--accent);
}

.project-detail {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 0;
}

.project-detail::before,
.project-detail article::after,
.project-gallery::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--line);
  opacity: 0;
  transform: scaleX(0);
  transform-origin: left center;
  transition:
    transform 900ms cubic-bezier(0.22, 1, 0.36, 1),
    opacity 900ms ease;
  pointer-events: none;
}

.project-detail::before,
.project-gallery::before {
  top: 0;
}

.project-detail article::after {
  bottom: 0;
}

.project-detail.is-line-visible::before,
.project-detail article.is-line-visible::after,
.project-gallery.is-line-visible::before {
  opacity: 1;
  transform: scaleX(1);
}

.project-detail article {
  position: relative;
  min-height: 320px;
  padding: 54px var(--gutter);
}

.project-detail article + article {
  border-left: 1px solid var(--line);
}

.project-detail span {
  display: block;
  margin-bottom: 34px;
  color: var(--dim);
  font-size: 12px;
}

.project-detail p,
.scope-list {
  max-width: 670px;
  margin: 0;
  color: var(--text);
  font-size: 24px;
  line-height: 1.34;
}

.scope-list {
  display: grid;
  gap: 10px;
  padding: 0;
  list-style: none;
}

.scope-list li {
  display: flex;
  align-items: center;
  gap: 14px;
}

.scope-list li::before {
  content: "";
  flex: 0 0 auto;
  width: 9px;
  height: 9px;
  background: var(--accent);
}

.project-gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  padding: 1px 0 0;
  background: var(--line);
}

.project-gallery figure {
  min-height: 48vw;
  margin: 0;
  background: #070707;
}

.project-gallery figure:first-child {
  grid-column: 1 / -1;
  min-height: 72vh;
}

.project-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.contact-page-hero p {
  max-width: 760px;
}

.contact-panel,
.contact-brief,
.contact-brief article,
.contact-final {
  position: relative;
}

.contact-panel {
  display: grid;
  grid-template-columns: minmax(320px, 0.75fr) minmax(360px, 1fr);
  gap: 8vw;
  min-height: 420px;
  padding: 72px var(--gutter);
  background: #000;
}

.contact-lead h2 {
  margin: 0 0 28px;
  color: var(--text);
  font-size: 44px;
  font-weight: 400;
  line-height: 1;
}

.contact-lead p {
  max-width: 680px;
  margin: 0;
  color: var(--muted);
  font-size: 22px;
  line-height: 1.42;
}

.contact-details {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 18px;
  font-style: normal;
}

.contact-details a {
  width: max-content;
  max-width: 100%;
  color: var(--text);
  font-size: 36px;
  line-height: 1.05;
  transition: color 180ms ease;
}

.contact-details a:hover {
  color: var(--accent);
}

.contact-brief {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  background: #000;
}

.contact-brief article {
  min-height: 310px;
  padding: 50px var(--gutter);
}

.contact-brief article + article {
  border-left: 1px solid var(--line);
}

.contact-brief span {
  display: block;
  margin-bottom: 34px;
  color: var(--accent);
  font-size: 13px;
}

.contact-brief h2 {
  margin: 0 0 24px;
  color: var(--text);
  font-size: 32px;
  font-weight: 400;
  line-height: 1.08;
}

.contact-brief p {
  margin: 0;
  color: var(--muted);
  font-size: 19px;
  line-height: 1.42;
}

.contact-final {
  display: grid;
  grid-template-columns: minmax(320px, 0.8fr) minmax(320px, 1fr);
  gap: 8vw;
  align-items: center;
  padding: 98px var(--gutter) 118px;
  background: #000;
}

.contact-final h2 {
  margin: 0;
  color: var(--text);
  font-size: 60px;
  font-weight: 400;
  line-height: 0.98;
}

.contact-final > div {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.text-cta-secondary {
  background: transparent;
  box-shadow: inset 0 0 0 1px var(--line-strong);
}

.contact-panel::before,
.contact-panel::after,
.contact-brief::before,
.contact-brief article::after,
.contact-final::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--line);
  opacity: 0;
  transform: scaleX(0);
  transform-origin: left center;
  transition:
    transform 900ms cubic-bezier(0.22, 1, 0.36, 1),
    opacity 900ms ease;
  pointer-events: none;
}

.contact-panel::before,
.contact-brief::before,
.contact-final::before {
  top: 0;
}

.contact-panel::after,
.contact-brief article::after {
  bottom: 0;
}

.contact-panel.is-line-visible::before,
.contact-panel.is-line-visible::after,
.contact-brief.is-line-visible::before,
.contact-brief article.is-line-visible::after,
.contact-final.is-line-visible::before {
  opacity: 1;
  transform: scaleX(1);
}

.about-page-hero p {
  max-width: 760px;
}

.about-statement,
.about-pillars,
.about-pillars article,
.about-founder {
  position: relative;
}

.about-statement {
  display: grid;
  grid-template-columns: 0.42fr minmax(420px, 1fr);
  gap: 8vw;
  min-height: 70vh;
  padding: 112px var(--gutter);
  background: #000;
}

.about-statement p {
  align-self: center;
  max-width: 880px;
  margin: 0;
  color: var(--ghost);
  font-size: 28px;
  line-height: 1.3;
}

.about-pillars {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  background: #000;
}

.about-pillars article {
  min-height: 330px;
  padding: 52px var(--gutter);
}

.about-pillars article + article {
  border-left: 1px solid var(--line);
}

.about-pillars span {
  display: block;
  margin-bottom: 34px;
  color: var(--accent);
  font-size: 13px;
}

.about-pillars h2 {
  margin: 0 0 24px;
  color: var(--text);
  font-size: 32px;
  font-weight: 400;
  line-height: 1.08;
}

.about-pillars p {
  margin: 0;
  color: var(--muted);
  font-size: 19px;
  line-height: 1.42;
}

.about-founder {
  display: grid;
  grid-template-columns: minmax(280px, 0.55fr) minmax(420px, 1fr);
  gap: 8vw;
  padding: 110px var(--gutter) 126px;
  background: #000;
}

.about-founder h2 {
  margin: 0;
  color: var(--text);
  font-size: 60px;
  font-weight: 400;
  line-height: 0.98;
}

.about-founder p {
  max-width: 740px;
  margin: 0;
  color: var(--muted);
  font-size: 22px;
  line-height: 1.42;
}

.about-founder address {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 28px;
  color: var(--text);
  font-size: 22px;
  font-style: normal;
}

.about-founder address a {
  width: max-content;
  max-width: 100%;
  transition: color 180ms ease;
}

.about-founder address a:hover {
  color: var(--accent);
}

.about-statement::before,
.about-statement::after,
.about-pillars::before,
.about-pillars article::after,
.about-founder::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--line);
  opacity: 0;
  transform: scaleX(0);
  transform-origin: left center;
  transition:
    transform 900ms cubic-bezier(0.22, 1, 0.36, 1),
    opacity 900ms ease;
  pointer-events: none;
}

.about-statement::before,
.about-pillars::before,
.about-founder::before {
  top: 0;
}

.about-statement::after,
.about-pillars article::after {
  bottom: 0;
}

.about-statement.is-line-visible::before,
.about-statement.is-line-visible::after,
.about-pillars.is-line-visible::before,
.about-pillars article.is-line-visible::after,
.about-founder.is-line-visible::before {
  opacity: 1;
  transform: scaleX(1);
}

.process-page-hero p {
  max-width: 820px;
}

.process-statement,
.process-steps,
.process-steps article,
.process-outcome {
  position: relative;
}

.process-statement {
  display: grid;
  grid-template-columns: 0.42fr minmax(420px, 1fr);
  gap: 8vw;
  min-height: 72vh;
  padding: 112px var(--gutter);
  background: #000;
}

.process-statement p {
  align-self: center;
  max-width: 860px;
  margin: 0;
  color: var(--ghost);
  font-size: 28px;
  line-height: 1.3;
}

.process-steps {
  background: #000;
}

.process-steps article {
  display: grid;
  grid-template-columns: 80px minmax(260px, 0.45fr) minmax(360px, 1fr);
  gap: 42px;
  align-items: start;
  min-height: 210px;
  padding: 52px var(--gutter);
}

.process-steps span {
  color: var(--accent);
  font-size: 13px;
  line-height: 1.1;
}

.process-steps h2 {
  margin: 0;
  color: var(--text);
  font-size: 34px;
  font-weight: 400;
  line-height: 1.05;
}

.process-steps p {
  max-width: 740px;
  margin: 0;
  color: var(--muted);
  font-size: 20px;
  line-height: 1.42;
}

.process-outcome {
  display: grid;
  grid-template-columns: minmax(280px, 0.55fr) minmax(420px, 1fr);
  gap: 8vw;
  padding: 110px var(--gutter) 126px;
  background: #000;
}

.process-outcome h2 {
  margin: 0;
  color: var(--text);
  font-size: 60px;
  font-weight: 400;
  line-height: 0.98;
}

.process-outcome p {
  max-width: 740px;
  margin: 0;
  color: var(--muted);
  font-size: 22px;
  line-height: 1.42;
}

.process-statement::before,
.process-statement::after,
.process-steps::before,
.process-steps article::after,
.process-outcome::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--line);
  opacity: 0;
  transform: scaleX(0);
  transform-origin: left center;
  transition:
    transform 900ms cubic-bezier(0.22, 1, 0.36, 1),
    opacity 900ms ease;
  pointer-events: none;
}

.process-statement::before,
.process-steps::before,
.process-outcome::before {
  top: 0;
}

.process-statement::after,
.process-steps article::after {
  bottom: 0;
}

.process-statement.is-line-visible::before,
.process-statement.is-line-visible::after,
.process-steps.is-line-visible::before,
.process-steps article.is-line-visible::after,
.process-outcome.is-line-visible::before {
  opacity: 1;
  transform: scaleX(1);
}

.reasons-section {
  position: relative;
  display: grid;
  grid-template-columns: minmax(280px, 0.7fr) minmax(520px, 1fr);
  min-height: 92vh;
  border-top: 0;
  border-bottom: 0;
  background: #000;
}

.reasons-section h2 {
  padding: 110px var(--gutter);
}

.reasons-section h2 span {
  color: #696965;
}

.reasons-list {
  position: relative;
  border-left: 0;
}

.reasons-list::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 1px;
  background: var(--line);
  opacity: 0;
  transform: scaleY(0);
  transform-origin: top center;
  transition:
    transform 1100ms cubic-bezier(0.22, 1, 0.36, 1) 120ms,
    opacity 900ms ease 120ms;
  pointer-events: none;
}

.reasons-list.is-line-visible::before {
  opacity: 1;
  transform: scaleY(1);
}

.reasons-list article {
  position: relative;
  display: grid;
  grid-template-columns: minmax(220px, 0.58fr) minmax(260px, 0.8fr) 16px;
  gap: 36px;
  min-height: 240px;
  padding: 58px 42px;
  border-bottom: 0;
}

.reasons-list h3 {
  margin: 0;
  color: var(--text);
  font-size: 30px;
  font-weight: 400;
  line-height: 1.12;
}

.reasons-list p {
  margin: 0;
  color: var(--muted);
  font-size: 20px;
  line-height: 1.42;
}

.reasons-list article > span {
  width: 9px;
  height: 9px;
  margin-top: 7px;
  background: var(--accent);
}

.hover-image-section {
  position: relative;
  display: grid;
  grid-template-columns: minmax(360px, 0.85fr) minmax(420px, 1fr);
  gap: 6vw;
  min-height: 100vh;
  padding: 120px var(--gutter);
  overflow: hidden;
  background: #000;
}

.hover-copy {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

.image-tab {
  display: block;
  width: 100%;
  padding: 4px 0;
  background: transparent;
  color: #4d4d4a;
  cursor: pointer;
  font-size: 56px;
  line-height: 1.05;
  text-align: left;
  transition: color 200ms ease, transform 200ms ease;
}

.image-tab:hover,
.image-tab:focus-visible,
.image-tab.is-active {
  color: var(--text);
  transform: translateX(4px);
}

.hover-images {
  position: relative;
  min-height: 520px;
}

.hover-images img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border-radius: 4px;
  opacity: 0.2;
  object-fit: cover;
  transition: opacity 360ms ease, transform 500ms ease;
}

.hover-images img.is-active {
  z-index: 1;
  opacity: 1;
  transform: translateY(-8px);
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(320px, 0.85fr) minmax(300px, 0.55fr);
  gap: 7vw;
  padding: 128px var(--gutter) 116px;
  background: #000;
}

.contact-section p {
  max-width: 620px;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: 22px;
  line-height: 1.4;
}

address {
  align-self: end;
  display: flex;
  flex-direction: column;
  gap: 13px;
  color: var(--text);
  font-style: normal;
  font-size: 22px;
}

address span {
  color: var(--muted);
}

.site-footer {
  position: relative;
  display: flex;
  justify-content: space-between;
  gap: 28px;
  padding: 28px var(--gutter);
  border-top: 0;
  color: var(--dim);
  font-size: 13px;
}

.site-footer p {
  margin: 0;
}

@media (max-width: 1120px) {
  :root {
    --gutter: 28px;
  }

  .site-header {
    grid-template-columns: 1fr auto;
  }

  .main-nav {
    display: none;
  }

  .hero-copy h1,
  .contact-section h2,
  .works-topline h2,
  .reasons-section h2 {
    font-size: 50px;
  }

  .about-reveal,
  .reasons-section,
  .hover-image-section,
  .contact-section,
  .project-hero,
  .project-detail,
  .project-gallery,
  .contact-panel,
  .contact-brief,
  .contact-final,
  .about-statement,
  .about-pillars,
  .about-founder,
  .process-statement,
  .process-steps article,
  .process-outcome {
    grid-template-columns: 1fr;
  }

  .section-marker {
    position: static;
    grid-column: 1;
  }

  .reasons-list {
    border-left: 0;
  }

  .reasons-list::before {
    display: none;
  }

  .works-topline,
  .work-row,
  .reasons-list article {
    grid-template-columns: 1fr;
  }

  .project-detail article + article {
    border-left: 0;
  }

  .contact-brief article + article {
    border-left: 0;
  }

  .about-pillars article + article {
    border-left: 0;
  }

  .contact-panel,
  .contact-final,
  .about-founder {
    gap: 44px;
  }

  .contact-details a {
    font-size: 30px;
  }

  .project-gallery figure,
  .project-gallery figure:first-child {
    min-height: 62vh;
  }

  .process-statement {
    min-height: 0;
    padding-top: 92px;
    padding-bottom: 92px;
  }

  .process-statement p {
    font-size: 24px;
  }

  .about-statement {
    min-height: 0;
    padding-top: 92px;
    padding-bottom: 92px;
  }

  .about-statement p {
    font-size: 24px;
  }

  .process-steps article {
    gap: 22px;
  }

  .process-outcome {
    padding-top: 92px;
    padding-bottom: 100px;
  }

  .work-preview {
    margin-bottom: 18px;
  }

  .image-tab {
    font-size: 46px;
  }

  .trust-strip {
    grid-template-columns: 1fr;
    gap: 22px;
    min-height: 126px;
    padding: 26px 0 26px var(--gutter);
  }
}

@media (max-width: 720px) {
  :root {
    --gutter: 18px;
  }

  body {
    font-size: 16px;
  }

  .site-header {
    top: 14px;
    width: calc(100% - 24px);
    min-height: 52px;
    padding: 9px 10px 9px 13px;
  }

  .brand {
    width: max-content;
    font-size: 12px;
  }

  .header-actions {
    gap: 10px;
    font-size: 12px;
  }

  .contact-link {
    min-height: 32px;
    padding: 0 10px;
  }

  .intro-single,
  .intro-lockup.wordmark {
    font-size: 40px;
  }

  .intro-lockup {
    width: 310px;
  }

  body.phase-corner .intro-lockup {
    top: 40px;
    left: 12px;
    transform: translate(0, -50%) scale(0.3);
  }

  .hero-media {
    inset: 0;
    width: 100%;
    min-width: 0;
  }

  .hero-media::after {
    background:
      linear-gradient(90deg, rgba(0, 0, 0, 0.86), rgba(0, 0, 0, 0.42)),
      linear-gradient(0deg, rgba(0, 0, 0, 0.76), transparent 56%);
  }

  .hero-media img {
    object-position: 65% top;
  }

  .wordmark-rule {
    width: 78px;
    height: 6px;
    margin-right: 14px;
  }

  .brand .wordmark-rule {
    height: 2px;
    margin-right: 0;
  }

  .brand .wordmark-bottom {
    column-gap: 6px;
  }

  .hero {
    min-height: 92vh;
    padding: 122px var(--gutter) 48px;
  }

  .hero-copy {
    margin-left: 0;
  }

  .hero-copy h1,
  .contact-section h2,
  .works-topline h2,
  .reasons-section h2 {
    font-size: 38px;
  }

  .hero-copy p,
  .contact-section p,
  .reveal-copy,
  .reasons-list p {
    font-size: 18px;
  }

  .about-reveal,
  .works-section,
  .hover-image-section,
  .contact-section {
    padding-top: 84px;
    padding-bottom: 84px;
  }

  .subpage-main {
    padding-top: 72px;
  }

  .page-hero,
  .project-hero {
    min-height: 46vh;
    padding: 78px var(--gutter) 58px;
  }

  .page-hero h1,
  .project-hero h1,
  .about-founder h2,
  .process-outcome h2 {
    font-size: 38px;
  }

  .page-hero p,
  .project-detail p,
  .scope-list,
  .contact-lead p,
  .contact-brief p,
  .about-statement p,
  .about-pillars p,
  .about-founder p,
  .process-statement p,
  .process-steps p,
  .process-outcome p {
    font-size: 18px;
  }

  .contact-lead h2,
  .contact-brief h2,
  .about-pillars h2 {
    font-size: 30px;
  }

  .contact-panel,
  .contact-brief article,
  .contact-final,
  .about-statement,
  .about-pillars article,
  .about-founder {
    min-height: 0;
    padding: 42px var(--gutter);
  }

  .contact-details a,
  .about-founder address {
    font-size: 23px;
  }

  .process-steps article {
    min-height: 0;
    padding: 42px var(--gutter);
  }

  .process-steps h2 {
    font-size: 30px;
  }

  .project-detail article {
    min-height: 0;
    padding: 42px var(--gutter);
  }

  .project-gallery figure,
  .project-gallery figure:first-child {
    min-height: 72vw;
  }

  .trust-strip {
    --trust-gap: 42px;
    min-height: 112px;
  }

  .trust-track span {
    font-size: 18px;
  }

  .about-heading {
    font-size: 38px;
  }

  .work-row {
    min-height: 0;
    padding: 24px 0;
    gap: 16px;
  }

  .work-row h3,
  .reasons-list h3 {
    font-size: 27px;
  }

  .work-preview {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 6px;
    width: 100%;
  }

  .work-preview img {
    width: 100%;
    height: 72px;
  }

  .reasons-section h2 {
    padding: 84px var(--gutter) 36px;
  }

  .reasons-list article {
    min-height: 0;
    padding: 34px var(--gutter);
    gap: 16px;
  }

  .image-tab {
    font-size: 36px;
  }

  .hover-images {
    min-height: 320px;
  }

  address {
    font-size: 19px;
  }

  .site-footer {
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 1ms !important;
    animation-duration: 1ms !important;
  }

  .intro {
    display: none;
  }

  .site-header,
  .hero-media,
  .hero-copy,
  .text-fade {
    opacity: 1;
    transform: none;
  }

  .trust-track {
    animation: none !important;
  }
}
