:root {
  --bg: #020202;
  --panel: #0b0b0b;
  --panel-2: #101010;
  --border: rgba(255,255,255,.08);
  --muted: #b9b9b9;
  --text: #ffffff;
  --shadow: 0 20px 60px rgba(0,0,0,.45);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
a { color: inherit; text-decoration: none; }
img { display: block; width: 100%; }
.container { width: min(1240px, calc(100% - 32px)); margin: 0 auto; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(16px);
  background: rgba(2,2,2,.72);
  border-bottom: 1px solid var(--border);
}
.nav-wrap {
  min-height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.brand {
  font-weight: 800;
  letter-spacing: .28em;
  text-transform: uppercase;
  font-size: .95rem;
}
.nav-links {
  display: flex;
  gap: 28px;
}
.nav-links a {
  color: rgba(255,255,255,.78);
  transition: color .25s ease;
}
.nav-links a:hover { color: #fff; }

.hero {
  position: relative;
  min-height: calc(100vh - 84px);
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg,
.hero-overlay {
  position: absolute;
  inset: 0;
}
.hero-bg {
  background-size: cover;
  background-position: center center;
  filter: grayscale(1) contrast(1.12) brightness(.82);
  transform: scale(1.02);
}
.hero-overlay {
  background:
    linear-gradient(90deg, rgba(2,2,2,.78) 0%, rgba(2,2,2,.58) 28%, rgba(2,2,2,.32) 52%, rgba(2,2,2,.12) 74%, rgba(2,2,2,.04) 100%),
    linear-gradient(to top, rgba(2,2,2,.74) 0%, rgba(2,2,2,.14) 36%, rgba(2,2,2,.04) 100%),
    radial-gradient(circle at 18% 68%, rgba(255,255,255,.06), transparent 34%);
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 40px 0 40px;
}
.eyebrow-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 12px;
}
.pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 16px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.16);
  background: rgba(255,255,255,.03);
  color: rgba(255,255,255,.92);
  font-size: .95rem;
}
.dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,.36);
}
.eyebrow-text {
  color: rgba(255,255,255,.78);
  font-size: .92rem;
  text-transform: uppercase;
  letter-spacing: .16em;
}
.hero h1,
.section h2,
.gallery-intro h1 {
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  text-transform: uppercase;
  letter-spacing: .02em;
}
.hero h1 {
  margin: 0;
  line-height: .84;
  font-size: clamp(4.6rem, 11vw, 9.2rem);
  max-width: 7ch;
}
.hero-copy,
.section-copy,
.about-copy-wrap p,
.stat-card p,
.contact-label,
.gallery-meta,
.gallery-lead {
  color: var(--muted);
}
.hero-copy {
  max-width: 760px;
  font-size: clamp(1.02rem, 1.85vw, 1.22rem);
  line-height: 1.78;
  margin: 20px 0 0;
}
.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 26px;
}
.button {
  min-height: 52px;
  padding: 0 22px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  transition: transform .25s ease, border-color .25s ease, background .25s ease;
}
.button:hover { transform: translateY(-2px); }
.button-primary {
  background: #fff;
  color: #000;
}
.button-secondary {
  border: 1px solid rgba(255,255,255,.16);
  color: #fff;
  background: rgba(255,255,255,.04);
}

.section {
  padding: 88px 0;
  border-top: 1px solid var(--border);
}
.section-head,
.about-grid,
.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr .9fr;
  gap: 32px;
  align-items: end;
  margin-bottom: 34px;
}
.section-kicker {
  margin: 0 0 14px;
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: .78rem;
  color: rgba(255,255,255,.72);
}
.section h2 {
  font-size: clamp(2.5rem, 4vw, 4rem);
  line-height: .94;
  margin: 0;
  max-width: 12ch;
}
.section-copy,
.about-copy-wrap p {
  font-size: 1.02rem;
  line-height: 1.9;
}
.about-copy-wrap { display: grid; gap: 18px; }
.about-copy-wrap p { margin: 0; }

