:root {
  --ink: #161616;
  --muted: #6d6a64;
  --stone: #f4f1eb;
  --sand: #ded6ca;
  --clay: #b9a995;
  --white: #ffffff;
  --line: rgba(22, 22, 22, 0.13);
  --max: 1180px;
}

* { box-sizing: border-box; }

html { min-height: 100%; }

body {
  margin: 0;
  min-height: 100vh;
  font-family: Inter, Arial, sans-serif;
  color: var(--ink);
  background: var(--stone);
  line-height: 1.5;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 32px;
  padding: 20px clamp(20px, 4vw, 56px);
  background: rgba(244, 241, 235, 0.86);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 1px solid var(--ink);
  font-size: 12px;
  letter-spacing: 0.12em;
}

.nav {
  display: flex;
  gap: 26px;
  font-size: 14px;
  color: var(--muted);
}

.nav a:hover { color: var(--ink); }

.hero {
  max-width: var(--max);
  margin: 0 auto;
  min-height: calc(100vh - 176px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.82fr);
  gap: clamp(40px, 6vw, 90px);
  align-items: center;
  padding: 80px clamp(20px, 4vw, 56px) 72px;
}

.eyebrow,
.section-label {
  margin: 0 0 16px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 12px;
  font-weight: 800;
  color: var(--muted);
}

h1, h2, p { margin-top: 0; }

h1 {
  max-width: 780px;
  font-size: clamp(50px, 7vw, 92px);
  line-height: 0.92;
  letter-spacing: -0.075em;
  margin-bottom: 28px;
}

.hero-text {
  max-width: 640px;
  color: var(--muted);
  font-size: 19px;
  margin-bottom: 34px;
}

.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border: 1px solid var(--ink);
  font-weight: 700;
  font-size: 14px;
}

.button.primary { background: var(--ink); color: var(--white); }
.button.secondary { background: transparent; }

.hero-visual {
  position: relative;
  min-height: 560px;
  border: 1px solid var(--line);
  background:
    linear-gradient(90deg, transparent 49%, rgba(22,22,22,0.08) 50%, transparent 51%),
    linear-gradient(0deg, transparent 49%, rgba(22,22,22,0.08) 50%, transparent 51%),
    var(--sand);
  overflow: hidden;
}

.panel {
  position: absolute;
  background: rgba(255,255,255,0.58);
  border: 1px solid rgba(22,22,22,0.16);
}

.panel-large {
  width: 66%;
  height: 70%;
  right: 9%;
  bottom: 8%;
}

.panel-small {
  width: 42%;
  height: 32%;
  left: 8%;
  top: 10%;
  background: var(--clay);
}

.line-art {
  position: absolute;
  inset: 68px 54px;
  border-left: 2px solid var(--ink);
  border-bottom: 2px solid var(--ink);
}

.line-art::before,
.line-art::after {
  content: "";
  position: absolute;
  background: var(--ink);
}

.line-art::before { width: 68%; height: 2px; top: 42%; left: 0; }
.line-art::after { width: 2px; height: 46%; bottom: 0; left: 58%; }

.kvd-lockup {
  position: absolute;
  right: 32px;
  bottom: 28px;
  display: grid;
  place-items: center;
  width: 128px;
  height: 128px;
  border: 1px solid var(--ink);
  background: rgba(244,241,235,0.92);
}

.kvd-lockup span {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.section-pad {
  max-width: var(--max);
  margin: 0 auto;
  padding: 70px clamp(20px, 4vw, 56px) 88px;
}

.intro {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 52px;
  border-top: 1px solid var(--line);
}

h2 {
  font-size: clamp(34px, 4vw, 56px);
  line-height: 1;
  letter-spacing: -0.06em;
  margin-bottom: 20px;
}

.intro p:last-child {
  color: var(--muted);
  font-size: 21px;
  max-width: 760px;
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 28px clamp(20px, 4vw, 56px);
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 14px;
}

.footer p { margin: 0; }
.footer a { font-weight: 700; color: var(--ink); }

@media (max-width: 900px) {
  .site-header { align-items: flex-start; flex-direction: column; }
  .hero,
  .intro { grid-template-columns: 1fr; }
  .hero { min-height: auto; padding-top: 54px; }
  .hero-visual { min-height: 420px; }
  .footer { flex-direction: column; }
}
