* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, Arial, sans-serif;
  background: #050505;
  color: #f5f5f5;
  line-height: 1.5;
}

a {
  color: inherit;
  text-decoration: none;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 20;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 40px;
  background: rgba(5, 5, 5, 0.7);
  backdrop-filter: blur(16px);
}

.logo {
  font-weight: 700;
  letter-spacing: -0.02em;
}

nav {
  display: flex;
  gap: 24px;
  font-size: 14px;
  color: #cfcfcf;
}

nav a:hover {
  color: #ffffff;
}

.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: end;
  gap: 40px;
  padding: 120px 40px 40px;
}

.hero-media {
  min-height: 70vh;
}

.hero-content {
  padding-bottom: 40px;
}

.eyebrow {
  margin: 0 0 16px;
  color: #f0a35e;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 12px;
  font-weight: 700;
}

h1, h2, h3, p {
  margin-top: 0;
}

h1 {
  max-width: 820px;
  font-size: clamp(48px, 7vw, 104px);
  line-height: 0.9;
  letter-spacing: -0.06em;
}

h2 {
  font-size: clamp(32px, 5vw, 64px);
  line-height: 1;
  letter-spacing: -0.05em;
}

.intro {
  max-width: 560px;
  color: #cfcfcf;
  font-size: 18px;
}

.button {
  display: inline-flex;
  margin-top: 20px;
  padding: 14px 20px;
  border: 1px solid #ffffff;
  border-radius: 999px;
  font-weight: 700;
}

.button:hover {
  background: #ffffff;
  color: #050505;
}

.placeholder {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 260px;
  border: 1px solid #2a2a2a;
  border-radius: 24px;
  background:
    radial-gradient(circle at top left, rgba(240, 163, 94, 0.18), transparent 35%),
    linear-gradient(135deg, #171717, #080808);
  color: #777;
}

.statement {
  padding: 80px 40px;
  border-top: 1px solid #222;
  border-bottom: 1px solid #222;
}

.statement p {
  max-width: 980px;
  font-size: clamp(28px, 4vw, 56px);
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.section {
  padding: 100px 40px;
}

.section-heading {
  margin-bottom: 40px;
}

.project-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.project-card {
  display: block;
}

.project-card:hover .project-image {
  transform: scale(0.98);
}

.project-image {
  margin-bottom: 18px;
  transition: transform 0.25s ease;
}

.project-info h3 {
  margin-bottom: 6px;
}

.project-info p {
  color: #a8a8a8;
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.skills-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 0;
  margin: 32px 0 0;
  list-style: none;
}

.skills-list li {
  padding: 10px 14px;
  border: 1px solid #333;
  border-radius: 999px;
  color: #cfcfcf;
}

.contact {
  border-top: 1px solid #222;
}

.site-footer {
  padding: 40px;
  color: #777;
}

.project-hero {
  padding: 160px 40px 60px;
}

.project-media {
  min-height: 70vh;
  margin: 0 40px;
}

.process-grid,
.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.process-card {
  padding: 28px;
  border: 1px solid #222;
  border-radius: 24px;
  background: #0d0d0d;
}

@media (max-width: 900px) {
  .site-header {
    padding: 20px;
  }

  nav {
    gap: 16px;
  }

  .hero,
  .split,
  .project-grid,
  .process-grid,
  .gallery {
    grid-template-columns: 1fr;
  }

  .hero {
    padding: 100px 20px 40px;
  }

  .section,
  .statement,
  .project-hero {
    padding-left: 20px;
    padding-right: 20px;
  }

  .project-media {
    margin: 0 20px;
  }
}
