:root {
  --ink: #1c1a16;
  --muted: #8a8478;
  --orange: #e07020;
  --border: #e8e1d2;
  --bg: #faf7f0;
  --paper2: #fffdf7;
}

* { box-sizing: border-box }

body {
  margin: 0;
  background: #fff;
  font-family: "Montserrat", -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--ink);
}

.shell { max-width: 1180px; margin: 0 auto; padding: 0 24px }

.page-hero {
  position: relative;
  overflow: hidden;
  padding: 72px 28px 56px;
  background:
    linear-gradient(rgba(28, 26, 22, .04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(28, 26, 22, .04) 1px, transparent 1px),
    var(--bg);
  background-size: 44px 44px;
}

.page-hero .shell { position: relative; z-index: 2 }

.eyebrow {
  font-size: 11px;
  letter-spacing: .2em;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.eyebrow::before { content: ""; width: 30px; height: 2px; background: var(--orange) }

.page-hero h1 {
  margin: 0;
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.14;
  font-weight: 800;
  letter-spacing: -.01em;
}

.page-hero .lead {
  margin: 18px 0 0;
  max-width: 620px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
}

.badges { display: flex; flex-wrap: wrap; gap: 8px }

.badge {
  font-size: 11.5px;
  font-weight: 700;
  padding: 7px 13px;
  border-radius: 999px;
  background: color-mix(in srgb, var(--orange) 10%, transparent);
  color: var(--orange);
  border: 1px solid color-mix(in srgb, var(--orange) 25%, transparent);
}

.btn-row { display: flex; flex-wrap: wrap; gap: 10px }

.btn {
  display: inline-flex;
  align-items: center;
  padding: 11px 20px;
  border-radius: 12px;
  font-size: 13.5px;
  font-weight: 700;
  text-decoration: none;
  transition: transform .15s, opacity .15s;
}

.btn:hover { transform: translateY(-1px) }
.btn.dark { background: var(--ink); color: #fff }
.btn.ghost { background: #fff; color: var(--ink); border: 1px solid var(--border) }
.btn.orange { background: var(--orange); color: #fff }

.section { padding: 52px 0 }
.section:nth-of-type(even) { background: var(--paper2) }

.section-head { margin-bottom: 26px }
.section-head h2 { margin: 6px 0 0; font-size: clamp(22px, 2.6vw, 30px); font-weight: 800; letter-spacing: -.01em }
.section-head p { margin: 10px 0 0; color: var(--muted); font-size: 14px; max-width: 640px; line-height: 1.7 }

.grid { display: grid; gap: 16px }
.grid.cols-1 { grid-template-columns: 1fr }
.grid.cols-2 { grid-template-columns: repeat(2, 1fr) }
.grid.cols-3 { grid-template-columns: repeat(3, 1fr) }
.grid.cols-4 { grid-template-columns: repeat(4, 1fr) }
@media (max-width: 900px) { .grid.cols-3, .grid.cols-4 { grid-template-columns: repeat(2, 1fr) } }
@media (max-width: 640px) { .grid.cols-2, .grid.cols-3, .grid.cols-4 { grid-template-columns: 1fr } }

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

.card, .panel {
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 22px;
  background: #fff;
}

.card h3, .panel h2 { margin: 0 0 10px; font-size: 16px; font-weight: 800 }
.card p, .panel p { margin: 0; color: var(--muted); font-size: 13.5px; line-height: 1.75 }
.card ul { margin: 0; padding: 0 0 0 18px; color: var(--muted); font-size: 13.5px; line-height: 1.85 }
.card.cool { background: color-mix(in srgb, var(--orange) 4%, #fff) }

.note { font-size: 12px; font-weight: 700; color: var(--orange) }

.work-card .work-media { display: block; margin: -22px -22px 16px; border-radius: 16px 16px 0 0; overflow: hidden; aspect-ratio: 4/3; background: var(--bg); position: relative }
.work-card .work-media img { width: 100%; height: 100%; object-fit: cover; display: block }
.work-card .content { padding-top: 0 }
.work-card .content a { color: var(--orange); font-size: 12.5px; font-weight: 700; text-decoration: none }

.breadcrumbs { font-size: 12px; color: var(--muted); margin-bottom: 10px }
.breadcrumbs a { color: var(--muted); text-decoration: none }
.breadcrumbs a:hover { color: var(--orange) }

.zb-process { display: grid; gap: 10px }
.zb-process-step { display: flex; gap: 14px; align-items: flex-start; padding: 14px 16px; border: 1px solid var(--border); border-radius: 12px; background: #fff }
.zb-process-num { flex-shrink: 0; width: 28px; height: 28px; border-radius: 50%; background: var(--orange); color: #fff; font-weight: 800; font-size: 13px; display: flex; align-items: center; justify-content: center }
.zb-process-step-label { font-size: 14px; font-weight: 600; padding-top: 4px; color: var(--ink) }
