:root {
  --bg: #0e0e10;
  --bg-raise: #141417;
  --line: #232329;
  --text: #ececef;
  --muted: #9a9aa3;
  --carrot: #f97316;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

@media (prefers-reduced-motion: no-preference) {
  html { scroll-behavior: smooth; }
}

body {
  font-family: ui-sans-serif, system-ui, "Helvetica Neue", Helvetica, Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

.container {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 32px;
}

/* ---------- shared ---------- */

.wordmark {
  color: var(--text);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.18em;
}

.wordmark::after {
  content: "";
  display: block;
  width: 44px;
  height: 3px;
  margin-top: 6px;
  background: var(--carrot);
}

.btn {
  display: inline-block;
  text-decoration: none;
  background: var(--carrot);
  color: #160900;
  font-weight: 700;
  cursor: pointer;
}

.btn:hover { background: #ff8b3d; color: #160900; }

.eyebrow {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.24em;
  color: var(--carrot);
}

/* ---------- hero ---------- */

.hero .container {
  padding-top: clamp(56px, 9vh, 96px);
  padding-bottom: clamp(48px, 8vh, 80px);
}

.hero h1 {
  margin-top: 28px;
  max-width: 16ch;
  font-size: clamp(38px, 6.5vw, 64px);
  line-height: 1.06;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.hero-sub {
  margin-top: 22px;
  max-width: 58ch;
  font-size: clamp(16px, 2vw, 18px);
  line-height: 1.6;
  color: var(--muted);
}

/* ---------- what we do / how we work ---------- */

.work {
  border-top: 1px solid var(--line);
  padding: clamp(48px, 7vh, 72px) 0;
}

.work-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 88px);
}

.work-col { scroll-margin-top: 24px; }

.item { margin-top: 28px; }

.item h3, .how-list h3 {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 18px;
}

.item svg {
  flex-shrink: 0;
  color: var(--carrot);
  width: 22px;
  height: 22px;
}

.item p, .how-list p {
  margin-top: 8px;
  font-size: 15px;
  line-height: 1.6;
  color: var(--muted);
}

.how-list {
  list-style: none;
}

.how-list li { margin-top: 28px; }

.how-list h3 span {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--carrot);
}

/* ---------- footer / contact ---------- */

.site-footer {
  border-top: 1px solid var(--line);
  text-align: center;
  scroll-margin-top: 24px;
}

.site-footer .container {
  padding-top: clamp(48px, 7vh, 72px);
  padding-bottom: clamp(48px, 7vh, 72px);
}

.site-footer h2 {
  margin-top: 14px;
  font-size: clamp(26px, 4vw, 40px);
  font-weight: 700;
  letter-spacing: -0.01em;
}

.btn-lg {
  margin-top: 28px;
  font-size: clamp(15px, 2.4vw, 17px);
  padding: 16px 32px;
}

/* ---------- responsive ---------- */

@media (max-width: 820px) {
  .work-grid { grid-template-columns: 1fr; gap: 48px; }
}

@media (max-width: 680px) {
  .container { padding: 0 22px; }
  .wordmark { font-size: 13px; letter-spacing: 0.14em; }
}
