/* ── Hero: asymmetric split, fits viewport ────────────────────────────── */
.hero { padding: 56px 0 0; }
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 0.95fr;
  gap: 56px;
  align-items: center;
  min-height: calc(100dvh - 200px);
}
.hero-copy h1 {
  font-size: clamp(38px, 5vw, 64px);
  margin-bottom: 20px;
}
.hero-sub { font-size: 18px; margin-bottom: 32px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-visual { border-radius: var(--radius); overflow: hidden; aspect-ratio: 4/5; }
.hero-visual img { width: 100%; height: 100%; object-fit: cover; }

@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; min-height: auto; }
  .hero { padding-top: 32px; }
  .hero-visual { aspect-ratio: 4/3; order: -1; }
}

/* ── Category pills ────────────────────────────────────────────────────── */
.categories-strip { padding: 0 0 40px; }
.cat-scroll { display: flex; gap: 12px; overflow-x: auto; scrollbar-width: none; padding: 4px 0; }
.cat-scroll::-webkit-scrollbar { display: none; }
.cat-pill {
  flex-shrink: 0;
  padding: 10px 22px;
  border-radius: 999px;
  border: 1.5px solid var(--line);
  font-size: 14px;
  font-weight: 600;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}
.cat-pill:hover { border-color: var(--accent); color: var(--accent); }

/* ── Featured work: asymmetric bento (not 3 equal cards) ──────────────── */
.featured-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: auto auto;
  gap: 20px;
}
.featured-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  display: block;
  aspect-ratio: 4/5;
}
.featured-card.featured-big { grid-row: span 2; aspect-ratio: auto; }
.featured-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s cubic-bezier(0.16,1,0.3,1); }
.featured-card:hover img { transform: scale(1.05); }
.featured-card-info {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 28px 24px;
  background: linear-gradient(0deg, rgba(23,19,15,0.78), transparent 70%);
  color: #fff;
}
.featured-cat { font-size: 12px; text-transform: uppercase; letter-spacing: 0.06em; color: #f0ad8c; font-weight: 600; }
.featured-card h3 { font-size: 22px; color: #fff; margin-top: 4px; }

@media (max-width: 767px) {
  .featured-grid { grid-template-columns: 1fr; }
  .featured-card.featured-big { grid-row: auto; aspect-ratio: 4/5; }
}

/* ── Gallery band: horizontal scroll-snap strip of real project photos ── */
.gallery-band { padding: 0 0 88px; }
.gallery-track {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 0 24px;
  scrollbar-width: none;
}
.gallery-track::-webkit-scrollbar { display: none; }
.gallery-track img {
  flex-shrink: 0;
  width: 340px;
  height: 420px;
  object-fit: cover;
  border-radius: var(--radius);
  scroll-snap-align: start;
}
@media (max-width: 767px) {
  .gallery-track img { width: 260px; height: 320px; }
}

/* ── Approach: 2-col, numbers not cards ──────────────────────────────── */
.approach { background: var(--paper-warm); }
.approach-inner {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 56px;
  align-items: center;
}
.approach-text h2 { font-size: clamp(26px, 3vw, 36px); margin-bottom: 18px; }
.approach-text p { margin-bottom: 26px; }
.approach-numbers { display: flex; flex-direction: column; gap: 28px; }
.num-card { border-top: 1px solid var(--line); padding-top: 16px; }
.num { font-family: var(--font-display); font-size: 56px; font-weight: 700; color: var(--accent); display: block; line-height: 1; }
.num-label { font-size: 14px; color: var(--ink-soft); }

@media (max-width: 767px) {
  .approach-inner { grid-template-columns: 1fr; }
}
