* { margin: 0; padding: 0; box-sizing: border-box; }

body {
  font-family: 'Inter', sans-serif;
  background: #0d0d0d;
  color: #f0efe9;
  min-height: 100vh;
}

/* DESKTOP LAYOUT */
.project-layout {
  display: grid;
  grid-template-columns: 38% 62%;
  min-height: 100vh;
}

/* LEFT PANEL */
.project-left {
  position: sticky;
  top: 0;
  height: 100vh;
  padding: 48px 48px 48px 60px;
  display: flex;
  flex-direction: column;
  border-right: 1px solid #1e1e1e;
  overflow-y: auto;
}

.back-logo {
  font-size: 14px;
  color: #888;
  text-decoration: none;
  margin-bottom: 80px;
  transition: color 0.3s;
  display: block;
}

.back-logo:hover { color: #f0efe9; }

.project-content {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.label {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #888;
  margin-bottom: 20px;
}

.overview {
  font-size: 16px;
  line-height: 1.8;
  color: #888;
  margin-bottom: 40px;
  flex: 1;
}

.view-link {
  font-size: 14px;
  color: #f0efe9;
  text-decoration: none;
  border-bottom: 1px solid #333;
  padding-bottom: 4px;
  display: inline-block;
  margin-bottom: 60px;
  transition: border-color 0.3s;
}

.view-link:hover { border-color: #f0efe9; }

.divider {
  height: 1px;
  background: #1e1e1e;
  margin-bottom: 40px;
}

.meta-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  border-bottom: 1px solid #1e1e1e;
}

.meta-label {
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #888;
}

.meta-value {
  font-size: 14px;
  font-weight: 500;
}

/* RIGHT PANEL */
.project-right {
  display: flex;
  flex-direction: column;
  background: #111;
}

.project-right img {
  width: 100%;
  display: block;
  object-fit: cover;
}

/* MOBILE VIEW */
.mobile-view { display: none; }

/* RESPONSIVE */
@media (max-width: 900px) {
  .project-layout { display: none; }
  .mobile-view {
    display: block;
    padding: 24px;
  }
  .mobile-view h1 {
    font-size: 36px;
    font-weight: 800;
    margin: 20px 0;
  }
  .mobile-view img {
    width: 100%;
    margin: 16px 0;
    border-radius: 12px;
  }
  .mobile-view p {
    font-size: 15px;
    line-height: 1.7;
    color: #888;
    margin: 16px 0;
  }
  .back-logo {
    font-size: 14px;
    color: #888;
    text-decoration: none;
  }
}
