:root {
  --charcoal: #1c1c1e;
  --graphite: #2d2d30;
  --aluminum: #a8a9ad;
  --silver-light: #d4d5d9;
  --warm-accent: #c8956c;
  --warm-hover: #b07d56;
  --cream: #f5f3ef;
  --white: #fefefe;
  --text: #2a2a2d;
  --text-muted: #6b6b70;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  color: var(--text);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

/* Asymmetric hero with angled clip */
.hero-clip {
  clip-path: polygon(0 0, 100% 0, 100% 85%, 0 100%);
}

/* Gallery grid with masonry-like feel */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 280px;
  gap: 6px;
}
.gallery-grid .span-2 { grid-row: span 2; }
.gallery-grid .col-span-2 { grid-column: span 2; }
.gallery-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.25, 0, 0.15, 1);
}
.gallery-grid a:hover img {
  transform: scale(1.04);
}

/* Stat counter */
.stat-number {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 4rem;
  line-height: 1;
  color: var(--warm-accent);
}

/* Section divider — diagonal slash */
.divider-slash {
  width: 60px;
  height: 4px;
  background: var(--warm-accent);
  transform: skewX(-25deg);
}

/* Custom scrollbar */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--cream); }
::-webkit-scrollbar-thumb { background: var(--aluminum); border-radius: 3px; }

/* Nav active indicator */
.nav-active { border-bottom: 2px solid var(--warm-accent); padding-bottom: 2px; }

/* Smooth image reveal */
.img-reveal {
  overflow: hidden;
}
.img-reveal img {
  transition: transform 0.8s cubic-bezier(0.25, 0, 0.15, 1), opacity 0.6s;
}

/* Service card hover */
.service-card {
  transition: transform 0.3s, box-shadow 0.3s;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

/* Footer with dark charcoal */
footer a { transition: color 0.2s; }
footer a:hover { color: var(--warm-accent); }

/* Responsive */
@media (max-width: 768px) {
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 200px;
  }
  .gallery-grid .col-span-2 { grid-column: span 1; }
  .stat-number { font-size: 2.5rem; }
  .hero-clip { clip-path: polygon(0 0, 100% 0, 100% 92%, 0 100%); }
}
@media (max-width: 480px) {
  .gallery-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 220px;
  }
}

/* OG image placeholder */
.og-placeholder {
  width: 1200px;
  height: 630px;
  background: linear-gradient(135deg, var(--charcoal), var(--graphite));
}