.project-grid {
  display: grid;
  grid-template-columns: 1.25fr 1fr 1fr;
  gap: 22px;
}
.project-card {
  position: relative;
  min-height: 620px;
  border-radius: 28px;
  overflow: hidden;
  background: #080808;
  border: 1px solid rgba(255,255,255,.08);
  box-shadow: var(--shadow);
  display: flex;
  align-items: flex-end;
  isolation: isolate;
}
.project-card.featured { min-height: 720px; }
.project-image,
.project-gradient {
  position: absolute;
  inset: 0;
}
.project-image {
  background-size: cover;
  background-position: center;
  filter: grayscale(1) brightness(.52);
  transition: transform .45s ease, filter .45s ease;
}
.project-gradient {
  background: linear-gradient(to top, rgba(0,0,0,.95), rgba(0,0,0,.18) 54%, rgba(0,0,0,.08));
}
.project-info {
  position: relative;
  z-index: 2;
  padding: 24px;
}
.project-meta {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: .74rem;
  color: rgba(255,255,255,.74);
  margin-bottom: 12px;
}
.project-info h3 {
  margin: 0 0 8px;
  font-size: clamp(1.65rem, 2.1vw, 2rem);
  line-height: 1.02;
}
.project-info p {
  margin: 0;
  color: rgba(255,255,255,.8);
  line-height: 1.6;
}
.project-card:hover .project-image {
  transform: scale(1.05);
  filter: grayscale(.2) brightness(.66);
}

.stat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.stat-card,
.contact-card {
  background: linear-gradient(180deg, rgba(255,255,255,.03), rgba(255,255,255,.02));
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 24px;
  padding: 26px;
}
.stat-card h3 {
  margin: 0 0 14px;
  font-size: 1.7rem;
}
.stat-card p {
  margin: 0;
  line-height: 1.8;
}
.contact-card {
  display: grid;
  gap: 22px;
}
.contact-item a {
  display: inline-block;
  margin-top: 8px;
  font-size: 1.24rem;
  font-weight: 600;
}
.contact-label {
  display: block;
  text-transform: uppercase;
  letter-spacing: .16em;
  font-size: .74rem;
}

.gallery-intro {
  padding: 110px 0 42px;
}
.back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  color: rgba(255,255,255,.78);
}
.gallery-intro h1 {
  font-size: clamp(3.4rem, 7vw, 6rem);
  line-height: .92;
  margin: 0 0 12px;
}
.gallery-meta,
.gallery-lead {
  max-width: 760px;
  line-height: 1.8;
}
.gallery-meta { font-size: .98rem; margin-bottom: 8px; text-transform: uppercase; letter-spacing: .14em; }
.gallery-lead { font-size: 1rem; margin: 0; }

.masonry {
  width: min(1280px, calc(100% - 32px));
  margin: 0 auto;
  columns: 3 320px;
  column-gap: 18px;
}
.shot {
  break-inside: avoid;
  margin: 0 0 18px;
  border-radius: 22px;
  overflow: hidden;
  background: #090909;
  border: 1px solid rgba(255,255,255,.08);
  box-shadow: var(--shadow);
}
.shot img {
  transition: transform .38s ease, filter .38s ease;
  filter: grayscale(1) contrast(1.02) brightness(.92);
}
.shot.color img,
.shot:hover img {
  filter: none;
  transform: scale(1.02);
}
.gallery-footer {
  padding: 28px 0 50px;
  text-align: center;
  color: rgba(255,255,255,.58);
}
.site-footer {
  padding: 22px 0 34px;
  border-top: 1px solid var(--border);
}
.footer-wrap {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  color: rgba(255,255,255,.58);
  font-size: .94rem;
}

@media (max-width: 1040px) {
  .section-head,
  .about-grid,
  .contact-grid,
  .project-grid,
  .stat-grid { grid-template-columns: 1fr; }
  .project-card,
  .project-card.featured { min-height: 520px; }
}

@media (max-width: 720px) {
  .nav-wrap { min-height: 72px; }
  .nav-links { gap: 18px; font-size: .96rem; }
  .hero { min-height: 84svh; align-items: center; }
  .hero-bg { background-position: 66% center; filter: grayscale(1) contrast(1.08) brightness(.9); }
  .hero-overlay {
    background:
      linear-gradient(180deg, rgba(2,2,2,.58) 0%, rgba(2,2,2,.28) 18%, rgba(2,2,2,.62) 100%),
      linear-gradient(90deg, rgba(2,2,2,.62) 0%, rgba(2,2,2,.18) 58%, rgba(2,2,2,.08) 100%);
  }
  .hero-content { padding: 28px 0 34px; }
  .eyebrow-row { margin-bottom: 10px; }
  .hero h1 { font-size: clamp(3.9rem, 20vw, 7rem); }
  .hero-copy { margin-top: 16px; }
  .section { padding: 68px 0; }
  .section h2 { max-width: 100%; }
  .footer-wrap { flex-direction: column; }
}
