⁠ css
/*
Theme Name: Mankenlab Minimal
Author: Mankenlab
Description: Minimal custom WordPress theme for Mankenlab.
Version: 1.0
*/

:root {
  --bg: #f7f6f2;
  --text: #111111;
  --muted: #6f6f6f;
  --border: #d8d5cf;
  --max-width: 1440px;
  --side: 48px;
  --section: 140px;
  --font: Helvetica, Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.45;
  font-weight: 400;
}

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

img {
  display: block;
  width: 100%;
  height: auto;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 20;
  padding: 28px var(--side);
  display: flex;
  justify-content: space-between;
  align-items: center;
  mix-blend-mode: difference;
  color: white;
}

.logo {
  font-size: 15px;
  letter-spacing: 0.02em;
  text-transform: lowercase;
}

.nav {
  display: flex;
  gap: 32px;
  font-size: 14px;
  letter-spacing: 0.02em;
}

.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: flex-end;
  padding: var(--side);
  overflow: hidden;
  background: #111;
}

.hero-image {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(135deg, #151515, #3a3935);
}

.hero-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.45), rgba(0,0,0,0.05));
}

.hero-text {
  position: relative;
  z-index: 2;
  max-width: 760px;
  font-size: clamp(32px, 5vw, 74px);
  line-height: 1.02;
  letter-spacing: -0.04em;
  color: white;
  margin-bottom: 24px;
}

.section {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: var(--section) var(--side);
}

.work-preview {
  display: flex;
  flex-direction: column;
  gap: 120px;
}

.project-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}

.project-title {
  font-size: 18px;
  letter-spacing: 0.01em;
}

.project-image {
  aspect-ratio: 16 / 10;
  background: linear-gradient(135deg, #d8d5cf, #aaa69d);
}

.project-image.placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #555;
  font-size: 14px;
  letter-spacing: 0.02em;
}

.statement {
  max-width: 780px;
  font-size: clamp(28px, 4vw, 56px);
  line-height: 1.08;
  letter-spacing: -0.035em;
}

.approach {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--border);
}

.approach-line {
  font-size: clamp(32px, 5vw, 72px);
  line-height: 1;
  letter-spacing: -0.04em;
  padding: 36px 0;
  border-bottom: 1px solid var(--border);
}

.page {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 180px var(--side) var(--section);
}

.page-title {
  font-size: clamp(48px, 7vw, 110px);
  line-height: 0.95;
  letter-spacing: -0.055em;
  margin: 0 0 90px;
}

.page-text {
  max-width: 760px;
  font-size: clamp(22px, 2.2vw, 36px);
  line-height: 1.2;
  letter-spacing: -0.025em;
}

.page-text p {
  margin: 0 0 36px;
}

.work-list {
  display: flex;
  flex-direction: column;
  gap: 120px;
}

.single-project {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-line {
  font-size: clamp(32px, 5vw, 72px);
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.site-footer {
  padding: 80px var(--side) 36px;
  font-size: 13px;
  color: var(--muted);
}

@media (max-width: 768px) {
  :root {
    --side: 22px;
    --section: 90px;
  }

  .site-header {
    padding: 22px var(--side);
  }

  .nav {
    gap: 18px;
    font-size: 13px;
  }

  .hero-text {
    font-size: 38px;
  }

  .work-preview,
  .work-list {
    gap: 80px;
  }

  .page {
    padding-top: 140px;
  }
}
 ⁠
