:root { --pad: 24px; --text: #111; --bg: #f5f5f2; }
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: var(--bg); color: var(--text); font-family: Arial, Helvetica, sans-serif; -webkit-font-smoothing: antialiased; }
a { color: inherit; text-decoration: none; }
img { display: block; width: 100%; height: auto; }
.site-header, .site-footer { display: flex; justify-content: space-between; align-items: center; padding: var(--pad); font-size: 14px; }
.site-header { position: relative; z-index: 10; }
.brand { font-weight: 700; }
.menu { display: flex; gap: 20px; margin: 0; padding: 0; list-style: none; }
.site-main { padding: 40px var(--pad) 80px; }
.intro { min-height: 32vh; display: flex; flex-direction: column; justify-content: flex-end; padding-bottom: 40px; }
.intro h1 { margin: 0; font-size: clamp(42px, 9vw, 140px); line-height: .88; letter-spacing: -.06em; }
.intro p { margin: 20px 0 0; font-size: 14px; }
.project-grid { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 56px 18px; }
.project-image { aspect-ratio: 4 / 3; background: #ddd; overflow: hidden; }
.project-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s cubic-bezier(.2,.7,.2,1); }
.project-card a:hover img { transform: scale(1.025); }
.project-meta { display: flex; justify-content: space-between; gap: 20px; padding-top: 10px; font-size: 13px; }
.project-meta h2 { margin: 0; font: inherit; font-weight: 500; }
.empty-state { grid-column: 1 / -1; border-top: 1px solid #bbb; padding: 20px 0; }
.project-heading { margin-bottom: 32px; }
.back-link { display: inline-block; margin-bottom: 24px; font-size: 13px; }
.project-heading h1 { margin: 0; font-size: clamp(48px, 10vw, 150px); line-height: .9; letter-spacing: -.055em; }
.project-hero { margin: 0 0 48px; }
.project-content { max-width: 1100px; font-size: clamp(18px, 2vw, 28px); line-height: 1.25; }
.project-content > * { max-width: 100%; }
.project-content img { margin: 36px 0; }
.site-footer { border-top: 1px solid rgba(0,0,0,.15); }
@media (max-width: 700px) {
  :root { --pad: 16px; }
  .site-main { padding-top: 24px; }
  .intro { min-height: 26vh; }
  .project-grid { grid-template-columns: 1fr; gap: 42px; }
}
