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

body {
  font-family: 'Inter', sans-serif;
  background: #FFFCF8;
  color: #1a1a1a;
}

/* LAYOUT */

.layout {
  display: flex;
  min-height: 100vh;
}

/* SIDEBAR */

.sidebar {
  width: 20%;
  min-width: 240px;
  padding: 60px 40px;
}

.sidebar-inner {
  position: sticky;
  top: 60px;
  height: calc(100vh - 120px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

/* TOP BLOCK */

.top {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.logo-circle {
  width: 84px;
  height: 84px;
  border-radius: 50%;
  background-image: url('https://ik.imagekit.io/yhnn/Frame%2041.jpg');
  overflow: hidden;
  background-size: cover;
  background-position: center;
}

/* BRAND */

.brand {
  font-family: 'DM Serif Display', serif;
  font-size: 28px;
  font-weight: normal;
}

/* BIO */

.bio {
  font-size: 14px;
  line-height: 1.8;
  color: #5a5a5a;
  max-width: 260px;
}

/* subtle divider like your ref */

.bio::after {
  content: '';
  display: block;
  width: 40px;
  height: 1px;
  background: #1a1a1a;
  margin-top: 20px;
}

/* NAV */

.sidebar nav {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 28px;
}

.sidebar a {
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-decoration: none;
  color: black;
}

/* ACTIVE LINK */

.nav-link.active::before {
  content: '> ';
}

/* BOTTOM (IG / MAIL) */

.bottom {
  display: flex;
  gap: 20px;
}

.icon {
  font-size: 12px;
  letter-spacing: 0.12em;
}

/* CONTENT */

.content {
  width: 80%;
  padding: 60px;
}

/* MASONRY */

.masonry {
  column-count: 2;
  column-gap: 40px;
}

.item {
  break-inside: avoid;
  margin-bottom: 40px;
}

.item img {
  width: 100%;
  height: auto;
  display: block;
}

/* MOBILE */

@media (max-width: 768px) {
  .layout {
    flex-direction: column;
  }

  .sidebar {
    width: 100%;
    padding: 30px 20px;
  }

  .sidebar-inner {
    position: static;
    height: auto;
  }

  .content {
    width: 100%;
    padding: 20px;
  }

  .masonry {
    column-count: 1;
  }
}